mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 20:59:50 +04:00
115 lines
4.9 KiB
JavaScript
115 lines
4.9 KiB
JavaScript
// import modules
|
|
let eventLoop = require("event_loop");
|
|
let gui = require("gui");
|
|
let loadingView = require("gui/loading");
|
|
let submenuView = require("gui/submenu");
|
|
let emptyView = require("gui/empty_screen");
|
|
let textInputView = require("gui/text_input");
|
|
let byteInputView = require("gui/byte_input");
|
|
let textBoxView = require("gui/text_box");
|
|
let dialogView = require("gui/dialog");
|
|
let filePicker = require("gui/file_picker");
|
|
let flipper = require("flipper");
|
|
|
|
// declare view instances
|
|
let views = {
|
|
loading: loadingView.make(),
|
|
empty: emptyView.make(),
|
|
keyboard: textInputView.makeWith({
|
|
header: "Enter your name",
|
|
defaultText: flipper.getName(),
|
|
defaultTextClear: true,
|
|
// Props for makeWith() are passed in reverse order, so maxLength must be after defaultText
|
|
minLength: 0,
|
|
maxLength: 32,
|
|
}),
|
|
helloDialog: dialogView.make(),
|
|
bytekb: byteInputView.makeWith({
|
|
header: "Look ma, I'm a header text!",
|
|
defaultData: Uint8Array([0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88]),
|
|
// Props for makeWith() are passed in reverse order, so length must be after defaultData
|
|
length: 8,
|
|
}),
|
|
longText: textBoxView.makeWith({
|
|
text: "This is a very long string that demonstrates the TextBox view. Use the D-Pad to scroll backwards and forwards.\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse rhoncus est malesuada quam egestas ultrices. Maecenas non eros a nulla eleifend vulputate et ut risus. Quisque in mauris mattis, venenatis risus eget, aliquam diam. Fusce pretium feugiat mauris, ut faucibus ex volutpat in. Phasellus volutpat ex sed gravida consectetur. Aliquam sed lectus feugiat, tristique lectus et, bibendum lacus. Ut sit amet augue eu sapien elementum aliquam quis vitae tortor. Vestibulum quis commodo odio. In elementum fermentum massa, eu pellentesque nibh cursus at. Integer eleifend lacus nec purus elementum sodales. Nulla elementum neque urna, non vulputate massa semper sed. Fusce ut nisi vitae dui blandit congue pretium vitae turpis.",
|
|
}),
|
|
demos: submenuView.makeWith({
|
|
header: "Choose a demo",
|
|
items: [
|
|
"Hourglass screen",
|
|
"Empty screen",
|
|
"Text input & Dialog",
|
|
"Byte input",
|
|
"Text box",
|
|
"File picker",
|
|
"Exit app",
|
|
],
|
|
}),
|
|
};
|
|
|
|
// demo selector
|
|
eventLoop.subscribe(views.demos.chosen, function (_sub, index, gui, eventLoop, views) {
|
|
if (index === 0) {
|
|
gui.viewDispatcher.switchTo(views.loading);
|
|
// the loading view captures all back events, preventing our navigation callback from firing
|
|
// switch to the demo chooser after a second
|
|
eventLoop.subscribe(eventLoop.timer("oneshot", 1000), function (_sub, _, gui, views) {
|
|
gui.viewDispatcher.switchTo(views.demos);
|
|
}, gui, views);
|
|
} else if (index === 1) {
|
|
gui.viewDispatcher.switchTo(views.empty);
|
|
} else if (index === 2) {
|
|
gui.viewDispatcher.switchTo(views.keyboard);
|
|
} else if (index === 3) {
|
|
gui.viewDispatcher.switchTo(views.bytekb);
|
|
} else if (index === 4) {
|
|
gui.viewDispatcher.switchTo(views.longText);
|
|
} else if (index === 5) {
|
|
let path = filePicker.pickFile("/ext", "*");
|
|
if (path) {
|
|
views.helloDialog.set("text", "You selected:\n" + path);
|
|
} else {
|
|
views.helloDialog.set("text", "You didn't select a file");
|
|
}
|
|
views.helloDialog.set("center", "Nice!");
|
|
gui.viewDispatcher.switchTo(views.helloDialog);
|
|
} else if (index === 6) {
|
|
eventLoop.stop();
|
|
}
|
|
}, gui, eventLoop, views);
|
|
|
|
// say hi after keyboard input
|
|
eventLoop.subscribe(views.keyboard.input, function (_sub, name, gui, views) {
|
|
views.keyboard.set("defaultText", name); // Remember for next usage
|
|
views.helloDialog.set("text", "Hi " + name + "! :)");
|
|
views.helloDialog.set("center", "Hi Flipper! :)");
|
|
gui.viewDispatcher.switchTo(views.helloDialog);
|
|
}, gui, views);
|
|
|
|
// go back after the greeting dialog
|
|
eventLoop.subscribe(views.helloDialog.input, function (_sub, button, gui, views) {
|
|
if (button === "center")
|
|
gui.viewDispatcher.switchTo(views.demos);
|
|
}, gui, views);
|
|
|
|
// show data after byte input
|
|
eventLoop.subscribe(views.bytekb.input, function (_sub, data, gui, views) {
|
|
let data_view = Uint8Array(data);
|
|
let text = "0x";
|
|
for (let i = 0; i < data_view.length; i++) {
|
|
text += toString(data_view[i], 16);
|
|
}
|
|
views.helloDialog.set("text", "You typed:\n" + text);
|
|
views.helloDialog.set("center", "Cool!");
|
|
gui.viewDispatcher.switchTo(views.helloDialog);
|
|
}, gui, views);
|
|
|
|
// go to the demo chooser screen when the back key is pressed
|
|
eventLoop.subscribe(gui.viewDispatcher.navigation, function (_sub, _, gui, views) {
|
|
gui.viewDispatcher.switchTo(views.demos);
|
|
}, gui, views);
|
|
|
|
// run UI
|
|
gui.viewDispatcher.switchTo(views.demos);
|
|
eventLoop.run();
|