2021-05-01 09:11:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-09 08:51:43 +00:00
|
|
|
import {Router} from './router';
|
|
|
|
|
2021-05-06 08:18:28 +00:00
|
|
|
import * as login from './auth/login/ts/';
|
|
|
|
import * as register from './auth/register/ts/';
|
|
|
|
import * as panel from './panel/ts/index';
|
|
|
|
import * as addSiteKey from './panel/sitekey/add/ts';
|
2021-05-07 12:25:42 +00:00
|
|
|
import {MODE} from './logger';
|
|
|
|
import log from './logger';
|
2021-05-03 14:54:03 +00:00
|
|
|
|
|
|
|
import VIEWS from './views/v1/routes';
|
|
|
|
|
2021-05-09 11:09:52 +00:00
|
|
|
import './main.scss';
|
2021-05-06 15:02:44 +00:00
|
|
|
import './auth/css/main.scss';
|
2021-05-25 15:10:57 +00:00
|
|
|
import './components/details-footer/main.scss';
|
2021-06-29 16:18:52 +00:00
|
|
|
import './components/error/main.scss';
|
2021-05-14 11:03:18 +00:00
|
|
|
import './components/showPassword/main.scss';
|
2021-05-06 08:18:28 +00:00
|
|
|
import './panel/css/main.scss';
|
2021-05-09 11:09:52 +00:00
|
|
|
import './panel/navbar/main.scss';
|
2021-07-14 14:39:00 +00:00
|
|
|
import './panel/notifications/main.scss';
|
2021-05-09 11:09:52 +00:00
|
|
|
import './panel/header/taskbar/main.scss';
|
2021-05-03 14:54:03 +00:00
|
|
|
import './panel/help-banner/main.scss';
|
2021-05-06 08:18:28 +00:00
|
|
|
import './panel/sitekey/add/css/main.scss';
|
|
|
|
import './panel/sitekey/list/css/main.scss';
|
2021-05-05 07:27:05 +00:00
|
|
|
|
2021-05-04 13:04:36 +00:00
|
|
|
import './errors/main.scss';
|
2021-05-01 05:58:39 +00:00
|
|
|
|
2021-05-07 12:25:42 +00:00
|
|
|
log.setMode(MODE.production);
|
|
|
|
|
2021-04-09 08:51:43 +00:00
|
|
|
const router = new Router();
|
|
|
|
|
2021-05-01 05:58:39 +00:00
|
|
|
router.register(VIEWS.panelHome, panel.index);
|
|
|
|
router.register(VIEWS.registerUser, register.index);
|
|
|
|
router.register(VIEWS.loginUser, login.index);
|
2021-05-01 09:11:22 +00:00
|
|
|
router.register(VIEWS.addSiteKey, addSiteKey.index);
|
2021-04-09 08:51:43 +00:00
|
|
|
|
2021-05-09 11:09:52 +00:00
|
|
|
try {
|
|
|
|
router.route();
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|