2016-10-27 01:46:32 +11:00
|
|
|
import Vue from 'vue'
|
2016-10-27 04:03:55 +11: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-07 07:46:01 +11:00
|
|
|
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
|
2016-10-29 00:19:42 +11:00
|
|
|
import FriendsTimeline from './components/friends_timeline/friends_timeline.vue'
|
2017-09-17 21:26:35 +10:00
|
|
|
import TagTimeline from './components/tag_timeline/tag_timeline.vue'
|
2017-02-04 23:52:26 +11:00
|
|
|
import ConversationPage from './components/conversation-page/conversation-page.vue'
|
2016-11-27 07:09:41 +11:00
|
|
|
import Mentions from './components/mentions/mentions.vue'
|
2016-12-01 09:32:22 +11:00
|
|
|
import UserProfile from './components/user_profile/user_profile.vue'
|
2017-02-17 08:25:41 +11:00
|
|
|
import Settings from './components/settings/settings.vue'
|
2017-04-16 02:12:23 +10:00
|
|
|
import Registration from './components/registration/registration.vue'
|
2017-08-03 05:09:40 +10:00
|
|
|
import UserSettings from './components/user_settings/user_settings.vue'
|
2018-06-07 10:58:44 +10:00
|
|
|
import FollowRequests from './components/follow_requests/follow_requests.vue'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-10-28 03:03:25 +11:00
|
|
|
import statusesModule from './modules/statuses.js'
|
|
|
|
import usersModule from './modules/users.js'
|
2016-11-27 04:57:08 +11:00
|
|
|
import apiModule from './modules/api.js'
|
2017-02-15 08:21:23 +11:00
|
|
|
import configModule from './modules/config.js'
|
2017-12-05 21:47:10 +11:00
|
|
|
import chatModule from './modules/chat.js'
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2016-11-29 03:37:47 +11:00
|
|
|
import VueTimeago from 'vue-timeago'
|
2017-11-08 01:14:37 +11:00
|
|
|
import VueI18n from 'vue-i18n'
|
2016-11-29 03:37:47 +11:00
|
|
|
|
2017-02-21 04:25:19 +11:00
|
|
|
import createPersistedState from './lib/persisted_state.js'
|
2017-02-15 08:42:13 +11:00
|
|
|
|
2017-11-08 01:14:37 +11:00
|
|
|
import messages from './i18n/messages.js'
|
|
|
|
|
2018-01-27 01:11:34 +11:00
|
|
|
import VueChatScroll from 'vue-chat-scroll'
|
|
|
|
|
2017-11-09 07:18:42 +11:00
|
|
|
const currentLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
2016-11-29 03:37:47 +11:00
|
|
|
Vue.use(VueTimeago, {
|
2017-11-09 18:45:02 +11:00
|
|
|
locale: currentLocale === 'ja' ? 'ja' : 'en',
|
2016-11-29 03:37:47 +11:00
|
|
|
locales: {
|
2017-11-09 07:18:42 +11:00
|
|
|
'en': require('../static/timeago-en.json'),
|
|
|
|
'ja': require('../static/timeago-ja.json')
|
2016-11-29 03:37:47 +11:00
|
|
|
}
|
|
|
|
})
|
2017-11-08 01:14:37 +11:00
|
|
|
Vue.use(VueI18n)
|
2018-01-27 01:11:34 +11:00
|
|
|
Vue.use(VueChatScroll)
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2017-02-21 03:49:43 +11:00
|
|
|
const persistedStateOptions = {
|
2017-02-23 11:54:22 +11:00
|
|
|
paths: [
|
2018-08-20 12:41:40 +10:00
|
|
|
'config.collapseMessageWithSubject',
|
2018-08-18 20:56:45 +10:00
|
|
|
'config.hideAttachments',
|
|
|
|
'config.hideAttachmentsInConv',
|
|
|
|
'config.hideNsfw',
|
|
|
|
'config.autoLoad',
|
|
|
|
'config.hoverPreview',
|
|
|
|
'config.streaming',
|
|
|
|
'config.muteWords',
|
|
|
|
'config.customTheme',
|
|
|
|
'config.highlight',
|
|
|
|
'config.loopVideo',
|
|
|
|
'config.loopVideoSilentOnly',
|
|
|
|
'config.pauseOnUnfocused',
|
|
|
|
'config.stopGifs',
|
2017-07-02 21:07:35 +10:00
|
|
|
'users.lastLoginName'
|
2017-02-23 11:54:22 +11:00
|
|
|
]
|
2017-02-21 03:49:43 +11:00
|
|
|
}
|
2017-02-15 08:42:13 +11:00
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
2016-10-28 03:03:25 +11:00
|
|
|
statuses: statusesModule,
|
2016-11-27 04:57:08 +11:00
|
|
|
users: usersModule,
|
2017-02-15 08:21:23 +11:00
|
|
|
api: apiModule,
|
2017-12-05 21:47:10 +11:00
|
|
|
config: configModule,
|
|
|
|
chat: chatModule
|
2017-02-15 08:42:13 +11:00
|
|
|
},
|
2017-02-21 03:49:43 +11:00
|
|
|
plugins: [createPersistedState(persistedStateOptions)],
|
2017-12-05 05:08:33 +11:00
|
|
|
strict: false // Socket modifies itself, let's ignore this for now.
|
|
|
|
// strict: process.env.NODE_ENV !== 'production'
|
2016-10-27 04:03:55 +11:00
|
|
|
})
|
|
|
|
|
2017-11-08 01:14:37 +11:00
|
|
|
const i18n = new VueI18n({
|
2017-11-08 01:23:00 +11:00
|
|
|
locale: currentLocale,
|
2017-11-08 01:14:37 +11:00
|
|
|
fallbackLocale: 'en',
|
|
|
|
messages
|
|
|
|
})
|
|
|
|
|
2018-02-10 00:02:26 +11:00
|
|
|
window.fetch('/api/statusnet/config.json')
|
2017-02-15 08:21:23 +11:00
|
|
|
.then((res) => res.json())
|
2017-11-23 02:28:05 +11:00
|
|
|
.then((data) => {
|
2018-08-06 16:45:22 +10:00
|
|
|
const {name, closed: registrationClosed, textlimit, server} = data.site
|
2018-02-10 00:37:32 +11:00
|
|
|
|
2017-02-15 08:21:23 +11:00
|
|
|
store.dispatch('setOption', { name: 'name', value: name })
|
2018-02-10 00:37:32 +11:00
|
|
|
store.dispatch('setOption', { name: 'registrationOpen', value: (registrationClosed === '0') })
|
2018-02-10 00:02:26 +11:00
|
|
|
store.dispatch('setOption', { name: 'textlimit', value: parseInt(textlimit) })
|
2018-08-06 16:45:22 +10:00
|
|
|
store.dispatch('setOption', { name: 'server', value: server })
|
2018-02-10 00:02:26 +11:00
|
|
|
})
|
|
|
|
|
2018-08-24 19:46:14 +10:00
|
|
|
window.fetch('/api/statusnet/config.json')
|
2018-02-10 00:02:26 +11:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((data) => {
|
2018-08-24 19:46:14 +10:00
|
|
|
var apiStatusnetConfigSitePleromafe = data.site.pleromafe
|
2018-08-26 07:54:03 +10:00
|
|
|
window.fetch('/static/config.json')
|
2018-08-24 19:46:14 +10:00
|
|
|
.then((data) => {
|
|
|
|
var staticConfig = data
|
|
|
|
|
|
|
|
var theme = (apiStatusnetConfigSitePleromafe.theme || staticConfig.theme)
|
|
|
|
var background = (apiStatusnetConfigSitePleromafe.background || staticConfig.background)
|
|
|
|
var logo = (apiStatusnetConfigSitePleromafe.logo || staticConfig.logo)
|
|
|
|
var redirectRootNoLogin = (apiStatusnetConfigSitePleromafe.redirectRootNoLogin || staticConfig.redirectRootNoLogin)
|
|
|
|
var redirectRootLogin = (apiStatusnetConfigSitePleromafe.redirectRootLogin || staticConfig.redirectRootLogin)
|
|
|
|
var chatDisabled = (apiStatusnetConfigSitePleromafe.chatDisabled || staticConfig.chatDisabled)
|
|
|
|
var showWhoToFollowPanel = (apiStatusnetConfigSitePleromafe.showWhoToFollowPanel || staticConfig.showWhoToFollowPanel)
|
|
|
|
var whoToFollowProvider = (apiStatusnetConfigSitePleromafe.whoToFollowProvider || staticConfig.whoToFollowProvider)
|
|
|
|
var whoToFollowLink = (apiStatusnetConfigSitePleromafe.whoToFollowLink || staticConfig.whoToFollowLink)
|
|
|
|
var showInstanceSpecificPanel = (apiStatusnetConfigSitePleromafe.showInstanceSpecificPanel || staticConfig.showInstanceSpecificPanel)
|
|
|
|
var scopeOptionsEnabled = (apiStatusnetConfigSitePleromafe.scopeOptionsEnabled || staticConfig.scopeOptionsEnabled)
|
|
|
|
var collapseMessageWithSubject = (apiStatusnetConfigSitePleromafe.collapseMessageWithSubject || staticConfig.collapseMessageWithSubject)
|
|
|
|
|
|
|
|
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: 'showWhoToFollowPanel', value: showWhoToFollowPanel })
|
|
|
|
store.dispatch('setOption', { name: 'whoToFollowProvider', value: whoToFollowProvider })
|
|
|
|
store.dispatch('setOption', { name: 'whoToFollowLink', value: whoToFollowLink })
|
|
|
|
store.dispatch('setOption', { name: 'showInstanceSpecificPanel', value: showInstanceSpecificPanel })
|
|
|
|
store.dispatch('setOption', { name: 'scopeOptionsEnabled', value: scopeOptionsEnabled })
|
|
|
|
store.dispatch('setOption', { name: 'collapseMessageWithSubject', value: collapseMessageWithSubject })
|
|
|
|
if (chatDisabled) {
|
|
|
|
store.dispatch('disableChat')
|
2017-11-23 02:28:05 +11:00
|
|
|
}
|
|
|
|
|
2018-08-24 19:46:14 +10: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-23 02:28:05 +11:00
|
|
|
})
|
2017-02-15 08:21:23 +11:00
|
|
|
})
|
2017-06-19 23:35:35 +10:00
|
|
|
|
|
|
|
window.fetch('/static/terms-of-service.html')
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then((html) => {
|
|
|
|
store.dispatch('setOption', { name: 'tos', value: html })
|
|
|
|
})
|
2017-09-20 05:43:20 +10:00
|
|
|
|
2017-10-20 07:39:21 +11:00
|
|
|
window.fetch('/api/pleroma/emoji.json')
|
2017-12-08 08:37:05 +11:00
|
|
|
.then(
|
|
|
|
(res) => res.json()
|
|
|
|
.then(
|
|
|
|
(values) => {
|
|
|
|
const emoji = Object.keys(values).map((key) => {
|
|
|
|
return { shortcode: key, image_url: values[key] }
|
|
|
|
})
|
2018-02-02 03:12:23 +11:00
|
|
|
store.dispatch('setOption', { name: 'customEmoji', value: emoji })
|
2017-12-23 20:31:43 +11:00
|
|
|
store.dispatch('setOption', { name: 'pleromaBackend', value: true })
|
2017-12-08 08:37:05 +11:00
|
|
|
},
|
2017-12-23 20:31:43 +11:00
|
|
|
(failure) => {
|
|
|
|
store.dispatch('setOption', { name: 'pleromaBackend', value: false })
|
|
|
|
}
|
2017-12-08 08:37:05 +11:00
|
|
|
),
|
|
|
|
(error) => console.log(error)
|
|
|
|
)
|
2018-02-04 02:27:33 +11:00
|
|
|
|
2017-11-21 05:32:51 +11: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-20 05:43:20 +10:00
|
|
|
store.dispatch('setOption', { name: 'emoji', value: emoji })
|
|
|
|
})
|
2018-02-04 10:36:10 +11:00
|
|
|
|
2018-02-04 02:27:33 +11:00
|
|
|
window.fetch('/instance/panel.html')
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then((html) => {
|
|
|
|
store.dispatch('setOption', { name: 'instanceSpecificPanelContent', value: html })
|
|
|
|
})
|
|
|
|
|