X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/e711290d8b1ce06b38e0560248806e8de2077870..refs/pull/5280/head:/resources/js/app.js diff --git a/resources/js/app.js b/resources/js/app.js index ccf54b33d..5f4902f86 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -1,36 +1,33 @@ -import events from './services/events'; -import httpInstance from './services/http'; -import Translations from './services/translations'; - -import * as components from './services/components'; +import {EventManager} from './services/events.ts'; +import {HttpManager} from './services/http.ts'; +import {Translator} from './services/translations.ts'; import * as componentMap from './components'; +import {ComponentStore} from './services/components.ts'; + +// eslint-disable-next-line no-underscore-dangle +window.__DEV__ = false; // Url retrieval function -window.baseUrl = function(path) { +window.baseUrl = function baseUrl(path) { + let targetPath = path; let basePath = document.querySelector('meta[name="base-url"]').getAttribute('content'); if (basePath[basePath.length - 1] === '/') basePath = basePath.slice(0, basePath.length - 1); - if (path[0] === '/') path = path.slice(1); - return `${basePath}/${path}`; + if (targetPath[0] === '/') targetPath = targetPath.slice(1); + return `${basePath}/${targetPath}`; }; -window.importVersioned = function(moduleName) { +window.importVersioned = function importVersioned(moduleName) { const version = document.querySelector('link[href*="/dist/styles.css?version="]').href.split('?version=').pop(); const importPath = window.baseUrl(`dist/${moduleName}.js?version=${version}`); return import(importPath); }; -// Set events and http services on window -window.$http = httpInstance; -window.$events = events; - -// Translation setup -// Creates a global function with name 'trans' to be used in the same way as the Laravel translation system -const translator = new Translations(); -window.trans = translator.get.bind(translator); -window.trans_choice = translator.getPlural.bind(translator); -window.trans_plural = translator.parsePlural.bind(translator); +// Set events, http & translation services on window +window.$http = new HttpManager(); +window.$events = new EventManager(); +window.$trans = new Translator(); // Load & initialise components -components.register(componentMap); -window.$components = components; -components.init(); +window.$components = new ComponentStore(); +window.$components.register(componentMap); +window.$components.init();