2016-08-14 07:29:35 -04: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 08:21:11 -04:00
|
|
|
// Set events and http services on window
|
2020-07-28 13:19:18 -04:00
|
|
|
import events from "./services/events"
|
2019-06-07 19:02:51 -04:00
|
|
|
import httpInstance from "./services/http"
|
2018-04-01 08:21:11 -04:00
|
|
|
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
|
|
|
|
// Creates a global function with name 'trans' to be used in the same way as Laravel's translation system
|
2018-04-01 08:21:11 -04:00
|
|
|
import Translations from "./services/translations"
|
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
|
|
|
|
2020-07-24 19:25:30 -04:00
|
|
|
// Load Components
|
2018-04-01 08:21:11 -04:00
|
|
|
import components from "./components"
|
2018-04-01 07:46:27 -04:00
|
|
|
components();
|