akkoma-fe/src/main.js

228 lines
8.5 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'
2018-06-07 00:58:44 +00:00
import FollowRequests from './components/follow_requests/follow_requests.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.collapseMessageWithSubject',
2017-02-23 00:54:22 +00:00
'config.hideAttachments',
'config.hideAttachmentsInConv',
'config.hideNsfw',
'config.replyVisibility',
'config.notificationVisibility',
'config.autoLoad',
'config.hoverPreview',
'config.streaming',
'config.muteWords',
'config.customTheme',
2018-06-18 08:36:58 +00:00
'config.highlight',
'config.loopVideo',
'config.loopVideoSilentOnly',
'config.pauseOnUnfocused',
'config.stopGifs',
'config.interfaceLanguage',
'users.lastLoginName',
'statuses.notifications.maxSavedId'
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({
// By default, use the browser locale, we will update it if neccessary
2017-11-07 14:23:00 +00:00
locale: currentLocale,
2017-11-07 14:14:37 +00:00
fallbackLocale: 'en',
messages
})
window.fetch('/api/statusnet/config.json')
.then((res) => res.json())
2017-11-22 15:28:05 +00:00
.then((data) => {
const {name, closed: registrationClosed, textlimit, server} = data.site
2018-02-09 13:37:32 +00:00
store.dispatch('setOption', { name: 'name', value: name })
2018-02-09 13:37:32 +00:00
store.dispatch('setOption', { name: 'registrationOpen', value: (registrationClosed === '0') })
store.dispatch('setOption', { name: 'textlimit', value: parseInt(textlimit) })
store.dispatch('setOption', { name: 'server', value: server })
var apiConfig = data.site.pleromafe
2018-08-25 22:01:56 +00:00
2018-08-25 21:54:03 +00:00
window.fetch('/static/config.json')
2018-08-25 22:01:56 +00:00
.then((res) => res.json())
2018-08-24 09:46:14 +00:00
.then((data) => {
var staticConfig = data
// This takes static config and overrides properties that are present in apiConfig
var config = Object.assign({}, staticConfig, apiConfig)
var theme = (config.theme)
var background = (config.background)
var logo = (config.logo)
var logoMask = (typeof config.logoMask === 'undefined' ? true : config.logoMask)
var logoMargin = (typeof config.logoMargin === 'undefined' ? 0 : config.logoMargin)
var redirectRootNoLogin = (config.redirectRootNoLogin)
var redirectRootLogin = (config.redirectRootLogin)
var chatDisabled = (config.chatDisabled)
var showInstanceSpecificPanel = (config.showInstanceSpecificPanel)
var scopeOptionsEnabled = (config.scopeOptionsEnabled)
var formattingOptionsEnabled = (config.formattingOptionsEnabled)
2018-09-08 02:16:25 +00:00
var defaultCollapseMessageWithSubject = (config.collapseMessageWithSubject)
2018-08-24 09:46:14 +00:00
store.dispatch('setOption', { name: 'theme', value: theme })
store.dispatch('setOption', { name: 'background', value: background })
store.dispatch('setOption', { name: 'logo', value: logo })
store.dispatch('setOption', { name: 'logoMask', value: logoMask })
store.dispatch('setOption', { name: 'logoMargin', value: logoMargin })
2018-08-24 09:46:14 +00:00
store.dispatch('setOption', { name: 'showInstanceSpecificPanel', value: showInstanceSpecificPanel })
store.dispatch('setOption', { name: 'scopeOptionsEnabled', value: scopeOptionsEnabled })
store.dispatch('setOption', { name: 'formattingOptionsEnabled', value: formattingOptionsEnabled })
2018-09-08 02:16:25 +00:00
store.dispatch('setOption', { name: 'defaultCollapseMessageWithSubject', value: defaultCollapseMessageWithSubject })
2018-08-24 09:46:14 +00:00
if (chatDisabled) {
store.dispatch('disableChat')
2017-11-22 15:28:05 +00:00
}
2018-08-24 09:46:14 +00:00
const routes = [
{ name: 'root',
path: '/',
redirect: to => {
return (store.state.users.currentUser ? redirectRootLogin : redirectRootNoLogin) || '/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 },
{ name: 'registration', path: '/registration/:token', component: Registration },
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests },
{ name: 'user-settings', path: '/user-settings', component: UserSettings }
]
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)
})
2017-11-22 15:28:05 +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
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: 'customEmoji', 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)
)
2018-02-03 15:27:33 +00:00
2017-11-20 18:32:51 +00:00
window.fetch('/static/emoji.json')
.then((res) => res.json())
.then((values) => {
const emoji = Object.keys(values).map((key) => {
return { shortcode: key, image_url: false, 'utf': values[key] }
})
2017-09-19 19:43:20 +00:00
store.dispatch('setOption', { name: 'emoji', value: emoji })
})
2018-02-03 23:36:10 +00:00
2018-02-03 15:27:33 +00:00
window.fetch('/instance/panel.html')
.then((res) => res.text())
.then((html) => {
store.dispatch('setOption', { name: 'instanceSpecificPanelContent', value: html })
})
2018-08-22 02:47:36 +00:00
window.fetch('/nodeinfo/2.0.json')
.then((res) => res.json())
.then((data) => {
2018-09-04 01:44:25 +00:00
const metadata = data.metadata
store.dispatch('setOption', { name: 'mediaProxyAvailable', value: data.metadata.mediaProxy })
store.dispatch('setOption', { name: 'chatAvailable', value: data.metadata.chat })
store.dispatch('setOption', { name: 'gopherAvailable', value: data.metadata.gopher })
const suggestions = metadata.suggestions
2018-08-22 02:47:36 +00:00
store.dispatch('setOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
store.dispatch('setOption', { name: 'suggestionsWeb', value: suggestions.web })
})