1
0
Fork 0
VaultUI/src/main.tsx

100 lines
2.5 KiB
TypeScript
Raw Normal View History

"use strict";
2021-04-15 13:01:58 +01:00
2021-04-18 11:28:55 +01:00
// JS & CSS
2021-05-10 11:35:14 +01:00
/* eslint-disable */
2021-04-15 13:01:58 +01:00
import "./scss/main.scss";
2021-05-10 12:07:19 +01:00
import UIkit from 'uikit';
// Don't Sort These!
2021-05-10 12:07:19 +01:00
import Icons from 'uikit/dist/js/uikit-icons';
2021-05-10 11:35:14 +01:00
// @ts-ignore
2021-04-15 13:01:58 +01:00
UIkit.use(Icons);
2021-05-08 03:28:37 +01:00
import Prism from "prismjs";
// Don't Sort These!
2021-05-26 12:38:40 +01:00
import "prismjs/components/prism-hcl";
2022-01-06 23:02:34 +00: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
2021-05-24 09:48:13 +01:00
// @ts-ignore
import translations from "./translations/index.mjs";
2021-05-24 09:48:13 +01:00
// Actual Imports
import { PageRouter } from "./pagerouter/PageRouter";
import { formatDistance } from "./formatDistance";
2021-05-09 11:18:18 +01:00
import { getSealStatus } from "./api/sys/getSealStatus";
//import { pageList } from "./allPages";
2022-01-07 13:14:25 +00:00
import { render } from "preact";
2022-01-06 23:02:34 +00:00
import { NavBar } from "./ui/elements/NavBar";
import { pageState } from "./globalPageState";
import { playground } from "./playground";
import i18next from "i18next";
2022-01-07 13:14:25 +00:00
import { Main } from "./pages";
2021-05-12 17:37:09 +01:00
async function onLoad(): Promise<void> {
2022-01-07 13:14:25 +00:00
document.documentElement.dir = pageState.pageDirection;
2021-05-24 09:48:13 +01:00
render(
<>
<NavBar />
2021-05-24 09:48:13 +01:00
<div class="uk-container uk-container-medium uk-align-center">
<div class="uk-card uk-card-body">
<Main />
2021-05-24 09:48:13 +01:00
</div>
</div>
</>,
document.body,
);
2021-04-17 10:56:44 +01:00
if (process.env.NODE_ENV == "development") {
2022-01-07 13:14:25 +00:00
await playground();
}
//await pageRouter.changePage(pageState.currentPage);
//setInterval(async () => {
// if ((await pageRouter.getCurrentPageID()) != "UNSEAL") {
// if (pageState.apiURL.length != 0) {
// return;
// }
// const sealStatus = await getSealStatus();
// if (sealStatus.sealed) {
// await pageRouter.changePage("UNSEAL");
// return;
// }
// }
//}, 5000);
2021-04-24 16:26:31 +01:00
}
2021-04-18 11:28:55 +01:00
document.addEventListener(
"DOMContentLoaded",
2021-05-16 12:37:23 +01:00
async () => {
console.log("Loading...");
// @ts-expect-error
console.log("Build Data:", BUILD_STRING);
2021-05-16 12:37:23 +01:00
await i18next.init({
lng: pageState.language,
fallbackLng: "en",
debug: true,
// @ts-ignore
resources: Object.fromEntries(
Object.entries(translations).map(([k, v]) => [k, { translation: v }]),
),
interpolation: {
2021-05-22 09:50:55 +01:00
escape: (str) => {
return str;
},
2021-05-16 12:37:23 +01:00
format: function (value: unknown, format, _): string {
if (format === "until_date" && value instanceof Date)
return formatDistance(new Date(), new Date(value), pageState.language);
return value as string;
},
2021-05-16 12:37:23 +01:00
},
});
await onLoad();
},
false,
);