aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
blob: 367db88152a494428c2c57a1dc105dfbbf788b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import Vue from 'vue'
import VueRouter from 'vue-router'
import Vuex from 'vuex'
import App from './App.vue'
import PublicTimeline from './components/public_timeline/public_timeline.vue'
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
import FriendsTimeline from './components/friends_timeline/friends_timeline.vue'
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'
import UserProfile from './components/user_profile/user_profile.vue'
import Settings from './components/settings/settings.vue'
import Registration from './components/registration/registration.vue'
import UserSettings from './components/user_settings/user_settings.vue'
import FollowRequests from './components/follow_requests/follow_requests.vue'

import interfaceModule from './modules/interface.js'
import instanceModule from './modules/instance.js'
import statusesModule from './modules/statuses.js'
import usersModule from './modules/users.js'
import apiModule from './modules/api.js'
import configModule from './modules/config.js'
import chatModule from './modules/chat.js'

import VueTimeago from 'vue-timeago'
import VueI18n from 'vue-i18n'

import createPersistedState from './lib/persisted_state.js'

import messages from './i18n/messages.js'

import VueChatScroll from 'vue-chat-scroll'

const currentLocale = (window.navigator.language || 'en').split('-')[0]

Vue.use(Vuex)
Vue.use(VueRouter)
Vue.use(VueTimeago, {
  locale: currentLocale === 'ja' ? 'ja' : 'en',
  locales: {
    'en': require('../static/timeago-en.json'),
    'ja': require('../static/timeago-ja.json')
  }
})
Vue.use(VueI18n)
Vue.use(VueChatScroll)

const persistedStateOptions = {
  paths: [
    'config',
    'users.lastLoginName',
    'statuses.notifications.maxSavedId'
  ]
}

const store = new Vuex.Store({
  modules: {
    interface: interfaceModule,
    instance: instanceModule,
    statuses: statusesModule,
    users: usersModule,
    api: apiModule,
    config: configModule,
    chat: chatModule
  },
  plugins: [createPersistedState(persistedStateOptions)],
  strict: false // Socket modifies itself, let's ignore this for now.
  // strict: process.env.NODE_ENV !== 'production'
})

const i18n = new VueI18n({
  // By default, use the browser locale, we will update it if neccessary
  locale: currentLocale,
  fallbackLocale: 'en',
  messages
})

window.fetch('/api/statusnet/config.json')
  .then((res) => res.json())
  .then((data) => {
    const {name, closed: registrationClosed, textlimit, server} = data.site

    store.dispatch('setInstanceOption', { name: 'name', value: name })
    store.dispatch('setInstanceOption', { name: 'registrationOpen', value: (registrationClosed === '0') })
    store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) })
    store.dispatch('setInstanceOption', { name: 'server', value: server })

    var apiConfig = data.site.pleromafe

    window.fetch('/static/config.json')
      .then((res) => res.json())
      .catch((err) => {
        console.warn('Failed to load static/config.json, continuing without it.')
        console.warn(err)
        return {}
      })
      .then((staticConfig) => {
        // 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)
        var collapseMessageWithSubject = (config.collapseMessageWithSubject)

        store.dispatch('setInstanceOption', { name: 'theme', value: theme })
        store.dispatch('setInstanceOption', { name: 'background', value: background })
        store.dispatch('setInstanceOption', { name: 'logo', value: logo })
        store.dispatch('setInstanceOption', { name: 'logoMask', value: logoMask })
        store.dispatch('setInstanceOption', { name: 'logoMargin', value: logoMargin })
        store.dispatch('setInstanceOption', { name: 'redirectRootNoLogin', value: redirectRootNoLogin })
        store.dispatch('setInstanceOption', { name: 'redirectRootLogin', value: redirectRootLogin })
        store.dispatch('setInstanceOption', { name: 'showInstanceSpecificPanel', value: showInstanceSpecificPanel })
        store.dispatch('setInstanceOption', { name: 'scopeOptionsEnabled', value: scopeOptionsEnabled })
        store.dispatch('setInstanceOption', { name: 'formattingOptionsEnabled', value: formattingOptionsEnabled })
        store.dispatch('setInstanceOption', { name: 'collapseMessageWithSubject', value: collapseMessageWithSubject })
        if (chatDisabled) {
          store.dispatch('disableChat')
        }

        const routes = [
          { name: 'root',
            path: '/',
            redirect: to => {
              return (store.state.users.currentUser
                      ? store.state.instance.redirectRootLogin
                      : store.state.instance.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)
        })
      })
  })

window.fetch('/static/terms-of-service.html')
  .then((res) => res.text())
  .then((html) => {
    store.dispatch('setInstanceOption', { name: 'tos', value: html })
  })

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] }
          })
          store.dispatch('setInstanceOption', { name: 'customEmoji', value: emoji })
          store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: true })
        },
        (failure) => {
          store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: false })
        }
      ),
    (error) => console.log(error)
  )

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] }
    })
    store.dispatch('setInstanceOption', { name: 'emoji', value: emoji })
  })

window.fetch('/instance/panel.html')
  .then((res) => res.text())
  .then((html) => {
    store.dispatch('setInstanceOption', { name: 'instanceSpecificPanelContent', value: html })
  })

window.fetch('/nodeinfo/2.0.json')
  .then((res) => res.json())
  .then((data) => {
    const metadata = data.metadata
    store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: data.metadata.mediaProxy })
    store.dispatch('setInstanceOption', { name: 'chatAvailable', value: data.metadata.chat })
    store.dispatch('setInstanceOption', { name: 'gopherAvailable', value: data.metadata.gopher })

    const suggestions = metadata.suggestions
    store.dispatch('setInstanceOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
    store.dispatch('setInstanceOption', { name: 'suggestionsWeb', value: suggestions.web })
  })