Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma-fe into issue-436-mastoapi-notifications
This commit is contained in:
commit
97a3f9c0f5
2 changed files with 193 additions and 122 deletions
|
@ -4,10 +4,11 @@ import routes from './routes'
|
||||||
|
|
||||||
import App from '../App.vue'
|
import App from '../App.vue'
|
||||||
|
|
||||||
const afterStoreSetup = ({ store, i18n }) => {
|
const getStatusnetConfig = async ({ store }) => {
|
||||||
window.fetch('/api/statusnet/config.json')
|
try {
|
||||||
.then((res) => res.json())
|
const res = await window.fetch('/api/statusnet/config.json')
|
||||||
.then((data) => {
|
if (res.ok) {
|
||||||
|
const data = await res.json()
|
||||||
const { name, closed: registrationClosed, textlimit, uploadlimit, server, vapidPublicKey } = data.site
|
const { name, closed: registrationClosed, textlimit, uploadlimit, server, vapidPublicKey } = data.site
|
||||||
|
|
||||||
store.dispatch('setInstanceOption', { name: 'name', value: name })
|
store.dispatch('setInstanceOption', { name: 'name', value: name })
|
||||||
|
@ -28,16 +29,32 @@ const afterStoreSetup = ({ store, i18n }) => {
|
||||||
store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey })
|
store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey })
|
||||||
}
|
}
|
||||||
|
|
||||||
var apiConfig = data.site.pleromafe
|
return data.site.pleromafe
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Could not load statusnet config, potentially fatal')
|
||||||
|
console.error(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
window.fetch('/static/config.json')
|
const getStaticConfig = async () => {
|
||||||
.then((res) => res.json())
|
try {
|
||||||
.catch((err) => {
|
const res = await window.fetch('/static/config.json')
|
||||||
|
if (res.ok) {
|
||||||
|
return res.json()
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
console.warn('Failed to load static/config.json, continuing without it.')
|
console.warn('Failed to load static/config.json, continuing without it.')
|
||||||
console.warn(err)
|
console.warn(error)
|
||||||
return {}
|
return {}
|
||||||
})
|
}
|
||||||
.then((staticConfig) => {
|
}
|
||||||
|
|
||||||
|
const setSettings = async ({ apiConfig, staticConfig, store }) => {
|
||||||
const overrides = window.___pleromafe_dev_overrides || {}
|
const overrides = window.___pleromafe_dev_overrides || {}
|
||||||
const env = window.___pleromafe_mode.NODE_ENV
|
const env = window.___pleromafe_mode.NODE_ENV
|
||||||
|
|
||||||
|
@ -89,13 +106,126 @@ const afterStoreSetup = ({ store, i18n }) => {
|
||||||
copyInstanceOption('noAttachmentLinks')
|
copyInstanceOption('noAttachmentLinks')
|
||||||
copyInstanceOption('showFeaturesPanel')
|
copyInstanceOption('showFeaturesPanel')
|
||||||
|
|
||||||
if (config.chatDisabled) {
|
if ((config.chatDisabled)) {
|
||||||
store.dispatch('disableChat')
|
store.dispatch('disableChat')
|
||||||
|
} else {
|
||||||
|
store.dispatch('initializeSocket')
|
||||||
}
|
}
|
||||||
|
|
||||||
return store.dispatch('setTheme', config['theme'])
|
return store.dispatch('setTheme', config['theme'])
|
||||||
|
}
|
||||||
|
|
||||||
|
const getTOS = async ({ store }) => {
|
||||||
|
try {
|
||||||
|
const res = await window.fetch('/static/terms-of-service.html')
|
||||||
|
if (res.ok) {
|
||||||
|
const html = await res.text()
|
||||||
|
store.dispatch('setInstanceOption', { name: 'tos', value: html })
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("Can't load TOS")
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const getInstancePanel = async ({ store }) => {
|
||||||
|
try {
|
||||||
|
const res = await window.fetch('/instance/panel.html')
|
||||||
|
if (res.ok) {
|
||||||
|
const html = await res.text()
|
||||||
|
store.dispatch('setInstanceOption', { name: 'instanceSpecificPanelContent', value: html })
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("Can't load instance panel")
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const getStaticEmoji = async ({ store }) => {
|
||||||
|
try {
|
||||||
|
const res = await window.fetch('/static/emoji.json')
|
||||||
|
if (res.ok) {
|
||||||
|
const values = await res.json()
|
||||||
|
const emoji = Object.keys(values).map((key) => {
|
||||||
|
return { shortcode: key, image_url: false, 'utf': values[key] }
|
||||||
})
|
})
|
||||||
.then(() => {
|
store.dispatch('setInstanceOption', { name: 'emoji', value: emoji })
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("Can't load static emoji")
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is also used to indicate if we have a 'pleroma backend' or not.
|
||||||
|
// Somewhat weird, should probably be somewhere else.
|
||||||
|
const getCustomEmoji = async ({ store }) => {
|
||||||
|
try {
|
||||||
|
const res = await window.fetch('/api/pleroma/emoji.json')
|
||||||
|
if (res.ok) {
|
||||||
|
const values = await res.json()
|
||||||
|
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 })
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: false })
|
||||||
|
console.warn("Can't load custom emojis, maybe not a Pleroma instance?")
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const getNodeInfo = async ({ store }) => {
|
||||||
|
try {
|
||||||
|
const res = await window.fetch('/nodeinfo/2.0.json')
|
||||||
|
if (res.ok) {
|
||||||
|
const data = await res.json()
|
||||||
|
const metadata = data.metadata
|
||||||
|
|
||||||
|
const features = metadata.features
|
||||||
|
store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: features.includes('media_proxy') })
|
||||||
|
store.dispatch('setInstanceOption', { name: 'chatAvailable', value: features.includes('chat') })
|
||||||
|
store.dispatch('setInstanceOption', { name: 'gopherAvailable', value: features.includes('gopher') })
|
||||||
|
|
||||||
|
store.dispatch('setInstanceOption', { name: 'restrictedNicknames', value: metadata.restrictedNicknames })
|
||||||
|
|
||||||
|
const suggestions = metadata.suggestions
|
||||||
|
store.dispatch('setInstanceOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
|
||||||
|
store.dispatch('setInstanceOption', { name: 'suggestionsWeb', value: suggestions.web })
|
||||||
|
} else {
|
||||||
|
throw (res)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn('Could not load nodeinfo')
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const afterStoreSetup = async ({ store, i18n }) => {
|
||||||
|
const apiConfig = await getStatusnetConfig({ store })
|
||||||
|
const staticConfig = await getStaticConfig()
|
||||||
|
await setSettings({ store, apiConfig, staticConfig })
|
||||||
|
await getTOS({ store })
|
||||||
|
await getInstancePanel({ store })
|
||||||
|
await getStaticEmoji({ store })
|
||||||
|
await getCustomEmoji({ store })
|
||||||
|
await getNodeInfo({ store })
|
||||||
|
|
||||||
|
// Now we have the server settings and can try logging in
|
||||||
|
if (store.state.oauth.token) {
|
||||||
|
store.dispatch('loginUser', store.state.oauth.token)
|
||||||
|
}
|
||||||
|
|
||||||
const router = new VueRouter({
|
const router = new VueRouter({
|
||||||
mode: 'history',
|
mode: 'history',
|
||||||
routes: routes(store),
|
routes: routes(store),
|
||||||
|
@ -108,73 +238,13 @@ const afterStoreSetup = ({ store, i18n }) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
/* eslint-disable no-new */
|
/* eslint-disable no-new */
|
||||||
new Vue({
|
return new Vue({
|
||||||
router,
|
router,
|
||||||
store,
|
store,
|
||||||
i18n,
|
i18n,
|
||||||
el: '#app',
|
el: '#app',
|
||||||
render: h => h(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
|
|
||||||
|
|
||||||
const features = metadata.features
|
|
||||||
store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: features.includes('media_proxy') })
|
|
||||||
store.dispatch('setInstanceOption', { name: 'chatAvailable', value: features.includes('chat') })
|
|
||||||
store.dispatch('setInstanceOption', { name: 'gopherAvailable', value: features.includes('gopher') })
|
|
||||||
|
|
||||||
store.dispatch('setInstanceOption', { name: 'postFormats', value: metadata.postFormats })
|
|
||||||
|
|
||||||
store.dispatch('setInstanceOption', { name: 'restrictedNicknames', value: metadata.restrictedNicknames })
|
|
||||||
|
|
||||||
const suggestions = metadata.suggestions
|
|
||||||
store.dispatch('setInstanceOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
|
|
||||||
store.dispatch('setInstanceOption', { name: 'suggestionsWeb', value: suggestions.web })
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default afterStoreSetup
|
export default afterStoreSetup
|
||||||
|
|
|
@ -53,9 +53,10 @@ const persistedStateOptions = {
|
||||||
'users.lastLoginName',
|
'users.lastLoginName',
|
||||||
'oauth'
|
'oauth'
|
||||||
]
|
]
|
||||||
}
|
};
|
||||||
|
|
||||||
createPersistedState(persistedStateOptions).then((persistedState) => {
|
(async () => {
|
||||||
|
const persistedState = await createPersistedState(persistedStateOptions)
|
||||||
const store = new Vuex.Store({
|
const store = new Vuex.Store({
|
||||||
modules: {
|
modules: {
|
||||||
interface: interfaceModule,
|
interface: interfaceModule,
|
||||||
|
@ -75,7 +76,7 @@ createPersistedState(persistedStateOptions).then((persistedState) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterStoreSetup({ store, i18n })
|
afterStoreSetup({ store, i18n })
|
||||||
})
|
})()
|
||||||
|
|
||||||
// These are inlined by webpack's DefinePlugin
|
// These are inlined by webpack's DefinePlugin
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
|
Loading…
Reference in a new issue