2022-04-28 18:48:44 +03:00
|
|
|
import Main from './components/Main.svelte';
|
2022-04-14 16:56:01 +03:00
|
|
|
import gateway from './gateway';
|
2022-05-05 16:31:10 +03:00
|
|
|
import { getItem, init } from './storage';
|
2022-05-05 20:39:24 +03:00
|
|
|
import { authWithToken, useAuthHandlers } from './auth';
|
2022-04-27 05:03:47 +03:00
|
|
|
import { initResponsiveHandlers } from './responsive';
|
2022-04-23 23:07:46 +03:00
|
|
|
|
|
|
|
window.__waffle = {
|
|
|
|
gateway
|
|
|
|
};
|
2022-04-14 16:56:01 +03:00
|
|
|
|
2022-05-05 16:31:10 +03:00
|
|
|
init();
|
2022-04-27 05:03:47 +03:00
|
|
|
initResponsiveHandlers();
|
2022-05-05 20:39:24 +03:00
|
|
|
useAuthHandlers();
|
2022-05-05 21:30:21 +03:00
|
|
|
authWithToken(getItem("auth:token"));
|
2022-04-14 00:31:03 +03:00
|
|
|
|
2022-04-17 20:23:20 +03:00
|
|
|
// Remove loading screen
|
|
|
|
const loadingElement = document.getElementById("pre--loading-screen");
|
|
|
|
if (loadingElement) {
|
|
|
|
loadingElement.parentElement.removeChild(loadingElement);
|
|
|
|
}
|
|
|
|
|
2022-04-28 18:48:44 +03:00
|
|
|
const app = new Main({
|
2022-04-14 00:31:03 +03:00
|
|
|
target: document.body
|
|
|
|
});
|
|
|
|
|
|
|
|
export default app;
|