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