egirlskey/packages/client/src/pizzax.ts

233 lines
7.4 KiB
TypeScript
Raw Normal View History

2020-12-28 08:00:31 +00:00
import { onUnmounted, Ref, ref, watch } from 'vue';
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';
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']>; };
type ArrayElement<A> = A extends readonly (infer T)[] ? T : never;
2021-12-29 17:38:17 +00:00
const connection = $i && stream.useChannel('main');
2021-12-29 15:18:27 +00:00
export class Storage<T extends StateDef> {
2022-01-02 11:31:48 +00:00
public readonly ready: Promise<void>;
public readonly loaded: Promise<void>;
2021-12-29 15:18:27 +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;
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 18:41:49 +00:00
// 簡易的にキューイングして占有ロックとする
2021-12-29 18:42:40 +00:00
private currentIdbJob: Promise<any> = Promise.resolve();
2021-12-29 15:18:27 +00:00
private addIdbSetJob<T>(job: () => Promise<T>) {
2021-12-29 18:42:40 +00:00
const promise = this.currentIdbJob.then(job, e => {
2021-12-29 15:18:27 +00:00
console.error('Pizzax failed to save data to idb!', e);
return job();
});
2021-12-29 18:42:40 +00:00
this.currentIdbJob = promise;
2021-12-29 15:18:27 +00:00
return promise;
}
2021-12-25 17:17:36 +00:00
constructor(key: string, def: T) {
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}` : '';
this.def = def;
2021-12-29 15:18:27 +00:00
this.ready = this.init();
2022-01-02 11:31:48 +00:00
this.loaded = this.ready.then(() => this.load());
2021-12-29 15:18:27 +00:00
}
2022-01-02 11:31:48 +00:00
private async init(): Promise<void> {
await this.migrate();
2021-12-29 15:34:23 +00:00
2022-01-02 11:31:48 +00:00
const deviceState: State<T> = await get(this.deviceStateKeyName) || {};
const deviceAccountState = $i ? await get(this.deviceAccountStateKeyName) || {} : {};
const registryCache = $i ? await get(this.registryCacheKeyName) || {} : {};
2021-12-29 15:18:27 +00:00
2022-01-02 11:31:48 +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);
}
2022-01-02 11:31:48 +00:00
}
for (const [k, v] of Object.entries(this.state) as [keyof T, T[keyof T]][]) {
this.reactiveState[k] = ref(v);
}
if ($i) {
// streamingのuser storage updateイベントを監視して更新
connection?.on('registryUpdated', ({ scope, key, value }: { scope?: string[], key: keyof T, value: T[typeof key]['default'] }) => {
if (!scope || scope.length !== 2 || scope[0] !== 'client' || scope[1] !== this.key || this.state[key] === value) return;
this.state[key] = value;
this.reactiveState[key].value = value;
2021-12-29 15:18:27 +00:00
2022-01-02 11:31:48 +00:00
this.addIdbSetJob(async () => {
const cache = await get(this.registryCacheKeyName);
if (cache[key] !== value) {
cache[key] = value;
await set(this.registryCacheKeyName, cache);
}
});
});
}
}
private async load(): Promise<void> {
return new Promise((resolve, reject) => {
2021-12-29 15:18:27 +00:00
if ($i) {
2022-01-02 11:36:00 +00:00
// api関数と循環参照なので一応setTimeoutしておく
2021-12-29 15:18:27 +00:00
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;
}
}
}
2022-01-02 11:31:48 +00:00
2021-12-29 15:18:27 +00:00
return set(this.registryCacheKeyName, cache);
})
.then(() => resolve());
}, 1);
}
2022-01-02 11:33:57 +00:00
resolve();
2021-12-29 15:18:27 +00:00
});
}
2021-12-29 15:18:27 +00:00
public set<K extends keyof T>(key: K, value: T[K]['default']): Promise<void> {
2021-12-29 17:03:39 +00:00
const rawValue = JSON.parse(JSON.stringify(value));
2021-12-29 17:03:39 +00:00
if (_DEV_) console.log('set', key, rawValue, value);
this.state[key] = rawValue;
this.reactiveState[key].value = rawValue;
2021-12-29 15:18:27 +00:00
return this.addIdbSetJob(async () => {
2021-12-29 17:30:24 +00:00
if (_DEV_) console.log(`set ${key} start`);
2021-12-29 15:18:27 +00:00
switch (this.def[key].where) {
case 'device': {
const deviceState = await get(this.deviceStateKeyName) || {};
2021-12-29 17:03:39 +00:00
deviceState[key] = rawValue;
2021-12-29 15:18:27 +00:00
await set(this.deviceStateKeyName, deviceState);
break;
}
case 'deviceAccount': {
if ($i == null) break;
const deviceAccountState = await get(this.deviceAccountStateKeyName) || {};
2021-12-29 17:03:39 +00:00
deviceAccountState[key] = rawValue;
2021-12-29 15:18:27 +00:00
await set(this.deviceAccountStateKeyName, deviceAccountState);
break;
}
case 'account': {
if ($i == null) break;
const cache = await get(this.registryCacheKeyName) || {};
2021-12-29 17:03:39 +00:00
cache[key] = rawValue;
2021-12-29 15:18:27 +00:00
await set(this.registryCacheKeyName, cache);
await api('i/registry/set', {
scope: ['client', this.key],
key: key,
2021-12-29 17:03:39 +00:00
value: rawValue
2021-12-29 15:18:27 +00:00
});
break;
}
}
2021-12-29 17:30:24 +00:00
if (_DEV_) console.log(`set ${key} complete`);
2021-12-29 15:18:27 +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使うと良い感じになるかも
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);
}
}
}