2023-04-19 10:20:04 -04:00
|
|
|
import * as events from './services/events';
|
2023-04-19 05:46:13 -04:00
|
|
|
import * as httpInstance from './services/http';
|
2023-04-18 17:20:02 -04:00
|
|
|
import Translations from './services/translations';
|
|
|
|
|
|
|
|
import * as components from './services/components';
|
|
|
|
import * as componentMap from './components';
|
|
|
|
|
2016-08-14 07:29:35 -04:00
|
|
|
// Url retrieval function
|
2023-04-19 05:46:13 -04:00
|
|
|
window.baseUrl = function baseUrl(path) {
|
|
|
|
let targetPath = path;
|
2016-08-14 07:29:35 -04:00
|
|
|
let basePath = document.querySelector('meta[name="base-url"]').getAttribute('content');
|
2023-04-18 17:20:02 -04:00
|
|
|
if (basePath[basePath.length - 1] === '/') basePath = basePath.slice(0, basePath.length - 1);
|
2023-04-19 05:46:13 -04:00
|
|
|
if (targetPath[0] === '/') targetPath = targetPath.slice(1);
|
|
|
|
return `${basePath}/${targetPath}`;
|
2016-08-14 07:29:35 -04:00
|
|
|
};
|
|
|
|
|
2023-04-19 05:46:13 -04:00
|
|
|
window.importVersioned = function importVersioned(moduleName) {
|
2022-02-08 06:10:01 -05:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2018-04-01 08:21:11 -04:00
|
|
|
// Set events and http services on window
|
|
|
|
window.$http = httpInstance;
|
2020-07-28 13:19:18 -04:00
|
|
|
window.$events = events;
|
2017-04-09 15:59:57 -04:00
|
|
|
|
2016-12-31 09:27:40 -05:00
|
|
|
// Translation setup
|
2023-04-18 17:20:02 -04:00
|
|
|
// Creates a global function with name 'trans' to be used in the same way as the Laravel translation system
|
2019-07-06 09:52:25 -04:00
|
|
|
const translator = new Translations();
|
2016-12-31 09:27:40 -05:00
|
|
|
window.trans = translator.get.bind(translator);
|
2017-09-03 11:37:51 -04:00
|
|
|
window.trans_choice = translator.getPlural.bind(translator);
|
2020-07-28 13:19:18 -04:00
|
|
|
window.trans_plural = translator.parsePlural.bind(translator);
|
2016-12-31 09:27:40 -05:00
|
|
|
|
2023-04-18 17:20:02 -04:00
|
|
|
// Load & initialise components
|
2022-11-14 18:19:02 -05:00
|
|
|
components.register(componentMap);
|
|
|
|
window.$components = components;
|
|
|
|
components.init();
|