/* * μlogger * * Copyright(C) 2019 Bartek Fabiszewski (www.fabiszewski.net) * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import uAjax from './ajax.js'; import uAuth from './auth.js'; import uConfig from './config.js'; import uLang from './lang.js'; /** * @Class uInitializer * @property {uAuth} auth * @property {uConfig} config * @property {uLang} lang */ export class uInitializer { constructor() { this.auth = new uAuth(); this.config = new uConfig(); this.lang = new uLang(); } /** * @return {Promise} */ initialize() { return uAjax.get('utils/getinit.php').then((_data) => { if (!_data || !_data.auth || !_data.config || !_data.lang) { throw new Error('Corrupted initialization data'); } this.auth.load(_data.auth); this.config.load(_data.config); this.lang.init(this.config, _data.lang); }); } static waitForDom() { return new Promise((resolve) => { if (document.readyState === 'complete' || document.readyState === 'interactive') { setTimeout(resolve, 1); } else { document.addEventListener('DOMContentLoaded', resolve); } }); } } export const initializer = new uInitializer(); export const config = initializer.config; export const lang = initializer.lang; export const auth = initializer.auth;