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'
|
2017-02-04 12:52:26 +00:00
|
|
|
import ConversationPage from './components/conversation-page/conversation-page.vue'
|
2016-11-26 20:09:41 +00:00
|
|
|
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'
|
2017-08-02 19:09:40 +00:00
|
|
|
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'
|
2016-11-26 17:57:08 +00:00
|
|
|
import apiModule from './modules/api.js'
|
2017-02-14 21:21:23 +00:00
|
|
|
import configModule from './modules/config.js'
|
2016-10-26 17:03:55 +00:00
|
|
|
|
2016-11-28 16:37:47 +00:00
|
|
|
import VueTimeago from 'vue-timeago'
|
|
|
|
|
2017-02-20 17:25:19 +00:00
|
|
|
import createPersistedState from './lib/persisted_state.js'
|
2017-02-14 21:42:13 +00:00
|
|
|
|
2016-10-26 17:03:55 +00:00
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
2016-11-28 16:37:47 +00:00
|
|
|
Vue.use(VueTimeago, {
|
|
|
|
locale: 'en-US',
|
|
|
|
locales: {
|
2017-05-31 09:45:03 +00:00
|
|
|
'en-US': require('../static/timeago.json')
|
2016-11-28 16:37:47 +00:00
|
|
|
}
|
|
|
|
})
|
2016-10-26 17:03:55 +00:00
|
|
|
|
2017-02-20 16:49:43 +00:00
|
|
|
const persistedStateOptions = {
|
2017-02-23 00:54:22 +00:00
|
|
|
paths: [
|
|
|
|
'config.hideAttachments',
|
2017-03-04 20:25:59 +00:00
|
|
|
'config.hideAttachmentsInConv',
|
2017-02-22 23:59:48 +00:00
|
|
|
'config.hideNsfw',
|
2017-06-03 15:51:55 +00:00
|
|
|
'config.autoLoad',
|
2017-06-07 14:58:24 +00:00
|
|
|
'config.hoverPreview',
|
2017-04-09 13:53:23 +00:00
|
|
|
'config.muteWords',
|
2017-07-02 11:07:35 +00:00
|
|
|
'users.lastLoginName'
|
2017-02-23 00:54:22 +00:00
|
|
|
]
|
2017-02-20 16:49:43 +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,
|
2016-11-26 17:57:08 +00:00
|
|
|
users: usersModule,
|
2017-02-14 21:21:23 +00:00
|
|
|
api: apiModule,
|
|
|
|
config: configModule
|
2017-02-14 21:42:13 +00:00
|
|
|
},
|
2017-02-20 16:49:43 +00:00
|
|
|
plugins: [createPersistedState(persistedStateOptions)],
|
2017-02-16 13:23:59 +00:00
|
|
|
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 },
|
2016-11-24 17:17:09 +00:00
|
|
|
{ path: '/main/friends', component: FriendsTimeline },
|
2017-09-17 11:26:35 +00:00
|
|
|
{ path: '/tag/:tag', component: TagTimeline },
|
2017-03-05 10:56:28 +00:00
|
|
|
{ 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 },
|
2017-08-02 19:09:40 +00:00
|
|
|
{ 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) => {
|
2017-03-05 10:56:28 +00:00
|
|
|
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
|
|
|
|
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
2016-10-26 17:03:55 +00:00
|
|
|
router,
|
|
|
|
store,
|
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
|
|
|
|
2017-02-14 21:21:23 +00:00
|
|
|
window.fetch('/static/config.json')
|
|
|
|
.then((res) => res.json())
|
2017-06-20 07:37:51 +00:00
|
|
|
.then(({name, theme, background, logo, registrationOpen}) => {
|
2017-02-14 21:21:23 +00:00
|
|
|
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 })
|
2017-06-20 07:37:51 +00:00
|
|
|
store.dispatch('setOption', { name: 'registrationOpen', value: registrationOpen })
|
2017-02-14 21:21:23 +00:00
|
|
|
})
|
2017-06-19 13:35:35 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2017-10-19 20:39:21 +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 })
|
|
|
|
})
|