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