mirror of
https://github.com/dbgate/dbgate
synced 2024-11-15 00:06:30 +00:00
69 lines
1.5 KiB
TypeScript
69 lines
1.5 KiB
TypeScript
import App from './App.svelte';
|
|
import './utility/connectionsPinger';
|
|
import './utility/changeCurrentDbByTab';
|
|
import './commands/stdCommands';
|
|
import localStorageGarbageCollector from './utility/localStorageGarbageCollector';
|
|
import { handleOauthCallback } from './clientAuth';
|
|
import LoginPage from './LoginPage.svelte';
|
|
import NotLoggedPage from './NotLoggedPage.svelte';
|
|
import ErrorPage from './ErrorPage.svelte';
|
|
import EnterLicensePage from './EnterLicensePage.svelte';
|
|
|
|
const isOauthCallback = handleOauthCallback();
|
|
|
|
localStorageGarbageCollector();
|
|
|
|
function createApp() {
|
|
if (isOauthCallback) {
|
|
return null;
|
|
}
|
|
|
|
switch (window['dbgate_page']) {
|
|
case 'login':
|
|
return new LoginPage({
|
|
target: document.body,
|
|
props: {
|
|
isAdminPage: false,
|
|
},
|
|
});
|
|
case 'error':
|
|
return new ErrorPage({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
case 'license':
|
|
return new EnterLicensePage({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
case 'admin-login':
|
|
return new LoginPage({
|
|
target: document.body,
|
|
props: {
|
|
isAdminPage: true,
|
|
},
|
|
});
|
|
case 'not-logged':
|
|
return new NotLoggedPage({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
case 'admin':
|
|
return new App({
|
|
target: document.body,
|
|
props: {
|
|
isAdminPage: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
return new App({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
}
|
|
|
|
const app = createApp();
|
|
|
|
export default app;
|