2016-10-27 01:46:32 +11:00
|
|
|
import Vue from 'vue'
|
2016-10-27 04:03:55 +11:00
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import App from './App.vue'
|
|
|
|
import PublicTimeline from './components/public_timeline/public_timeline.vue'
|
2016-11-07 07:46:01 +11:00
|
|
|
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
|
2016-10-29 00:19:42 +11:00
|
|
|
import FriendsTimeline from './components/friends_timeline/friends_timeline.vue'
|
2017-09-17 21:26:35 +10:00
|
|
|
import TagTimeline from './components/tag_timeline/tag_timeline.vue'
|
2017-02-04 23:52:26 +11:00
|
|
|
import ConversationPage from './components/conversation-page/conversation-page.vue'
|
2016-11-27 07:09:41 +11:00
|
|
|
import Mentions from './components/mentions/mentions.vue'
|
2016-12-01 09:32:22 +11:00
|
|
|
import UserProfile from './components/user_profile/user_profile.vue'
|
2017-02-17 08:25:41 +11:00
|
|
|
import Settings from './components/settings/settings.vue'
|
2017-04-16 02:12:23 +10:00
|
|
|
import Registration from './components/registration/registration.vue'
|
2017-08-03 05:09:40 +10:00
|
|
|
import UserSettings from './components/user_settings/user_settings.vue'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-10-28 03:03:25 +11:00
|
|
|
import statusesModule from './modules/statuses.js'
|
|
|
|
import usersModule from './modules/users.js'
|
2016-11-27 04:57:08 +11:00
|
|
|
import apiModule from './modules/api.js'
|
2017-02-15 08:21:23 +11:00
|
|
|
import configModule from './modules/config.js'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-11-29 03:37:47 +11:00
|
|
|
import VueTimeago from 'vue-timeago'
|
|
|
|
|
2017-02-21 04:25:19 +11:00
|
|
|
import createPersistedState from './lib/persisted_state.js'
|
2017-02-15 08:42:13 +11:00
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
2016-11-29 03:37:47 +11:00
|
|
|
Vue.use(VueTimeago, {
|
|
|
|
locale: 'en-US',
|
|
|
|
locales: {
|
2017-05-31 19:45:03 +10:00
|
|
|
'en-US': require('../static/timeago.json')
|
2016-11-29 03:37:47 +11:00
|
|
|
}
|
|
|
|
})
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2017-02-21 03:49:43 +11:00
|
|
|
const persistedStateOptions = {
|
2017-02-23 11:54:22 +11:00
|
|
|
paths: [
|
|
|
|
'config.hideAttachments',
|
2017-03-05 07:25:59 +11:00
|
|
|
'config.hideAttachmentsInConv',
|
2017-02-23 10:59:48 +11:00
|
|
|
'config.hideNsfw',
|
2017-06-04 01:51:55 +10:00
|
|
|
'config.autoLoad',
|
2017-06-08 00:58:24 +10:00
|
|
|
'config.hoverPreview',
|
2017-04-09 23:53:23 +10:00
|
|
|
'config.muteWords',
|
2017-07-02 21:07:35 +10:00
|
|
|
'users.lastLoginName'
|
2017-02-23 11:54:22 +11:00
|
|
|
]
|
2017-02-21 03:49:43 +11:00
|
|
|
}
|
2017-02-15 08:42:13 +11:00
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
2016-10-28 03:03:25 +11:00
|
|
|
statuses: statusesModule,
|
2016-11-27 04:57:08 +11:00
|
|
|
users: usersModule,
|
2017-02-15 08:21:23 +11:00
|
|
|
api: apiModule,
|
|
|
|
config: configModule
|
2017-02-15 08:42:13 +11:00
|
|
|
},
|
2017-02-21 03:49:43 +11:00
|
|
|
plugins: [createPersistedState(persistedStateOptions)],
|
2017-02-17 00:23:59 +11:00
|
|
|
strict: process.env.NODE_ENV !== 'production'
|
2016-10-27 04:03:55 +11:00
|
|
|
})
|
|
|
|
|
|
|
|
const routes = [
|
2017-02-17 20:16:29 +11:00
|
|
|
{ name: 'root', path: '/', redirect: '/main/all' },
|
2016-11-07 07:46:01 +11:00
|
|
|
{ path: '/main/all', component: PublicAndExternalTimeline },
|
2016-10-29 00:19:42 +11:00
|
|
|
{ path: '/main/public', component: PublicTimeline },
|
2016-11-25 04:17:09 +11:00
|
|
|
{ path: '/main/friends', component: FriendsTimeline },
|
2017-09-17 21:26:35 +10:00
|
|
|
{ path: '/tag/:tag', component: TagTimeline },
|
2017-03-05 21:56:28 +11:00
|
|
|
{ name: 'conversation', path: '/notice/:id', component: ConversationPage, meta: { dontScroll: true } },
|
2016-12-01 09:32:22 +11:00
|
|
|
{ name: 'user-profile', path: '/users/:id', component: UserProfile },
|
2017-02-17 08:25:41 +11:00
|
|
|
{ name: 'mentions', path: '/:username/mentions', component: Mentions },
|
2017-04-16 02:12:23 +10:00
|
|
|
{ name: 'settings', path: '/settings', component: Settings },
|
2017-08-03 05:09:40 +10:00
|
|
|
{ name: 'registration', path: '/registration', component: Registration },
|
|
|
|
{ name: 'user-settings', path: '/user-settings', component: UserSettings }
|
2016-10-27 04:03:55 +11:00
|
|
|
]
|
|
|
|
|
2016-11-07 06:26:07 +11:00
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
2016-11-25 04:24:35 +11:00
|
|
|
routes,
|
|
|
|
scrollBehavior: (to, from, savedPosition) => {
|
2017-03-05 21:56:28 +11:00
|
|
|
if (to.matched.some(m => m.meta.dontScroll)) {
|
|
|
|
return false
|
|
|
|
}
|
2016-11-25 04:24:35 +11:00
|
|
|
return savedPosition || { x: 0, y: 0 }
|
|
|
|
}
|
2016-11-07 06:26:07 +11:00
|
|
|
})
|
2016-10-27 01:46:32 +11:00
|
|
|
|
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
2016-10-27 04:03:55 +11:00
|
|
|
router,
|
|
|
|
store,
|
2016-10-27 01:46:32 +11:00
|
|
|
el: '#app',
|
2017-02-21 21:48:08 +11:00
|
|
|
render: h => h(App)
|
2016-10-27 01:46:32 +11:00
|
|
|
})
|
2017-01-17 03:44:26 +11:00
|
|
|
|
2017-02-15 08:21:23 +11:00
|
|
|
window.fetch('/static/config.json')
|
|
|
|
.then((res) => res.json())
|
2017-06-20 17:37:51 +10:00
|
|
|
.then(({name, theme, background, logo, registrationOpen}) => {
|
2017-02-15 08:21:23 +11:00
|
|
|
store.dispatch('setOption', { name: 'name', value: name })
|
|
|
|
store.dispatch('setOption', { name: 'theme', value: theme })
|
2017-02-17 02:59:06 +11:00
|
|
|
store.dispatch('setOption', { name: 'background', value: background })
|
2017-02-17 03:44:36 +11:00
|
|
|
store.dispatch('setOption', { name: 'logo', value: logo })
|
2017-06-20 17:37:51 +10:00
|
|
|
store.dispatch('setOption', { name: 'registrationOpen', value: registrationOpen })
|
2017-02-15 08:21:23 +11:00
|
|
|
})
|
2017-06-19 23:35:35 +10:00
|
|
|
|
|
|
|
window.fetch('/static/terms-of-service.html')
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then((html) => {
|
|
|
|
store.dispatch('setOption', { name: 'tos', value: html })
|
|
|
|
})
|