2021-04-15 13:01:58 +01:00
|
|
|
'use strict';
|
|
|
|
|
2021-04-18 11:28:55 +01:00
|
|
|
// JS & CSS
|
|
|
|
|
2021-04-15 13:01:58 +01:00
|
|
|
import "./scss/main.scss";
|
|
|
|
import Icons from 'uikit/dist/js/uikit-icons.min.js';
|
2021-05-03 09:25:42 +01:00
|
|
|
import UIkit from 'uikit/dist/js/uikit.min.js';
|
2021-04-15 13:01:58 +01:00
|
|
|
UIkit.use(Icons);
|
|
|
|
|
2021-05-03 09:30:22 +01:00
|
|
|
/* eslint-disable */
|
2021-05-03 09:25:42 +01:00
|
|
|
import Prism from "prismjs";
|
2021-05-03 09:30:22 +01:00
|
|
|
import "prismjs/components/prism-json";
|
2021-04-15 13:01:58 +01:00
|
|
|
Prism.highlightAll();
|
2021-05-03 09:30:22 +01:00
|
|
|
/* eslint-enable */
|
2021-04-15 13:01:58 +01:00
|
|
|
|
|
|
|
import {
|
|
|
|
changePage,
|
|
|
|
renderPage,
|
2021-05-07 23:21:38 +01:00
|
|
|
} from "./pageUtils";
|
2021-05-07 11:53:26 +01:00
|
|
|
import { getSealStatus } from "./api/getSealStatus";
|
2021-05-07 22:23:52 +01:00
|
|
|
import { makeElement } from "./htmlUtils";
|
2021-05-07 23:08:02 +01:00
|
|
|
import { pageState } from "./globalPageState.ts";
|
2021-04-15 13:01:58 +01:00
|
|
|
|
2021-04-18 11:28:55 +01:00
|
|
|
// Translations
|
2021-05-03 15:13:30 +01:00
|
|
|
import { formatDistance } from './formatDistance.js';
|
2021-04-18 11:28:55 +01:00
|
|
|
import i18next from 'i18next';
|
2021-05-03 15:13:30 +01:00
|
|
|
import translations from './translations/index.mjs'
|
2021-04-18 11:28:55 +01:00
|
|
|
|
2021-04-17 10:56:44 +01:00
|
|
|
function ListItem(children) {
|
|
|
|
return makeElement({
|
|
|
|
tag: "li",
|
|
|
|
children: children
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-07 20:41:40 +01:00
|
|
|
async function onLoad() {
|
2021-04-17 10:56:44 +01:00
|
|
|
document.body.innerHTML = "";
|
|
|
|
document.body.appendChild(makeElement({
|
|
|
|
tag: "nav",
|
|
|
|
class: ["uk-navbar", "uk-navbar-container"],
|
2021-04-18 11:28:55 +01:00
|
|
|
children: [
|
2021-04-18 11:05:43 +01:00
|
|
|
makeElement({
|
2021-04-18 11:28:55 +01:00
|
|
|
tag: "div",
|
|
|
|
class: "uk-navbar-left",
|
|
|
|
children: makeElement({
|
|
|
|
tag: "ul",
|
|
|
|
class: "uk-navbar-nav",
|
|
|
|
children: [
|
|
|
|
ListItem(makeElement({
|
|
|
|
tag: "a",
|
|
|
|
text: i18next.t("home_btn"),
|
|
|
|
onclick: _ => { changePage("HOME"); }
|
|
|
|
})),
|
|
|
|
ListItem(makeElement({
|
|
|
|
tag: "a",
|
|
|
|
text: i18next.t("back_btn"),
|
|
|
|
onclick: _ => { pageState.currentPage.goBack(); }
|
|
|
|
})),
|
|
|
|
ListItem(makeElement({
|
|
|
|
tag: "a",
|
|
|
|
text: i18next.t("refresh_btn"),
|
2021-05-07 14:24:22 +01:00
|
|
|
onclick: _ => { changePage(pageState.currentPageString); }
|
2021-04-18 11:28:55 +01:00
|
|
|
})),
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
makeElement({
|
|
|
|
tag: "div",
|
|
|
|
class: "uk-navbar-right",
|
|
|
|
children: makeElement({
|
|
|
|
tag: "ul",
|
|
|
|
class: "uk-navbar-nav",
|
|
|
|
children: [
|
|
|
|
ListItem(makeElement({
|
|
|
|
tag: "a",
|
2021-04-18 11:52:24 +01:00
|
|
|
text: i18next.t("me_btn"),
|
2021-04-18 11:28:55 +01:00
|
|
|
onclick: _ => { changePage("ME"); }
|
|
|
|
}))
|
|
|
|
]
|
|
|
|
})
|
2021-04-18 11:05:43 +01:00
|
|
|
})
|
2021-04-18 11:28:55 +01:00
|
|
|
]
|
2021-04-17 10:56:44 +01:00
|
|
|
}));
|
|
|
|
document.body.appendChild(makeElement({
|
|
|
|
tag: "div",
|
|
|
|
class: ["uk-container", "uk-container-medium", "uk-align-center"],
|
|
|
|
children: makeElement({
|
|
|
|
tag: "div",
|
|
|
|
class: ["uk-card", "uk-card-body"],
|
|
|
|
children: [
|
|
|
|
makeElement({
|
|
|
|
tag: "h3",
|
|
|
|
class: "uk-card-title",
|
|
|
|
id: "pageTitle",
|
2021-04-18 11:52:24 +01:00
|
|
|
text: ""
|
2021-04-17 10:56:44 +01:00
|
|
|
}),
|
|
|
|
makeElement({
|
|
|
|
tag: "div",
|
|
|
|
id: "pageContent"
|
|
|
|
})
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}));
|
|
|
|
|
2021-04-15 13:01:58 +01:00
|
|
|
window.pageContent = document.querySelector("#pageContent");
|
2021-05-07 20:41:40 +01:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV == "development") {
|
|
|
|
await (await import("./playground.js")).playground();
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:01:58 +01:00
|
|
|
renderPage();
|
|
|
|
|
|
|
|
setInterval(async () => {
|
2021-04-19 20:17:07 +01:00
|
|
|
if (pageState.currentPageString != "UNSEAL") {
|
2021-04-30 10:38:23 +01:00
|
|
|
if (pageState.apiURL.length != 0) { return; }
|
2021-04-15 13:01:58 +01:00
|
|
|
let sealStatus = await getSealStatus();
|
|
|
|
if (sealStatus.sealed) {
|
2021-04-17 11:24:43 +01:00
|
|
|
changePage("UNSEAL");
|
2021-04-15 13:01:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 5000);
|
2021-04-24 16:26:31 +01:00
|
|
|
}
|
2021-04-18 11:28:55 +01:00
|
|
|
|
2021-05-07 20:41:40 +01:00
|
|
|
document.addEventListener('DOMContentLoaded', async function () {
|
2021-04-18 11:28:55 +01:00
|
|
|
i18next.init({
|
2021-04-30 10:38:23 +01:00
|
|
|
lng: pageState.language,
|
2021-04-19 19:45:51 +01:00
|
|
|
fallbackLng: 'en',
|
2021-04-18 11:28:55 +01:00
|
|
|
debug: true,
|
2021-05-03 15:13:30 +01:00
|
|
|
resources: Object.fromEntries(Object.entries(translations).map(([k, v]) => [k, { translation: v }])),
|
2021-04-18 11:52:24 +01:00
|
|
|
interpolation: {
|
|
|
|
format: function (value, format, _) {
|
|
|
|
if (format === 'until_date' && value instanceof Date) return formatDistance(new Date(), new Date(value));
|
|
|
|
return value;
|
|
|
|
}
|
2021-04-18 11:28:55 +01:00
|
|
|
}
|
2021-05-07 20:41:40 +01:00
|
|
|
}).then(async function (_) {
|
|
|
|
await onLoad();
|
2021-04-18 11:28:55 +01:00
|
|
|
});
|
2021-04-18 13:18:14 +01:00
|
|
|
}, false);
|