2016-10-26 07:46:32 -07:00
|
|
|
import Vue from 'vue'
|
2016-10-26 10:03:55 -07:00
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
|
2018-09-09 09:36:13 -07:00
|
|
|
import interfaceModule from './modules/interface.js'
|
2018-09-09 11:21:23 -07:00
|
|
|
import instanceModule from './modules/instance.js'
|
2016-10-27 09:03:25 -07:00
|
|
|
import statusesModule from './modules/statuses.js'
|
|
|
|
import usersModule from './modules/users.js'
|
2016-11-26 09:57:08 -08:00
|
|
|
import apiModule from './modules/api.js'
|
2017-02-14 13:21:23 -08:00
|
|
|
import configModule from './modules/config.js'
|
2017-12-05 02:47:10 -08:00
|
|
|
import chatModule from './modules/chat.js'
|
2018-10-26 06:16:23 -07:00
|
|
|
import oauthModule from './modules/oauth.js'
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2016-11-28 08:37:47 -08:00
|
|
|
import VueTimeago from 'vue-timeago'
|
2017-11-07 06:14:37 -08:00
|
|
|
import VueI18n from 'vue-i18n'
|
2016-11-28 08:37:47 -08:00
|
|
|
|
2017-02-20 09:25:19 -08:00
|
|
|
import createPersistedState from './lib/persisted_state.js'
|
2017-02-14 13:42:13 -08:00
|
|
|
|
2017-11-07 06:14:37 -08:00
|
|
|
import messages from './i18n/messages.js'
|
|
|
|
|
2018-01-26 06:11:34 -08:00
|
|
|
import VueChatScroll from 'vue-chat-scroll'
|
|
|
|
|
2018-10-26 06:16:23 -07:00
|
|
|
import afterStoreSetup from './boot/after_store.js'
|
|
|
|
|
2017-11-08 12:18:42 -08:00
|
|
|
const currentLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
|
2016-10-26 10:03:55 -07:00
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
2016-11-28 08:37:47 -08:00
|
|
|
Vue.use(VueTimeago, {
|
2017-11-08 23:45:02 -08:00
|
|
|
locale: currentLocale === 'ja' ? 'ja' : 'en',
|
2016-11-28 08:37:47 -08:00
|
|
|
locales: {
|
2017-11-08 12:18:42 -08:00
|
|
|
'en': require('../static/timeago-en.json'),
|
|
|
|
'ja': require('../static/timeago-ja.json')
|
2016-11-28 08:37:47 -08:00
|
|
|
}
|
|
|
|
})
|
2017-11-07 06:14:37 -08:00
|
|
|
Vue.use(VueI18n)
|
2018-01-26 06:11:34 -08:00
|
|
|
Vue.use(VueChatScroll)
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2017-11-07 06:14:37 -08:00
|
|
|
const i18n = new VueI18n({
|
2018-08-25 03:12:33 -07:00
|
|
|
// By default, use the browser locale, we will update it if neccessary
|
2017-11-07 06:23:00 -08:00
|
|
|
locale: currentLocale,
|
2017-11-07 06:14:37 -08:00
|
|
|
fallbackLocale: 'en',
|
|
|
|
messages
|
|
|
|
})
|
|
|
|
|
2018-10-26 06:16:23 -07:00
|
|
|
const persistedStateOptions = {
|
|
|
|
paths: [
|
|
|
|
'config',
|
|
|
|
'users.lastLoginName',
|
|
|
|
'oauth'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
createPersistedState(persistedStateOptions).then((persistedState) => {
|
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
|
|
|
interface: interfaceModule,
|
|
|
|
instance: instanceModule,
|
|
|
|
statuses: statusesModule,
|
|
|
|
users: usersModule,
|
|
|
|
api: apiModule,
|
|
|
|
config: configModule,
|
|
|
|
chat: chatModule,
|
2018-12-10 07:36:25 -08:00
|
|
|
oauth: oauthModule
|
2018-10-26 06:16:23 -07:00
|
|
|
},
|
|
|
|
plugins: [persistedState],
|
|
|
|
strict: false // Socket modifies itself, let's ignore this for now.
|
|
|
|
// strict: process.env.NODE_ENV !== 'production'
|
2018-02-03 07:27:33 -08:00
|
|
|
})
|
|
|
|
|
2018-12-10 07:36:25 -08:00
|
|
|
store.subscribe((mutation, state) => {
|
|
|
|
if ((mutation.type === 'setCurrentUser' && state.instance.vapidPublicKey) || // Login + existing key
|
|
|
|
(mutation.type === 'setInstanceOption' && mutation.payload.name === 'vapidPublicKey' && state.users.currentUser)) { // Logged in, key arrives late
|
|
|
|
store.dispatch('registerPushNotifications')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-12-07 05:13:36 -08:00
|
|
|
afterStoreSetup({ store, i18n })
|
2018-10-26 06:16:23 -07:00
|
|
|
})
|