2016-08-14 19:29:35 +08:00
|
|
|
// Url retrieval function
|
|
|
|
window.baseUrl = function(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;
|
|
|
|
};
|
|
|
|
|
2018-04-01 20:21:11 +08:00
|
|
|
// Set events and http services on window
|
2020-07-29 01:19:18 +08:00
|
|
|
import events from "./services/events"
|
2019-06-08 07:02:51 +08:00
|
|
|
import httpInstance from "./services/http"
|
2018-04-01 20:21:11 +08:00
|
|
|
window.$http = httpInstance;
|
2020-07-29 01:19:18 +08:00
|
|
|
window.$events = events;
|
2017-04-10 03:59:57 +08:00
|
|
|
|
2016-12-31 22:27:40 +08:00
|
|
|
// Translation setup
|
|
|
|
// Creates a global function with name 'trans' to be used in the same way as Laravel's translation system
|
2018-04-01 20:21:11 +08:00
|
|
|
import Translations from "./services/translations"
|
2019-07-06 21:52:25 +08:00
|
|
|
const translator = new Translations();
|
2016-12-31 22:27:40 +08:00
|
|
|
window.trans = translator.get.bind(translator);
|
2017-09-03 23:37:51 +08:00
|
|
|
window.trans_choice = translator.getPlural.bind(translator);
|
2020-07-29 01:19:18 +08:00
|
|
|
window.trans_plural = translator.parsePlural.bind(translator);
|
2016-12-31 22:27:40 +08:00
|
|
|
|
2020-07-25 07:25:30 +08:00
|
|
|
// Load Components
|
2018-04-01 20:21:11 +08:00
|
|
|
import components from "./components"
|
2018-04-01 19:46:27 +08:00
|
|
|
components();
|