wikijs-fork/client/js/app.js

100 lines
2.7 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'
import store from './store'
2017-03-27 02:07:40 +00:00
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 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 adminUsersCreateComponent from './modals/admin-users-create.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'
2017-05-22 01:30:34 +00:00
import sourceComponent from './pages/source.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-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,
adminUsersCreate: adminUsersCreateComponent,
2017-05-21 03:21:16 +00:00
anchor: anchorComponent,
colorPicker: colorPickerComponent,
loadingSpinner: loadingSpinnerComponent,
2017-05-21 22:58:19 +00:00
search: searchComponent,
2017-05-22 01:30:34 +00:00
sourceView: sourceComponent,
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-21 22:58:19 +00:00
$('a').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
})