wikijs-fork/client/js/app.js

105 lines
3.0 KiB
JavaScript
Raw Normal View History

2017-02-09 01:52:37 +00:00
'use strict'
2017-05-21 22:58:19 +00:00
/* global siteLang */
2017-05-21 03:21:16 +00:00
/* eslint-disable no-new */
2017-03-27 02:07:40 +00:00
import $ from 'jquery'
2017-05-21 03:21:16 +00:00
import Vue from 'vue'
import VueResource from 'vue-resource'
2017-05-22 17:32:52 +00:00
import VueClipboards from 'vue-clipboards'
import store from './store'
import io from 'socket-io-client'
2017-05-21 03:21:16 +00:00
import i18next from 'i18next'
import i18nextXHR from 'i18next-xhr-backend'
import VueI18Next from '@panter/vue-i18next'
import 'jquery-smooth-scroll'
import 'jquery-sticky'
2017-05-21 03:21:16 +00:00
// ====================================
// Load Vue Components
// ====================================
import alertComponent from './components/alert.vue'
2017-05-21 03:21:16 +00:00
import anchorComponent from './components/anchor.vue'
import colorPickerComponent from './components/color-picker.vue'
import loadingSpinnerComponent from './components/loading-spinner.vue'
import modalCreatePageComponent from './components/modal-create-page.vue'
import modalCreateUserComponent from './components/modal-create-user.vue'
2017-05-21 03:21:16 +00:00
import searchComponent from './components/search.vue'
2017-05-21 22:58:19 +00:00
import treeComponent from './components/tree.vue'
2017-05-21 03:21:16 +00:00
import adminProfileComponent from './pages/admin-profile.component.js'
import adminSettingsComponent from './pages/admin-settings.component.js'
import contentViewComponent from './pages/content-view.component.js'
import sourceViewComponent from './pages/source-view.component.js'
2017-05-21 03:21:16 +00:00
// ====================================
// Initialize Vue Modules
2017-05-21 03:21:16 +00:00
// ====================================
Vue.use(VueResource)
2017-05-22 17:32:52 +00:00
Vue.use(VueClipboards)
2017-05-21 03:21:16 +00:00
Vue.use(VueI18Next)
i18next
.use(i18nextXHR)
.init({
backend: {
loadPath: '/js/i18n/{{lng}}.json'
},
lng: siteLang,
fallbackLng: siteLang
})
$(() => {
// ====================================
// Notifications
// ====================================
2016-08-28 15:27:05 +00:00
2017-02-09 01:52:37 +00:00
$(window).bind('beforeunload', () => {
store.dispatch('startLoading')
2017-02-09 01:52:37 +00:00
})
$(document).ajaxSend(() => {
store.dispatch('startLoading')
2017-02-09 01:52:37 +00:00
}).ajaxComplete(() => {
store.dispatch('stopLoading')
2017-02-09 01:52:37 +00:00
})
2016-08-28 01:46:10 +00:00
// ====================================
// Establish WebSocket connection
// ====================================
2017-05-21 03:21:16 +00:00
let socket = io(window.location.origin)
window.socket = socket
2017-05-21 03:21:16 +00:00
// ====================================
// Bootstrap Vue
// ====================================
const i18n = new VueI18Next(i18next)
new Vue({
components: {
alert: alertComponent,
2017-05-21 03:21:16 +00:00
adminProfile: adminProfileComponent,
adminSettings: adminSettingsComponent,
anchor: anchorComponent,
colorPicker: colorPickerComponent,
contentView: contentViewComponent,
2017-05-21 03:21:16 +00:00
loadingSpinner: loadingSpinnerComponent,
modalCreatePage: modalCreatePageComponent,
modalCreateUser: modalCreateUserComponent,
2017-05-21 22:58:19 +00:00
search: searchComponent,
sourceView: sourceViewComponent,
2017-05-21 22:58:19 +00:00
tree: treeComponent
},
2017-05-21 03:21:16 +00:00
store,
i18n,
el: '#root',
mounted() {
2017-05-22 17:32:52 +00:00
$('a:not(.toc-anchor)').smoothScroll({ speed: 500, offset: -50 })
$('#header').sticky({ topSpacing: 0 })
$('.sidebar-pagecontents').sticky({ topSpacing: 15, bottomSpacing: 75 })
}
2017-05-21 03:21:16 +00:00
})
2017-02-09 01:52:37 +00:00
})