forked from ChatGPTNextWeb/ChatGPT-Next-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |