Initial Commit
This commit is contained in:
57
source/download_payload_page.cpp
Normal file
57
source/download_payload_page.cpp
Normal file
@@ -0,0 +1,57 @@
|
||||
#include "download_payload_page.hpp"
|
||||
|
||||
#include "confirm_page.hpp"
|
||||
#include "download.hpp"
|
||||
#include "fs.hpp"
|
||||
#include "utils.hpp"
|
||||
#include "worker_page.hpp"
|
||||
|
||||
namespace i18n = brls::i18n;
|
||||
using namespace i18n::literals;
|
||||
DownloadPayloadPage::DownloadPayloadPage(const nlohmann::ordered_json& payloads) : AppletFrame(true, true)
|
||||
{
|
||||
this->setTitle("menus/payloads/dl_payloads"_i18n);
|
||||
list = new brls::List();
|
||||
label = new brls::Label(
|
||||
brls::LabelStyle::DESCRIPTION,
|
||||
"menus/payloads/select"_i18n + std::string(BOOTLOADER_PL_PATH) + ".",
|
||||
true);
|
||||
list->addView(label);
|
||||
|
||||
auto links = download::getLinksFromJson(payloads);
|
||||
if (links.size()) {
|
||||
for (const auto& link : links) {
|
||||
std::string url = link.second;
|
||||
std::string path = std::string(BOOTLOADER_PL_PATH) + link.first;
|
||||
std::string text("menus/common/download"_i18n + link.first + "menus/common/from"_i18n + url);
|
||||
listItem = new brls::ListItem(link.first);
|
||||
listItem->getClickEvent()->subscribe([text, url, path](brls::View* view) {
|
||||
fs::createTree(BOOTLOADER_PL_PATH);
|
||||
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
|
||||
stagedFrame->setTitle("menus/tools/getting_payload"_i18n);
|
||||
stagedFrame->addStage(
|
||||
new ConfirmPage(stagedFrame, text));
|
||||
stagedFrame->addStage(
|
||||
new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, [url, path]() { download::downloadFile(url, path, OFF); }));
|
||||
stagedFrame->addStage(
|
||||
new ConfirmPage_Done(stagedFrame, "menus/common/all_done"_i18n));
|
||||
brls::Application::pushView(stagedFrame);
|
||||
});
|
||||
list->addView(listItem);
|
||||
}
|
||||
}
|
||||
else {
|
||||
notFound = new brls::Label(
|
||||
brls::LabelStyle::DESCRIPTION,
|
||||
"menus/main/links_not_found"_i18n,
|
||||
true);
|
||||
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
|
||||
list->addView(notFound);
|
||||
brls::ListItem* back = new brls::ListItem("menus/common/back"_i18n);
|
||||
back->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::Application::popView();
|
||||
});
|
||||
list->addView(back);
|
||||
}
|
||||
this->setContentView(list);
|
||||
}
|
||||
Reference in New Issue
Block a user