2016-11-26 09:57:08 -08:00
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2017-12-05 02:47:10 -08:00
|
|
|
import { Socket } from 'phoenix'
|
2016-11-26 09:57:08 -08:00
|
|
|
|
|
|
|
const api = {
|
|
|
|
state: {
|
2017-02-16 02:17:47 -08:00
|
|
|
backendInteractor: backendInteractorService(),
|
2017-12-05 02:47:10 -08:00
|
|
|
fetchers: {},
|
2017-12-07 08:20:44 -08:00
|
|
|
socket: null,
|
2019-11-24 08:50:28 -08:00
|
|
|
mastoSocket: null,
|
2018-06-06 18:24:31 -07:00
|
|
|
followRequests: []
|
2016-11-26 09:57:08 -08:00
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
setBackendInteractor (state, backendInteractor) {
|
|
|
|
state.backendInteractor = backendInteractor
|
2017-02-16 02:17:47 -08:00
|
|
|
},
|
2019-04-04 09:06:53 -07:00
|
|
|
addFetcher (state, { fetcherName, fetcher }) {
|
2019-04-04 09:03:56 -07:00
|
|
|
state.fetchers[fetcherName] = fetcher
|
2017-02-16 02:17:47 -08:00
|
|
|
},
|
2019-04-04 09:03:56 -07:00
|
|
|
removeFetcher (state, { fetcherName }) {
|
|
|
|
delete state.fetchers[fetcherName]
|
2017-12-05 02:47:10 -08:00
|
|
|
},
|
2019-01-29 07:16:25 -08:00
|
|
|
setWsToken (state, token) {
|
|
|
|
state.wsToken = token
|
|
|
|
},
|
2017-12-05 02:47:10 -08:00
|
|
|
setSocket (state, socket) {
|
|
|
|
state.socket = socket
|
2017-12-07 08:20:44 -08:00
|
|
|
},
|
2018-06-06 18:24:31 -07:00
|
|
|
setFollowRequests (state, value) {
|
|
|
|
state.followRequests = value
|
2017-02-16 02:17:47 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2019-11-24 08:50:28 -08:00
|
|
|
startMastoSocket (store) {
|
|
|
|
store.state.mastoSocket = store.state.backendInteractor
|
|
|
|
.startUserSocket({
|
|
|
|
store,
|
|
|
|
onMessage: (message) => {
|
|
|
|
if (!message) return
|
|
|
|
if (message.event === 'notification') {
|
|
|
|
store.dispatch('addNewNotifications', { notifications: [message.notification], older: false })
|
|
|
|
} else if (message.event === 'update') {
|
|
|
|
store.dispatch('addNewStatuses', { statuses: [message.status], userId: false, showImmediately: false, timeline: 'friends' })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2019-04-04 09:06:53 -07:00
|
|
|
startFetchingTimeline (store, { timeline = 'friends', tag = false, userId = false }) {
|
2017-02-16 02:17:47 -08:00
|
|
|
// Don't start fetching if we already are.
|
2019-02-07 15:23:18 -08:00
|
|
|
if (store.state.fetchers[timeline]) return
|
|
|
|
|
2019-04-04 09:03:56 -07:00
|
|
|
const fetcher = store.state.backendInteractor.startFetchingTimeline({ timeline, store, userId, tag })
|
|
|
|
store.commit('addFetcher', { fetcherName: timeline, fetcher })
|
2017-02-16 02:17:47 -08:00
|
|
|
},
|
2019-04-04 09:03:56 -07:00
|
|
|
startFetchingNotifications (store) {
|
|
|
|
// Don't start fetching if we already are.
|
|
|
|
if (store.state.fetchers['notifications']) return
|
|
|
|
|
|
|
|
const fetcher = store.state.backendInteractor.startFetchingNotifications({ store })
|
|
|
|
store.commit('addFetcher', { fetcherName: 'notifications', fetcher })
|
|
|
|
},
|
2019-11-19 06:07:15 -08:00
|
|
|
startFetchingFollowRequest (store) {
|
|
|
|
// Don't start fetching if we already are.
|
|
|
|
if (store.state.fetchers['followRequest']) return
|
|
|
|
|
|
|
|
const fetcher = store.state.backendInteractor.startFetchingFollowRequest({ store })
|
|
|
|
store.commit('addFetcher', { fetcherName: 'followRequest', fetcher })
|
|
|
|
},
|
2019-04-04 09:03:56 -07:00
|
|
|
stopFetching (store, fetcherName) {
|
|
|
|
const fetcher = store.state.fetchers[fetcherName]
|
2017-02-16 02:17:47 -08:00
|
|
|
window.clearInterval(fetcher)
|
2019-04-04 09:03:56 -07:00
|
|
|
store.commit('removeFetcher', { fetcherName })
|
2017-12-05 02:47:10 -08:00
|
|
|
},
|
2019-01-29 07:16:25 -08:00
|
|
|
setWsToken (store, token) {
|
|
|
|
store.commit('setWsToken', token)
|
|
|
|
},
|
2019-08-17 01:18:42 -07:00
|
|
|
initializeSocket ({ dispatch, commit, state, rootState }) {
|
2017-12-05 02:47:10 -08:00
|
|
|
// Set up websocket connection
|
2019-08-17 01:18:42 -07:00
|
|
|
const token = state.wsToken
|
|
|
|
if (rootState.instance.chatAvailable && typeof token !== 'undefined' && state.socket === null) {
|
2019-06-18 13:28:31 -07:00
|
|
|
const socket = new Socket('/socket', { params: { token } })
|
2017-12-07 08:20:44 -08:00
|
|
|
socket.connect()
|
2019-08-17 01:18:42 -07:00
|
|
|
|
|
|
|
commit('setSocket', socket)
|
|
|
|
dispatch('initializeChat', socket)
|
2017-12-07 08:20:44 -08:00
|
|
|
}
|
|
|
|
},
|
2019-08-17 01:18:42 -07:00
|
|
|
disconnectFromSocket ({ commit, state }) {
|
|
|
|
state.socket && state.socket.disconnect()
|
|
|
|
commit('setSocket', null)
|
2018-06-06 18:24:31 -07:00
|
|
|
},
|
|
|
|
removeFollowRequest (store, request) {
|
|
|
|
let requests = store.state.followRequests.filter((it) => it !== request)
|
|
|
|
store.commit('setFollowRequests', requests)
|
2016-11-26 09:57:08 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default api
|