akkoma-fe/src/main.js

149 lines
4.8 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'
2017-12-05 10:47:10 +00:00
import chatModule from './modules/chat.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'
2018-01-26 14:11:34 +00:00
import VueChatScroll from 'vue-chat-scroll'
2017-11-08 20:18:42 +00:00
const currentLocale = (window.navigator.language || 'en').split('-')[0]
2016-10-26 17:03:55 +00:00
Vue.use(Vuex)
Vue.use(VueRouter)
Vue.use(VueTimeago, {
locale: currentLocale === 'ja' ? 'ja' : 'en',
locales: {
2017-11-08 20:18:42 +00:00
'en': require('../static/timeago-en.json'),
'ja': require('../static/timeago-ja.json')
}
})
2017-11-07 14:14:37 +00:00
Vue.use(VueI18n)
2018-01-26 14:11:34 +00:00
Vue.use(VueChatScroll)
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.streaming',
'config.muteWords',
'config.customTheme',
'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,
2017-12-05 10:47:10 +00:00
config: configModule,
chat: chatModule
2017-02-14 21:42:13 +00:00
},
plugins: [createPersistedState(persistedStateOptions)],
2017-12-04 18:08:33 +00:00
strict: false // Socket modifies itself, let's ignore this for now.
// strict: process.env.NODE_ENV !== 'production'
2016-10-26 17:03:55 +00:00
})
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
})
window.fetch('/static/config.json')
.then((res) => res.json())
2017-11-22 15:28:05 +00:00
.then((data) => {
const {name, theme, background, logo, registrationOpen} = data
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 })
2017-12-07 16:20:44 +00:00
if (data['chatDisabled']) {
store.dispatch('disableChat')
}
2017-11-22 15:28:05 +00:00
const routes = [
{ name: 'root', path: '/', redirect: data['defaultPath'] || '/main/all' },
{ path: '/main/all', component: PublicAndExternalTimeline },
{ path: '/main/public', component: PublicTimeline },
{ path: '/main/friends', component: FriendsTimeline },
{ path: '/tag/:tag', component: TagTimeline },
{ name: 'conversation', path: '/notice/:id', component: ConversationPage, meta: { dontScroll: true } },
{ name: 'user-profile', path: '/users/:id', component: UserProfile },
{ name: 'mentions', path: '/:username/mentions', component: Mentions },
{ name: 'settings', path: '/settings', component: Settings },
{ name: 'registration', path: '/registration', component: Registration },
2018-01-26 14:11:34 +00:00
{ name: 'user-settings', path: '/user-settings', component: UserSettings }
2017-11-22 15:28:05 +00:00
]
const router = new VueRouter({
mode: 'history',
routes,
scrollBehavior: (to, from, savedPosition) => {
if (to.matched.some(m => m.meta.dontScroll)) {
return false
}
return savedPosition || { x: 0, y: 0 }
}
})
/* eslint-disable no-new */
new Vue({
router,
store,
i18n,
el: '#app',
render: h => h(App)
})
})
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')
2017-12-07 21:37:05 +00:00
.then(
(res) => res.json()
.then(
(values) => {
const emoji = Object.keys(values).map((key) => {
return { shortcode: key, image_url: values[key] }
})
store.dispatch('setOption', { name: 'emoji', value: emoji })
2017-12-23 09:31:43 +00:00
store.dispatch('setOption', { name: 'pleromaBackend', value: true })
2017-12-07 21:37:05 +00:00
},
2017-12-23 09:31:43 +00:00
(failure) => {
store.dispatch('setOption', { name: 'pleromaBackend', value: false })
}
2017-12-07 21:37:05 +00:00
),
(error) => console.log(error)
)