This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/plugins/globals.js

67 lines
2.1 KiB
JavaScript

import Vue from 'vue'
import t from '../src/translator';
import config from '../data/config.suml';
import {buildDict} from "../src/helpers";
import {DateTime} from "luxon";
import {decodeTime} from 'ulid';
export default ({ app, store }) => {
Vue.prototype.$eventHub = new Vue();
Vue.prototype.$base = process.env.BASE_URL;
Vue.prototype.$t = t;
Vue.prototype.$te = key => t(key, {}, false) !== undefined;
Vue.prototype.$translateForPronoun = (str, pronoun) =>
pronoun.format(
t(`flags.${str.replace(/ /g, '_').replace(/'/g, `*`)}`, {}, false) || str
);
Vue.prototype.config = config;
Vue.prototype.locales = buildDict(function* () {
if (config.locale !== '_') {
yield [ config.locale, process.env.LOCALES[config.locale] ];
}
for (let l in process.env.LOCALES) {
if (process.env.LOCALES.hasOwnProperty(l) && l !== config.locale) {
yield [l, process.env.LOCALES[l]];
}
}
});
store.commit('setSpelling', app.$cookies.get('spelling') || 'traditional');
Vue.prototype.buildImageUrl = (imageId, size) => `${process.env.BUCKET}/images/${imageId}-${size}.png`
Vue.prototype.$loadScript = (name, src) => {
if (!process.client || document.querySelectorAll(`script.${name}-script`).length > 0) {
return new Promise((resolve, reject) => { resolve(); });
}
let resolveFn; let rejectFn;
const promise = new Promise((resolve, reject) => {
resolveFn = resolve;
rejectFn = reject;
});
const s = document.createElement('script');
s.setAttribute('src', src);
s.classList.add(`${name}-script`);
s.onload = resolveFn;
s.onerror = rejectFn;
document.body.appendChild(s);
return promise;
};
Vue.prototype.$datetime = (timestamp) => {
const dt = DateTime.fromSeconds(timestamp);
return dt.toFormat('y-MM-dd HH:mm')
}
Vue.prototype.$ulidTime = (ulid) => {
return decodeTime(ulid) / 1000;
}
}