Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7893099
api.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
api.js
View Options
import
backendInteractorService
from
'../services/backend_interactor_service/backend_interactor_service.js'
import
{
isArray
}
from
'lodash'
import
{
Socket
}
from
'phoenix'
const
api
=
{
state
:
{
backendInteractor
:
backendInteractorService
(),
fetchers
:
{},
socket
:
null
,
chatDisabled
:
false
,
followRequests
:
[]
},
mutations
:
{
setBackendInteractor
(
state
,
backendInteractor
)
{
state
.
backendInteractor
=
backendInteractor
},
addFetcher
(
state
,
{
timeline
,
fetcher
})
{
state
.
fetchers
[
timeline
]
=
fetcher
},
removeFetcher
(
state
,
{
timeline
})
{
delete
state
.
fetchers
[
timeline
]
},
setWsToken
(
state
,
token
)
{
state
.
wsToken
=
token
},
setSocket
(
state
,
socket
)
{
state
.
socket
=
socket
},
setChatDisabled
(
state
,
value
)
{
state
.
chatDisabled
=
value
},
setFollowRequests
(
state
,
value
)
{
state
.
followRequests
=
value
}
},
actions
:
{
startFetching
(
store
,
timeline
)
{
let
userId
=
false
// This is for user timelines
if
(
isArray
(
timeline
))
{
userId
=
timeline
[
1
]
timeline
=
timeline
[
0
]
}
// Don't start fetching if we already are.
if
(
!
store
.
state
.
fetchers
[
timeline
])
{
const
fetcher
=
store
.
state
.
backendInteractor
.
startFetching
({
timeline
,
store
,
userId
})
store
.
commit
(
'addFetcher'
,
{
timeline
,
fetcher
})
}
},
stopFetching
(
store
,
timeline
)
{
const
fetcher
=
store
.
state
.
fetchers
[
timeline
]
window
.
clearInterval
(
fetcher
)
store
.
commit
(
'removeFetcher'
,
{
timeline
})
},
setWsToken
(
store
,
token
)
{
store
.
commit
(
'setWsToken'
,
token
)
},
initializeSocket
(
store
)
{
// Set up websocket connection
if
(
!
store
.
state
.
chatDisabled
)
{
const
token
=
store
.
state
.
wsToken
const
socket
=
new
Socket
(
'/socket'
,
{
params
:
{
token
}})
socket
.
connect
()
store
.
dispatch
(
'initializeChat'
,
socket
)
}
},
disableChat
(
store
)
{
store
.
commit
(
'setChatDisabled'
,
true
)
},
removeFollowRequest
(
store
,
request
)
{
let
requests
=
store
.
state
.
followRequests
.
filter
((
it
)
=>
it
!==
request
)
store
.
commit
(
'setFollowRequests'
,
requests
)
}
}
}
export
default
api
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Oct 2, 4:48 AM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
487330
Default Alt Text
api.js (2 KB)
Attached To
Mode
rPUFE pleroma-fe-upstream
Attached
Detach File
Event Timeline
Log In to Comment