Skip to content

Commit

Permalink
feat: try catch indexedDB error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dogtiti committed Aug 27, 2024
1 parent 0b75894 commit c2fc0b4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 24 deletions.
4 changes: 2 additions & 2 deletions app/store/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { createPersistStore } from "../utils/store";
import { collectModelsWithDefaultModel } from "../utils/model";
import { useAccessStore } from "./access";
import { isDalle3 } from "../utils";
import { indexDBStorage } from "@/app/utils/indexDB-storage";
import { indexedDBStorage } from "@/app/utils/indexedDB-storage";

export type ChatMessage = RequestMessage & {
date: string;
Expand Down Expand Up @@ -667,7 +667,7 @@ export const useChatStore = createPersistStore(
},

async clearAllData() {
await indexDBStorage.clear();
await indexedDBStorage.clear();
localStorage.clear();
location.reload();
},
Expand Down
22 changes: 0 additions & 22 deletions app/utils/indexDB-storage.ts

This file was deleted.

38 changes: 38 additions & 0 deletions app/utils/indexedDB-storage.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { StateStorage } from "zustand/middleware";
import { get, set, del, clear } from "idb-keyval";

class IndexedDBStorage implements StateStorage {
public async getItem(name: string): Promise<string | null> {
try {
return (await get(name)) || localStorage.getItem(name);
} catch (error) {
return localStorage.getItem(name);
}
}

public async setItem(name: string, value: string): Promise<void> {
try {
await set(name, value);
} catch (error) {
localStorage.setItem(name, value);
}
}

public async removeItem(name: string): Promise<void> {
try {
await del(name);
} catch (error) {
localStorage.removeItem(name);
}
}

public async clear(): Promise<void> {
try {
await clear();
} catch (error) {
localStorage.clear();
}
}
}

export const indexedDBStorage = new IndexedDBStorage();

0 comments on commit c2fc0b4

Please sign in to comment.