~aleteoryx/muditaos

ref: 53e2fae8fbf21cd87194a0ba39b37dbe36761231 muditaos/module-apps/application-settings/models/network/NewApnModel.cpp -rw-r--r-- 5.4 KiB
53e2fae8 — Lefucjusz [MOS-178] Add input mode displaying timeout 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include "NewApnModel.hpp"

#include <application-settings/data/SettingsItemData.hpp>
#include <application-settings/widgets/SettingsStyle.hpp>
#include <application-settings/widgets/network/ApnInputWidget.hpp>

#include <ListView.hpp>
#include <AppWindow.hpp>

NewApnModel::NewApnModel(app::ApplicationCommon *app) : application(app)
{}

auto NewApnModel::requestRecordsCount() -> unsigned int
{
    return internalData.size();
}

auto NewApnModel::getMinimalItemSpaceRequired() const -> unsigned int
{
    return style::settings::widget::apnInputWidget::h;
}

void NewApnModel::requestRecords(const uint32_t offset, const uint32_t limit)
{
    setupModel(offset, limit);
    list->onProviderDataUpdate();
}

auto NewApnModel::getItem(gui::Order order) -> gui::ListItem *
{
    return getRecord(order);
}

void NewApnModel::createData()
{
    auto app = application;

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::Name,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        },
        [this](const std::string &text) { this->apnNameChanged(text); }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::APN,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::Username,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::Password,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::AuthType,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::ApnType,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    internalData.emplace_back(new gui::ApnInputWidget(
        settingsInternals::ListItemName::ApnProtocol,
        [app](const UTF8 &text) { app->getCurrentWindow()->navBarTemporaryMode(text); },
        [app]() { app->getCurrentWindow()->navBarRestoreFromTemporaryMode(); },
        [app]() { app->getCurrentWindow()->selectSpecialCharacter(); },
        [app](std::function<void()> restoreFunction) {
            app->getCurrentWindow()->startInputModeRestoreTimer(std::move(restoreFunction));
        }));

    for (auto item : internalData) {
        item->deleteByList = false;
    }
}

void NewApnModel::clearData()
{
    list->reset();

    eraseInternalData();

    createData();

    list->rebuildList();
}

void NewApnModel::saveData(const std::shared_ptr<packet_data::APN::Config> &apnRecord)
{
    for (auto item : internalData) {
        if (item->onSaveCallback) {
            item->onSaveCallback(apnRecord);
        }
    }
}

void NewApnModel::loadData(const std::shared_ptr<packet_data::APN::Config> &apnRecord)
{
    for (auto item : internalData) {
        if (item->onLoadCallback) {
            item->onLoadCallback(apnRecord);
        }
    }
}

void NewApnModel::apnNameChanged(const std::string &newName)
{
    LOG_DEBUG("New APN name: %s", newName.c_str());
    const bool showSaveButton = !newName.empty();
    application->getCurrentWindow()->setNavBarActive(gui::nav_bar::Side::Center, showSaveButton);
}