2021-07-02 13:44:10 +00:00
|
|
|
#include "../nfc_i.h"
|
2021-07-25 11:34:54 +00:00
|
|
|
#include <lib/toolbox/random_name.h>
|
2021-07-02 13:44:10 +00:00
|
|
|
|
|
|
|
#define SCENE_SAVE_NAME_CUSTOM_EVENT (0UL)
|
|
|
|
|
|
|
|
void nfc_scene_save_name_text_input_callback(void* context) {
|
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
2021-07-22 06:05:07 +00:00
|
|
|
view_dispatcher_send_custom_event(nfc->view_dispatcher, SCENE_SAVE_NAME_CUSTOM_EVENT);
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_save_name_on_enter(void* context) {
|
2021-07-02 13:44:10 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
// Setup view
|
|
|
|
TextInput* text_input = nfc->text_input;
|
2021-07-25 11:34:54 +00:00
|
|
|
bool dev_name_empty = false;
|
2021-11-08 21:55:06 +00:00
|
|
|
if(!strcmp(nfc->dev->dev_name, "")) {
|
2021-07-25 11:34:54 +00:00
|
|
|
set_random_name(nfc->text_store, sizeof(nfc->text_store));
|
|
|
|
dev_name_empty = true;
|
|
|
|
} else {
|
2021-11-08 21:55:06 +00:00
|
|
|
nfc_text_store_set(nfc, nfc->dev->dev_name);
|
2021-07-22 06:05:07 +00:00
|
|
|
}
|
2021-07-02 13:44:10 +00:00
|
|
|
text_input_set_header_text(text_input, "Name the card");
|
|
|
|
text_input_set_result_callback(
|
|
|
|
text_input,
|
|
|
|
nfc_scene_save_name_text_input_callback,
|
|
|
|
nfc,
|
|
|
|
nfc->text_store,
|
2021-07-25 11:34:54 +00:00
|
|
|
NFC_DEV_NAME_MAX_LEN,
|
|
|
|
dev_name_empty);
|
2021-07-22 06:05:07 +00:00
|
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewTextInput);
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
bool nfc_scene_save_name_on_event(void* context, SceneManagerEvent event) {
|
2021-07-02 13:44:10 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
if(event.event == SCENE_SAVE_NAME_CUSTOM_EVENT) {
|
2021-11-08 21:55:06 +00:00
|
|
|
if(strcmp(nfc->dev->dev_name, "")) {
|
|
|
|
nfc_device_delete(nfc->dev);
|
2021-07-25 11:34:54 +00:00
|
|
|
}
|
2021-09-02 09:28:40 +00:00
|
|
|
if(scene_manager_has_previous_scene(nfc->scene_manager, NfcSceneSetUid)) {
|
2021-11-08 21:55:06 +00:00
|
|
|
nfc->dev->dev_data.nfc_data = nfc->dev_edit_data;
|
2021-09-02 09:28:40 +00:00
|
|
|
}
|
2021-11-08 21:55:06 +00:00
|
|
|
strlcpy(nfc->dev->dev_name, nfc->text_store, strlen(nfc->text_store) + 1);
|
|
|
|
if(nfc_device_save(nfc->dev, nfc->text_store)) {
|
2021-07-12 18:56:14 +00:00
|
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneSaveSuccess);
|
|
|
|
return true;
|
|
|
|
} else {
|
2021-07-28 14:52:00 +00:00
|
|
|
return scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
nfc->scene_manager, NfcSceneStart);
|
2021-07-12 18:56:14 +00:00
|
|
|
}
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_save_name_on_exit(void* context) {
|
2021-07-02 13:44:10 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
// Clear view
|
2021-09-29 14:08:24 +00:00
|
|
|
text_input_clean(nfc->text_input);
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|