mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
7590ecd37c
- Updated comment routes to be simpler. - Updated comments JS to align better with updated component system. - Documented available global JS functions/services. - Removed redundant controller method. - Added window.$events helpers for validation messages and success/error. - Updated JS events system to not be class based for simplicity. - Added window.trans_plural method to handle pluralisation/replacements where you already have the translation string itself. Fixes #1836
25 lines
970 B
JavaScript
25 lines
970 B
JavaScript
// 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;
|
|
};
|
|
|
|
// Set events and http services on window
|
|
import events from "./services/events"
|
|
import httpInstance from "./services/http"
|
|
window.$http = httpInstance;
|
|
window.$events = events;
|
|
|
|
// Translation setup
|
|
// Creates a global function with name 'trans' to be used in the same way as Laravel's translation system
|
|
import Translations from "./services/translations"
|
|
const translator = new Translations();
|
|
window.trans = translator.get.bind(translator);
|
|
window.trans_choice = translator.getPlural.bind(translator);
|
|
window.trans_plural = translator.parsePlural.bind(translator);
|
|
|
|
// Load Components
|
|
import components from "./components"
|
|
components(); |