mCaptcha/templates/index.ts

62 lines
2.1 KiB
TypeScript
Raw Normal View History

2021-05-01 12:11:22 +03: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 11:51:43 +03:00
import {Router} from './router';
2021-05-06 11:18:28 +03: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';
import * as editSitekey from './panel/sitekey/edit/';
2021-07-15 15:37:12 +03:00
import * as listSitekeys from './panel/sitekey/list/ts';
2021-05-07 15:25:42 +03:00
import {MODE} from './logger';
import log from './logger';
2021-05-03 17:54:03 +03:00
import VIEWS from './views/v1/routes';
2021-05-09 14:09:52 +03:00
import './main.scss';
2021-05-06 18:02:44 +03:00
import './auth/css/main.scss';
2021-05-25 18:10:57 +03:00
import './components/details-footer/main.scss';
import './components/error/main.scss';
2021-05-14 14:03:18 +03:00
import './components/showPassword/main.scss';
2021-05-06 11:18:28 +03:00
import './panel/css/main.scss';
2021-05-09 14:09:52 +03:00
import './panel/navbar/main.scss';
2021-07-14 17:39:00 +03:00
import './panel/notifications/main.scss';
2021-05-09 14:09:52 +03:00
import './panel/header/taskbar/main.scss';
2021-05-03 17:54:03 +03:00
import './panel/help-banner/main.scss';
2021-05-06 11:18:28 +03:00
import './panel/sitekey/add/css/main.scss';
import './panel/sitekey/list/css/main.scss';
2021-05-05 10:27:05 +03:00
2021-05-04 16:04:36 +03:00
import './errors/main.scss';
2021-05-07 15:25:42 +03:00
log.setMode(MODE.production);
2021-04-09 11:51:43 +03:00
const router = new Router();
router.register(VIEWS.panelHome, panel.index);
router.register(VIEWS.registerUser, register.index);
router.register(VIEWS.loginUser, login.index);
2021-07-15 15:37:12 +03:00
router.register(VIEWS.listSitekey, listSitekeys.index);
2021-05-01 12:11:22 +03:00
router.register(VIEWS.addSiteKey, addSiteKey.index);
router.register(VIEWS.editSitekey("[A-Z,a-z,0-9]+"), editSitekey.index);
2021-04-09 11:51:43 +03:00
2021-05-09 14:09:52 +03:00
try {
router.route();
} catch (e) {
console.log(e);
}