mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix(ui): remove index.html from service worker cache after creating admin user (#3642)
This commit is contained in:
parent
3179966270
commit
920fd53e58
3 changed files with 24 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
import { jwtDecode } from 'jwt-decode'
|
||||
import { baseUrl } from './utils'
|
||||
import config from './config'
|
||||
import { removeHomeCache } from './utils/removeHomeCache'
|
||||
|
||||
// config sent from server may contain authentication info, for example when the user is authenticated
|
||||
// by a reverse proxy request header
|
||||
|
@ -48,6 +49,7 @@ const authProvider = {
|
|||
storeAuthenticationInfo(response)
|
||||
// Avoid "going to create admin" dialog after logout/login without a refresh
|
||||
config.firstTime = false
|
||||
removeHomeCache()
|
||||
return response
|
||||
})
|
||||
.catch((error) => {
|
||||
|
|
|
@ -3,6 +3,7 @@ import { v4 as uuidv4 } from 'uuid'
|
|||
import { baseUrl } from '../utils'
|
||||
import config from '../config'
|
||||
import { jwtDecode } from 'jwt-decode'
|
||||
import { removeHomeCache } from '../utils/removeHomeCache'
|
||||
|
||||
const customAuthorizationHeader = 'X-ND-Authorization'
|
||||
const clientUniqueIdHeader = 'X-ND-Client-Unique-Id'
|
||||
|
@ -26,6 +27,7 @@ const httpClient = (url, options = {}) => {
|
|||
localStorage.setItem('userId', decoded.uid)
|
||||
// Avoid going to create admin dialog after logout/login without a refresh
|
||||
config.firstTime = false
|
||||
removeHomeCache()
|
||||
}
|
||||
return response
|
||||
})
|
||||
|
|
20
ui/src/utils/removeHomeCache.js
Normal file
20
ui/src/utils/removeHomeCache.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
export const removeHomeCache = async () => {
|
||||
try {
|
||||
const workboxKey = (await caches.keys()).find((key) =>
|
||||
key.startsWith('workbox-precache'),
|
||||
)
|
||||
if (!workboxKey) return
|
||||
|
||||
const workboxCache = await caches.open(workboxKey)
|
||||
const indexKey = (await workboxCache.keys()).find((key) =>
|
||||
key.url.includes('app/index.html'),
|
||||
)
|
||||
|
||||
if (indexKey) {
|
||||
await workboxCache.delete(indexKey)
|
||||
}
|
||||
} catch (e) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('error reading cache', e)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue