mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
?
This commit is contained in:
parent
2012f4a198
commit
f9f64a5e4c
@ -73,8 +73,10 @@ export class Storage<T extends StateDef> {
|
|||||||
}, 1);
|
}, 1);
|
||||||
|
|
||||||
// streamingのuser storage updateイベントを監視して更新
|
// streamingのuser storage updateイベントを監視して更新
|
||||||
this.connection.on('registryUpdated', ({ scope, key, value }) => {
|
this.connection.on('registryUpdated', ({ scope, key, value }: { scope: string[], key: keyof T, value: T[typeof key]['default'] }) => {
|
||||||
this.state[key] = value as typeof this.state[key]['default'];
|
if (scope[1] !== this.key) return;
|
||||||
|
|
||||||
|
this.state[key] = value;
|
||||||
this.reactiveState[key].value = value;
|
this.reactiveState[key].value = value;
|
||||||
|
|
||||||
const cache = JSON.parse(localStorage.getItem(this.keyForLocalStorage + '::cache::' + $i.id) || '{}');
|
const cache = JSON.parse(localStorage.getItem(this.keyForLocalStorage + '::cache::' + $i.id) || '{}');
|
||||||
|
Loading…
Reference in New Issue
Block a user