Delete cache in SW before reloading status page
Seems kinda hacky… probably might cause new side effects
This commit is contained in:
parent
57790d27ff
commit
ac557e1271
|
@ -55,7 +55,7 @@ function StatusPage({ id }) {
|
||||||
};
|
};
|
||||||
}, [id]);
|
}, [id]);
|
||||||
|
|
||||||
useEffect(() => {
|
const initContext = () => {
|
||||||
setUIState('loading');
|
setUIState('loading');
|
||||||
let heroTimer;
|
let heroTimer;
|
||||||
|
|
||||||
|
@ -174,7 +174,30 @@ function StatusPage({ id }) {
|
||||||
return () => {
|
return () => {
|
||||||
clearTimeout(heroTimer);
|
clearTimeout(heroTimer);
|
||||||
};
|
};
|
||||||
}, [id, snapStates.reloadStatusPage]);
|
};
|
||||||
|
|
||||||
|
useEffect(initContext, [id]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
// Delete the cache for the context
|
||||||
|
(async () => {
|
||||||
|
try {
|
||||||
|
const accounts = store.local.getJSON('accounts') || [];
|
||||||
|
const currentAccount = store.session.get('currentAccount');
|
||||||
|
const account =
|
||||||
|
accounts.find((a) => a.info.id === currentAccount) || accounts[0];
|
||||||
|
const instanceURL = account.instanceURL;
|
||||||
|
const contextURL = `https://${instanceURL}/api/v1/statuses/${id}/context`;
|
||||||
|
console.log('Clear cache', contextURL);
|
||||||
|
const apiCache = await caches.open('api');
|
||||||
|
await apiCache.delete(contextURL, { ignoreVary: true });
|
||||||
|
|
||||||
|
return initContext();
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
}, [snapStates.reloadStatusPage]);
|
||||||
|
|
||||||
const firstLoad = useRef(true);
|
const firstLoad = useRef(true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue