pleroma-fe/src/main.js

127 lines
4 KiB
JavaScript
Raw Normal View History

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