This commit is contained in:
tamaina 2021-02-24 18:40:24 +09:00
parent 0b88e08d81
commit 19481de459
6 changed files with 28 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import { get, set } from 'idb-keyval';
import { get, set } from '@/scripts/idb-proxy';
import { reactive } from 'vue';
import { apiUrl } from '@/config';
import { waiting } from '@/os';

View File

@ -4,7 +4,7 @@
import '@/style.scss';
import { set } from 'idb-keyval';
import { set } from '@/scripts/idb-proxy';
// TODO: そのうち消す
if (localStorage.getItem('vuex') != null) {

View File

@ -1,4 +1,4 @@
import { get } from 'idb-keyval';
import { get } from '@/scripts/idb-proxy';
export async function getAccountFromId(id: string) {
const accounts = await get('accounts') as { token: string; id: string; }[];

View File

@ -0,0 +1,23 @@
// FirefoxのプライベートモードなどではindexedDBが使用不可能なので、使う
import {
get as iget,
set as iset,
del as idel
} from 'idb-keyval';
const fallbackName = (key: string) => `idbfallback::${key}`;
export async function get(key: string) {
if (window.indexedDB) return iget(key);
return JSON.parse(localStorage.getItem(fallbackName(key)) || 'null');
}
export async function set(key: string, val: any) {
if (window.indexedDB) return iset(key, val);
return localStorage.setItem(fallbackName(key), JSON.stringify(val));
}
export async function del(key: string) {
if (window.indexedDB) return idel(key);
return localStorage.removeItem(fallbackName(key));
}

View File

@ -3,7 +3,7 @@
*/
declare var self: ServiceWorkerGlobalScope;
import { get, set } from 'idb-keyval';
import { get, set } from '@/scripts/idb-proxy';
import { I18n } from '../../misc/i18n';
class SwLang {

View File

@ -1,6 +1,6 @@
declare var self: ServiceWorkerGlobalScope;
import { get } from 'idb-keyval';
import { get } from '@/scripts/idb-proxy';
import { pushNotificationData } from '../../types';
import { api } from './operations';