improved initial notifications fetching

This commit is contained in:
Henry Jameson 2019-11-24 22:01:12 +02:00
parent 319bb4ac28
commit 172ebaf4e6
4 changed files with 33 additions and 6 deletions

View file

@ -47,6 +47,11 @@ const Notifications = {
components: { components: {
Notification Notification
}, },
created () {
const { dispatch } = this.$store
dispatch('fetchAndUpdateNotifications')
},
watch: { watch: {
unseenCount (count) { unseenCount (count) {
if (count > 0) { if (count > 0) {

View file

@ -31,18 +31,32 @@ const api = {
}, },
actions: { actions: {
startMastoSocket (store) { startMastoSocket (store) {
store.state.mastoSocket = store.state.backendInteractor const { state, dispatch } = store
state.mastoSocket = state.backendInteractor
.startUserSocket({ .startUserSocket({
store, store,
onMessage: (message) => { onMessage: (message) => {
if (!message) return if (!message) return
if (message.event === 'notification') { if (message.event === 'notification') {
store.dispatch('addNewNotifications', { notifications: [message.notification], older: false }) dispatch('addNewNotifications', {
notifications: [message.notification],
older: false
})
} else if (message.event === 'update') { } else if (message.event === 'update') {
store.dispatch('addNewStatuses', { statuses: [message.status], userId: false, showImmediately: false, timeline: 'friends' }) dispatch('addNewStatuses', {
statuses: [message.status],
userId: false,
showImmediately: false,
timeline: 'friends'
})
} }
} }
}) })
state.mastoSocket.addEventListener('error', error => {
console.error('Error with MastoAPI websocket:', error)
dispatch('startFetchingTimeline', { timeline: 'friends' })
dispatch('startFetchingNotifications')
})
}, },
startFetchingTimeline (store, { timeline = 'friends', tag = false, userId = false }) { startFetchingTimeline (store, { timeline = 'friends', tag = false, userId = false }) {
// Don't start fetching if we already are. // Don't start fetching if we already are.
@ -58,6 +72,9 @@ const api = {
const fetcher = store.state.backendInteractor.startFetchingNotifications({ store }) const fetcher = store.state.backendInteractor.startFetchingNotifications({ store })
store.commit('addFetcher', { fetcherName: 'notifications', fetcher }) store.commit('addFetcher', { fetcherName: 'notifications', fetcher })
}, },
fetchAndUpdateNotifications (store) {
store.state.backendInteractor.fetchAndUpdateNotifications({ store })
},
startFetchingFollowRequest (store) { startFetchingFollowRequest (store) {
// Don't start fetching if we already are. // Don't start fetching if we already are.
if (store.state.fetchers['followRequest']) return if (store.state.fetchers['followRequest']) return

View file

@ -470,7 +470,7 @@ const users = {
} }
store.dispatch('startMastoSocket').catch((error) => { store.dispatch('startMastoSocket').catch((error) => {
console.error(error) console.error('Failed initializing MastoAPI Streaming socket', error)
// Start getting fresh posts. // Start getting fresh posts.
store.dispatch('startFetchingTimeline', { timeline: 'friends' }) store.dispatch('startFetchingTimeline', { timeline: 'friends' })

View file

@ -12,18 +12,23 @@ const backendInteractorService = credentials => ({
return notificationsFetcher.startFetching({ store, credentials }) return notificationsFetcher.startFetching({ store, credentials })
}, },
fetchAndUpdateNotifications ({ store }) {
return notificationsFetcher.fetchAndUpdate({ store, credentials })
},
startFetchingFollowRequest ({ store }) { startFetchingFollowRequest ({ store }) {
return followRequestFetcher.startFetching({ store, credentials }) return followRequestFetcher.startFetching({ store, credentials })
}, },
startUserSocket ({ store, onMessage }) { startUserSocket ({ store, onMessage }) {
const serv = store.rootState.instance.server.replace('https', 'wss') const serv = store.rootState.instance.server.replace('http', 'ws')
// const serb = 'ws://localhost:8080/'
const url = serv + getMastodonSocketURI({ credentials, stream: 'user' }) const url = serv + getMastodonSocketURI({ credentials, stream: 'user' })
const socket = new WebSocket(url) const socket = new WebSocket(url)
console.log(socket) console.log(socket)
if (socket) { if (socket) {
socket.addEventListener('message', (wsEvent) => onMessage(handleMastoWS(wsEvent))) socket.addEventListener('message', (wsEvent) => onMessage(handleMastoWS(wsEvent)))
socket.addEventListener('error', (error) => console.error('WebSocket Error:', error))
return socket
} else { } else {
throw new Error('failed to connect to socket') throw new Error('failed to connect to socket')
} }