bd3426ae51
Still need to index metadata. Work in progress. Signed-off-by: Michael Mayer <michael@liquidbytes.net>
112 lines
3.1 KiB
JavaScript
112 lines
3.1 KiB
JavaScript
import "core-js/stable";
|
|
import "regenerator-runtime/runtime";
|
|
import Api from "common/api";
|
|
import Notify from "common/notify";
|
|
import Clipboard from "common/clipboard";
|
|
import Components from "component/components";
|
|
import Dialogs from "dialog/dialogs";
|
|
import Event from "pubsub-js";
|
|
import GetTextPlugin from "vue-gettext";
|
|
import Log from "common/log";
|
|
import PhotoPrism from "photoprism.vue";
|
|
import Router from "vue-router";
|
|
import Routes from "routes";
|
|
import {config, session} from "session";
|
|
import {Settings} from "luxon";
|
|
import Socket from "common/websocket";
|
|
import Viewer from "common/viewer";
|
|
import Vue from "vue";
|
|
import Vuetify from "vuetify";
|
|
import VueLuxon from "vue-luxon";
|
|
import VueFilters from "vue2-filters";
|
|
import VueFullscreen from "vue-fullscreen";
|
|
import VueInfiniteScroll from "vue-infinite-scroll";
|
|
import Hls from "hls.js";
|
|
|
|
// Initialize helpers
|
|
const viewer = new Viewer();
|
|
const clipboard = new Clipboard(window.localStorage, "photo_clipboard");
|
|
const isPublic = config.get("public");
|
|
|
|
// HTTP Live Streaming (video support)
|
|
window.Hls = Hls;
|
|
|
|
// Assign helpers to VueJS prototype
|
|
Vue.prototype.$event = Event;
|
|
Vue.prototype.$notify = Notify;
|
|
Vue.prototype.$viewer = viewer;
|
|
Vue.prototype.$session = session;
|
|
Vue.prototype.$api = Api;
|
|
Vue.prototype.$log = Log;
|
|
Vue.prototype.$socket = Socket;
|
|
Vue.prototype.$config = config;
|
|
Vue.prototype.$clipboard = clipboard;
|
|
Vue.prototype.$isMobile = (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent));
|
|
|
|
// Register Vuetify
|
|
Vue.use(Vuetify, {"theme": config.theme});
|
|
|
|
Vue.config.language = config.values.settings.language;
|
|
Settings.defaultLocale = config.values.settings.language;
|
|
|
|
// Register other VueJS plugins
|
|
Vue.use(GetTextPlugin, {
|
|
translations: config.translations,
|
|
silent: true, // !config.values.debug,
|
|
defaultLanguage: Vue.config.language,
|
|
});
|
|
|
|
Vue.use(VueLuxon);
|
|
Vue.use(VueInfiniteScroll);
|
|
Vue.use(VueFullscreen);
|
|
Vue.use(VueFilters);
|
|
Vue.use(Components);
|
|
Vue.use(Dialogs);
|
|
Vue.use(Router);
|
|
|
|
// Configure client-side routing
|
|
const router = new Router({
|
|
routes: Routes,
|
|
mode: "history",
|
|
saveScrollPosition: true,
|
|
});
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
if (to.matched.some(record => record.meta.admin)) {
|
|
if (isPublic || session.isAdmin()) {
|
|
next();
|
|
} else {
|
|
next({
|
|
name: "login",
|
|
params: {nextUrl: to.fullPath},
|
|
});
|
|
}
|
|
} else if (to.matched.some(record => record.meta.auth)) {
|
|
if (isPublic || session.isUser()) {
|
|
next();
|
|
} else {
|
|
next({
|
|
name: "login",
|
|
params: {nextUrl: to.fullPath},
|
|
});
|
|
}
|
|
} else {
|
|
next();
|
|
}
|
|
});
|
|
|
|
router.afterEach((to) => {
|
|
if (to.meta.title) {
|
|
config.page.title = to.meta.title;
|
|
window.document.title = "PhotoPrism: " + to.meta.title;
|
|
} else {
|
|
config.page.title = "";
|
|
window.document.title = "PhotoPrism";
|
|
}
|
|
});
|
|
|
|
// Run app
|
|
new Vue({
|
|
router,
|
|
render: h => h(PhotoPrism),
|
|
}).$mount("#photoprism");
|