mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-24 07:30:57 +03:00
Only setup event stream when mounting the app
This commit is contained in:
parent
0c93db816c
commit
a77635e883
ui/src
@ -1,4 +1,4 @@
|
||||
import React from 'react'
|
||||
import React, { useEffect } from 'react'
|
||||
import ReactGA from 'react-ga'
|
||||
import 'react-jinke-music-player/assets/index.css'
|
||||
import { Provider, useDispatch } from 'react-redux'
|
||||
@ -65,13 +65,15 @@ const App = () => (
|
||||
const Admin = (props) => {
|
||||
useChangeThemeColor()
|
||||
const dispatch = useDispatch()
|
||||
if (config.devActivityPanel) {
|
||||
setDispatch(dispatch)
|
||||
authProvider
|
||||
.checkAuth()
|
||||
.then(() => startEventStream())
|
||||
.catch(() => {}) // ignore if not logged in
|
||||
}
|
||||
useEffect(() => {
|
||||
if (config.devActivityPanel) {
|
||||
setDispatch(dispatch)
|
||||
authProvider
|
||||
.checkAuth()
|
||||
.then(() => startEventStream())
|
||||
.catch(() => {}) // ignore if not logged in
|
||||
}
|
||||
}, [dispatch])
|
||||
|
||||
return (
|
||||
<RAAdmin
|
||||
|
@ -14,7 +14,7 @@ let timeout = null
|
||||
const getEventStream = async () => {
|
||||
if (!es) {
|
||||
// Call `keepalive` to refresh the jwt token
|
||||
await httpClient(`${REST_URL}/keepalive/eventSource`)
|
||||
await httpClient(`${REST_URL}/keepalive/keepalive`)
|
||||
es = new EventSource(
|
||||
baseUrl(`${REST_URL}/events?jwt=${localStorage.getItem('token')}`)
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user