2020-12-28 08:00:31 +00:00
|
|
|
import { onUnmounted, Ref, ref, watch } from 'vue';
|
2020-12-19 01:55:52 +00:00
|
|
|
import { $i } from './account';
|
2021-12-29 08:40:39 +00:00
|
|
|
import { api } from './os';
|
2021-12-29 15:18:27 +00:00
|
|
|
import { get, set } from './scripts/idb-proxy';
|
2021-12-29 08:40:39 +00:00
|
|
|
import { stream } from './stream';
|
2020-12-19 01:55:52 +00:00
|
|
|
|
|
|
|
type StateDef = Record<string, {
|
|
|
|
where: 'account' | 'device' | 'deviceAccount';
|
|
|
|
default: any;
|
|
|
|
}>;
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
type State<T extends StateDef> = { [K in keyof T]: T[K]['default']; };
|
|
|
|
type ReactiveState<T extends StateDef> = { [K in keyof T]: Ref<T[K]['default']>; };
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
type ArrayElement<A> = A extends readonly (infer T)[] ? T : never;
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
const connection = $i ? stream.useChannel('main') : null;
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
export class Storage<T extends StateDef> {
|
2021-12-29 15:18:27 +00:00
|
|
|
public readonly ready: PromiseLike<void>;
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
public readonly key: string;
|
2021-12-29 15:18:27 +00:00
|
|
|
public readonly deviceStateKeyName: string;
|
|
|
|
public readonly deviceAccountStateKeyName: string;
|
|
|
|
public readonly registryCacheKeyName: string;
|
2020-12-19 01:55:52 +00:00
|
|
|
|
|
|
|
public readonly def: T;
|
|
|
|
|
|
|
|
// TODO: これが実装されたらreadonlyにしたい: https://github.com/microsoft/TypeScript/issues/37487
|
2021-12-29 15:18:27 +00:00
|
|
|
public readonly state = {} as State<T>;
|
|
|
|
public readonly reactiveState = {} as ReactiveState<T>;
|
|
|
|
|
2021-12-29 15:34:23 +00:00
|
|
|
// indexedDB保存を重複させないために簡易的にキューイング
|
2021-12-29 15:18:27 +00:00
|
|
|
private nextIdbJob: Promise<any> = Promise.resolve();
|
|
|
|
private addIdbSetJob<T>(job: () => Promise<T>) {
|
|
|
|
const promise = this.nextIdbJob.then(job, e => {
|
|
|
|
console.error('Pizzax failed to save data to idb!', e);
|
|
|
|
return job();
|
|
|
|
});
|
|
|
|
this.nextIdbJob = promise;
|
|
|
|
return promise;
|
|
|
|
}
|
2021-12-25 17:17:36 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
constructor(key: string, def: T) {
|
2021-01-11 11:38:34 +00:00
|
|
|
this.key = key;
|
2021-12-29 15:18:27 +00:00
|
|
|
this.deviceStateKeyName = `pizzax::${key}`;
|
|
|
|
this.deviceAccountStateKeyName = $i ? `pizzax::${key}::${$i.id}` : '';
|
|
|
|
this.registryCacheKeyName = $i ? `pizzax::${key}::cache::${$i.id}` : '';
|
2020-12-19 01:55:52 +00:00
|
|
|
this.def = def;
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
this.ready = this.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
private init(): Promise<void> {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
2021-12-29 15:34:23 +00:00
|
|
|
await this.migrate();
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
const deviceState: State<T> = await get(this.deviceStateKeyName);
|
2021-12-29 16:09:20 +00:00
|
|
|
const deviceAccountState = $i ? await get(this.deviceAccountStateKeyName) || {} : {};
|
|
|
|
const registryCache = $i ? await get(this.registryCacheKeyName) || {} : {};
|
2021-12-29 15:18:27 +00:00
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(this.def) as [keyof T, T[keyof T]][]) {
|
|
|
|
if (v.where === 'device' && Object.prototype.hasOwnProperty.call(deviceState, k)) {
|
|
|
|
this.state[k] = deviceState[k];
|
|
|
|
} else if (v.where === 'account' && $i && Object.prototype.hasOwnProperty.call(registryCache, k)) {
|
|
|
|
this.state[k] = registryCache[k];
|
|
|
|
} else if (v.where === 'deviceAccount' && Object.prototype.hasOwnProperty.call(deviceAccountState, k)) {
|
|
|
|
this.state[k] = deviceAccountState[k];
|
|
|
|
} else {
|
|
|
|
this.state[k] = v.default;
|
|
|
|
if (_DEV_) console.log('Use default value', k, v.default);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (const [k, v] of Object.entries(this.state) as [keyof T, T[keyof T]][]) {
|
|
|
|
this.reactiveState[k] = ref(v);
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
2021-12-29 15:18:27 +00:00
|
|
|
|
|
|
|
if ($i) {
|
|
|
|
// なぜかsetTimeoutしないとapi関数内でエラーになる(おそらく循環参照してることに原因がありそう)
|
|
|
|
setTimeout(() => {
|
|
|
|
api('i/registry/get-all', { scope: ['client', this.key] })
|
|
|
|
.then(kvs => {
|
|
|
|
const cache = {};
|
|
|
|
for (const [k, v] of Object.entries(this.def)) {
|
|
|
|
if (v.where === 'account') {
|
|
|
|
if (Object.prototype.hasOwnProperty.call(kvs, k)) {
|
|
|
|
this.state[k as keyof T] = kvs[k];
|
|
|
|
this.reactiveState[k as keyof T].value = kvs[k as string];
|
|
|
|
cache[k] = kvs[k];
|
|
|
|
} else {
|
|
|
|
this.state[k as keyof T] = v.default;
|
|
|
|
this.reactiveState[k].value = v.default;
|
|
|
|
}
|
2021-01-11 11:38:34 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-29 15:18:27 +00:00
|
|
|
|
|
|
|
return set(this.registryCacheKeyName, cache);
|
|
|
|
})
|
|
|
|
.then(() => resolve());
|
|
|
|
}, 1);
|
2021-12-29 15:34:23 +00:00
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
// streamingのuser storage updateイベントを監視して更新
|
|
|
|
connection?.on('registryUpdated', async ({ scope, key, value }: { scope: string[], key: keyof T, value: T[typeof key]['default'] }) => {
|
|
|
|
if (scope[1] !== this.key || this.state[key] === value) return;
|
|
|
|
|
|
|
|
this.state[key] = value;
|
|
|
|
this.reactiveState[key].value = value;
|
|
|
|
|
|
|
|
const cache = await get(this.registryCacheKeyName);
|
|
|
|
if (cache[key] !== value) {
|
|
|
|
cache[key] = value;
|
|
|
|
await set(this.registryCacheKeyName, cache);
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
2021-01-11 11:38:34 +00:00
|
|
|
});
|
2021-12-29 15:18:27 +00:00
|
|
|
}
|
|
|
|
});
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
public set<K extends keyof T>(key: K, value: T[K]['default']): Promise<void> {
|
2020-12-19 01:55:52 +00:00
|
|
|
if (_DEV_) console.log('set', key, value);
|
|
|
|
|
|
|
|
this.state[key] = value;
|
|
|
|
this.reactiveState[key].value = value;
|
|
|
|
|
2021-12-29 15:18:27 +00:00
|
|
|
return this.addIdbSetJob(async () => {
|
|
|
|
switch (this.def[key].where) {
|
|
|
|
case 'device': {
|
|
|
|
const deviceState = await get(this.deviceStateKeyName) || {};
|
|
|
|
deviceState[key] = value;
|
|
|
|
await set(this.deviceStateKeyName, deviceState);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'deviceAccount': {
|
|
|
|
if ($i == null) break;
|
|
|
|
const deviceAccountState = await get(this.deviceAccountStateKeyName) || {};
|
|
|
|
deviceAccountState[key] = value;
|
|
|
|
await set(this.deviceAccountStateKeyName, deviceAccountState);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'account': {
|
|
|
|
if ($i == null) break;
|
|
|
|
const cache = await get(this.registryCacheKeyName) || {};
|
|
|
|
cache[key] = value;
|
|
|
|
await set(this.registryCacheKeyName, cache);
|
|
|
|
await api('i/registry/set', {
|
|
|
|
scope: ['client', this.key],
|
|
|
|
key: key,
|
|
|
|
value: value
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
2021-12-29 15:18:27 +00:00
|
|
|
});
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public push<K extends keyof T>(key: K, value: ArrayElement<T[K]['default']>): void {
|
|
|
|
const currentState = this.state[key];
|
|
|
|
this.set(key, [...currentState, value]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public reset(key: keyof T) {
|
|
|
|
this.set(key, this.def[key].default);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 特定のキーの、簡易的なgetter/setterを作ります
|
|
|
|
* 主にvue場で設定コントロールのmodelとして使う用
|
|
|
|
*/
|
|
|
|
public makeGetterSetter<K extends keyof T>(key: K, getter?: (v: T[K]) => unknown, setter?: (v: unknown) => T[K]) {
|
|
|
|
const valueRef = ref(this.state[key]);
|
2020-12-28 08:00:31 +00:00
|
|
|
|
|
|
|
const stop = watch(this.reactiveState[key], val => {
|
|
|
|
valueRef.value = val;
|
|
|
|
});
|
2020-12-28 10:57:09 +00:00
|
|
|
|
|
|
|
// NOTE: vueコンポーネント内で呼ばれない限りは、onUnmounted は無意味なのでメモリリークする
|
2020-12-28 08:00:31 +00:00
|
|
|
onUnmounted(() => {
|
|
|
|
stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: VueのcustomRef使うと良い感じになるかも
|
2020-12-19 01:55:52 +00:00
|
|
|
return {
|
|
|
|
get: () => {
|
|
|
|
if (getter) {
|
|
|
|
return getter(valueRef.value);
|
|
|
|
} else {
|
|
|
|
return valueRef.value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
set: (value: unknown) => {
|
|
|
|
const val = setter ? setter(value) : value;
|
|
|
|
this.set(key, val);
|
|
|
|
valueRef.value = val;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-12-29 15:34:23 +00:00
|
|
|
|
|
|
|
// localStorage => indexedDBのマイグレーション
|
|
|
|
private async migrate() {
|
|
|
|
const deviceState = localStorage.getItem(this.deviceStateKeyName);
|
|
|
|
if (deviceState) {
|
|
|
|
await set(this.deviceStateKeyName, JSON.parse(deviceState));
|
|
|
|
localStorage.removeItem(this.deviceStateKeyName);
|
|
|
|
}
|
|
|
|
|
|
|
|
const deviceAccountState = $i && localStorage.getItem(this.deviceAccountStateKeyName);
|
|
|
|
if ($i && deviceAccountState) {
|
|
|
|
await set(this.deviceAccountStateKeyName, JSON.parse(deviceAccountState));
|
|
|
|
localStorage.removeItem(this.deviceAccountStateKeyName);
|
|
|
|
}
|
|
|
|
|
|
|
|
const registryCache = $i && localStorage.getItem(this.registryCacheKeyName);
|
|
|
|
if ($i && registryCache) {
|
|
|
|
await set(this.registryCacheKeyName, JSON.parse(registryCache));
|
|
|
|
localStorage.removeItem(this.registryCacheKeyName);
|
|
|
|
}
|
|
|
|
}
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|