wikijs-fork/client/client-app.js

236 lines
8.3 KiB
JavaScript
Raw Normal View History

/* global siteConfig */
2017-05-21 03:21:16 +00:00
import Vue from 'vue'
2018-02-28 05:54:09 +00:00
import VueRouter from 'vue-router'
2017-05-22 17:32:52 +00:00
import VueClipboards from 'vue-clipboards'
2017-10-28 18:17:14 +00:00
import { ApolloClient } from 'apollo-client'
import { BatchHttpLink } from 'apollo-link-batch-http'
import { ApolloLink, split } from 'apollo-link'
import { WebSocketLink } from 'apollo-link-ws'
import { ErrorLink } from 'apollo-link-error'
2017-10-28 18:17:14 +00:00
import { InMemoryCache } from 'apollo-cache-inmemory'
import { getMainDefinition } from 'apollo-utilities'
import VueApollo from 'vue-apollo'
2019-07-29 04:50:03 +00:00
import Vuetify from 'vuetify/lib'
import Velocity from 'velocity-animate'
2018-11-26 03:10:20 +00:00
import Vuescroll from 'vuescroll/dist/vuescroll-native'
2018-02-03 21:48:25 +00:00
import Hammer from 'hammerjs'
import moment from 'moment-timezone'
2018-03-26 05:11:49 +00:00
import VueMoment from 'vue-moment'
import store from './store'
import Cookies from 'js-cookie'
2017-12-24 05:34:47 +00:00
// ====================================
// Load Modules
// ====================================
2018-02-03 21:48:25 +00:00
import boot from './modules/boot'
import localization from './modules/localization'
// ====================================
// Load Helpers
// ====================================
import helpers from './helpers'
// ====================================
// Initialize Global Vars
// ====================================
window.WIKI = null
2018-02-03 21:48:25 +00:00
window.boot = boot
window.Hammer = Hammer
moment.locale(siteConfig.lang)
2018-12-03 02:42:43 +00:00
store.commit('user/REFRESH_AUTH')
// ====================================
// Initialize Apollo Client (GraphQL)
// ====================================
const graphQLEndpoint = window.location.protocol + '//' + window.location.host + '/graphql'
const graphQLWSEndpoint = ((window.location.protocol === 'https:') ? 'wss:' : 'ws:') + '//' + window.location.host + '/graphql-subscriptions'
const graphQLLink = ApolloLink.from([
new ErrorLink(({ graphQLErrors, networkError }) => {
if (graphQLErrors) {
let isAuthError = false
graphQLErrors.map(({ message, locations, path }) => {
if (message === `Forbidden`) {
isAuthError = true
}
console.error(`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`)
})
store.commit('showNotification', {
style: 'red',
message: isAuthError ? `You are not authorized to access this resource.` : `An unexpected error occurred.`,
icon: 'alert'
})
}
if (networkError) {
console.error(networkError)
store.commit('showNotification', {
style: 'red',
message: `Network Error: ${networkError.message}`,
icon: 'alert'
})
}
}),
new BatchHttpLink({
2018-06-26 00:55:00 +00:00
includeExtensions: true,
uri: graphQLEndpoint,
credentials: 'include',
fetch: async (uri, options) => {
2018-06-26 00:55:00 +00:00
// Strip __typename fields from variables
let body = JSON.parse(options.body)
body = body.map(bd => {
return ({
...bd,
variables: JSON.parse(JSON.stringify(bd.variables), (key, value) => { return key === '__typename' ? undefined : value })
})
})
2018-06-26 00:55:00 +00:00
options.body = JSON.stringify(body)
// Inject authentication token
const jwtToken = Cookies.get('jwt')
if (jwtToken) {
options.headers.Authorization = `Bearer ${jwtToken}`
}
2018-06-26 00:55:00 +00:00
const resp = await fetch(uri, options)
// Handle renewed JWT
const newJWT = resp.headers.get('new-jwt')
if (newJWT) {
Cookies.set('jwt', newJWT, { expires: 365 })
}
return resp
2018-06-26 00:55:00 +00:00
}
})
])
const graphQLWSLink = new WebSocketLink({
uri: graphQLWSEndpoint,
options: {
reconnect: true,
lazy: true
}
})
window.graphQL = new ApolloClient({
link: split(({ query }) => {
const { kind, operation } = getMainDefinition(query)
return kind === 'OperationDefinition' && operation === 'subscription'
2019-05-31 17:06:20 +00:00
}, graphQLWSLink, graphQLLink),
2017-10-28 18:17:14 +00:00
cache: new InMemoryCache(),
connectToDevTools: (process.env.node_env === 'development')
})
2017-05-21 03:21:16 +00:00
// ====================================
// Initialize Vue Modules
2017-05-21 03:21:16 +00:00
// ====================================
2018-03-17 02:51:56 +00:00
Vue.config.productionTip = false
2018-02-28 05:54:09 +00:00
Vue.use(VueRouter)
Vue.use(VueApollo)
2017-05-22 17:32:52 +00:00
Vue.use(VueClipboards)
Vue.use(localization.VueI18Next)
Vue.use(helpers)
2019-07-29 04:50:03 +00:00
Vue.use(Vuetify)
2018-03-26 05:11:49 +00:00
Vue.use(VueMoment, { moment })
2018-11-26 03:10:20 +00:00
Vue.use(Vuescroll)
2017-05-21 03:21:16 +00:00
Vue.prototype.Velocity = Velocity
2017-07-02 02:23:40 +00:00
// ====================================
// Register Vue Components
// ====================================
2018-02-28 05:54:09 +00:00
Vue.component('admin', () => import(/* webpackChunkName: "admin" */ './components/admin.vue'))
2020-05-17 22:38:23 +00:00
Vue.component('comments', () => import(/* webpackChunkName: "comments" */ './components/comments.vue'))
2018-09-16 22:36:15 +00:00
Vue.component('editor', () => import(/* webpackPrefetch: -100, webpackChunkName: "editor" */ './components/editor.vue'))
2018-10-29 02:09:58 +00:00
Vue.component('history', () => import(/* webpackChunkName: "history" */ './components/history.vue'))
Vue.component('loader', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/loader.vue'))
2018-09-16 22:36:15 +00:00
Vue.component('login', () => import(/* webpackPrefetch: true, webpackChunkName: "login" */ './components/login.vue'))
2018-09-23 04:14:01 +00:00
Vue.component('nav-header', () => import(/* webpackMode: "eager" */ './components/common/nav-header.vue'))
2019-08-04 02:51:29 +00:00
Vue.component('new-page', () => import(/* webpackChunkName: "new-page" */ './components/new-page.vue'))
Vue.component('notify', () => import(/* webpackMode: "eager" */ './components/common/notify.vue'))
2019-08-31 01:23:04 +00:00
Vue.component('not-found', () => import(/* webpackChunkName: "not-found" */ './components/not-found.vue'))
2018-09-30 22:19:28 +00:00
Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/page-selector.vue'))
2020-05-17 22:38:23 +00:00
Vue.component('page-source', () => import(/* webpackChunkName: "source" */ './components/source.vue'))
2018-05-21 03:27:06 +00:00
Vue.component('profile', () => import(/* webpackChunkName: "profile" */ './components/profile.vue'))
Vue.component('register', () => import(/* webpackChunkName: "register" */ './components/register.vue'))
2019-03-09 05:51:02 +00:00
Vue.component('search-results', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/search-results.vue'))
2020-02-09 19:10:39 +00:00
Vue.component('social-sharing', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/social-sharing.vue'))
Vue.component('tags', () => import(/* webpackChunkName: "tags" */ './components/tags.vue'))
2019-08-27 03:03:56 +00:00
Vue.component('unauthorized', () => import(/* webpackChunkName: "unauthorized" */ './components/unauthorized.vue'))
Vue.component('v-card-chin', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/v-card-chin.vue'))
2020-05-10 22:29:24 +00:00
Vue.component('v-card-info', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/v-card-info.vue'))
2019-08-04 02:51:29 +00:00
Vue.component('welcome', () => import(/* webpackChunkName: "welcome" */ './components/welcome.vue'))
2017-07-02 02:23:40 +00:00
2020-04-24 21:40:41 +00:00
Vue.component('nav-footer', () => import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/components/nav-footer.vue'))
Vue.component('page', () => import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/components/page.vue'))
2018-02-03 21:48:25 +00:00
let bootstrap = () => {
// ====================================
// Notifications
// ====================================
2016-08-28 15:27:05 +00:00
2017-09-10 05:41:22 +00:00
window.addEventListener('beforeunload', () => {
store.dispatch('startLoading')
2017-02-09 01:52:37 +00:00
})
const apolloProvider = new VueApollo({
defaultClient: window.graphQL
})
2017-05-21 03:21:16 +00:00
// ====================================
// Bootstrap Vue
// ====================================
const i18n = localization.init()
let darkModeEnabled = siteConfig.darkMode
if ((store.get('user/appearance') || '').length > 0) {
darkModeEnabled = (store.get('user/appearance') === 'dark')
}
window.WIKI = new Vue({
el: '#root',
2017-07-02 02:23:40 +00:00
components: {},
mixins: [helpers],
apolloProvider,
2017-05-21 03:21:16 +00:00
store,
2019-07-29 04:50:03 +00:00
i18n,
vuetify: new Vuetify({
2019-08-05 03:53:21 +00:00
rtl: siteConfig.rtl,
theme: {
dark: darkModeEnabled
2019-08-05 03:53:21 +00:00
}
}),
mounted () {
this.$moment.locale(siteConfig.lang)
if ((store.get('user/dateFormat') || '').length > 0) {
this.$moment.updateLocale(this.$moment.locale(), {
longDateFormat: {
'L': store.get('user/dateFormat')
}
})
}
if ((store.get('user/timezone') || '').length > 0) {
this.$moment.tz.setDefault(store.get('user/timezone'))
}
}
2017-05-21 03:21:16 +00:00
})
2018-02-03 21:48:25 +00:00
// ----------------------------------
// Dispatch boot ready
// ----------------------------------
window.boot.notify('vue')
}
window.boot.onDOMReady(bootstrap)