forked from galaxyproject/galaxy
-
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.
Merge branch 'release_24.2' into dev
- Loading branch information
Showing
24 changed files
with
181 additions
and
63 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 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 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 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 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 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 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 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 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 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 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 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 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 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,67 @@ | ||
/* | ||
vueuse local storage has some strange, buggy side-effects, | ||
so were re-implementing just the parts we need here | ||
*/ | ||
|
||
import { type Ref, ref, watch } from "vue"; | ||
|
||
import { match } from "@/utils/utils"; | ||
|
||
function stringify(value: unknown): string { | ||
if (typeof value !== "object") { | ||
return `${value}`; | ||
} else { | ||
return JSON.stringify(value); | ||
} | ||
} | ||
|
||
function parse<T>(value: string, type: "string" | "number" | "boolean" | "object"): T { | ||
return match(type, { | ||
string: () => value as T, | ||
number: () => parseFloat(value) as T, | ||
boolean: () => (value.toLowerCase().trim() === "true" ? true : false) as T, | ||
object: () => JSON.parse(value), | ||
}); | ||
} | ||
|
||
export function syncRefToLocalStorage<T>(key: string, refToSync: Ref<T>) { | ||
const stored = window.localStorage.getItem(key); | ||
|
||
const sync = () => { | ||
const stringified = stringify(refToSync.value); | ||
window.localStorage.setItem(key, stringified); | ||
}; | ||
|
||
if (stored) { | ||
try { | ||
refToSync.value = parse(stored, typeof refToSync.value as "string" | "number" | "boolean" | "object"); | ||
} catch (e) { | ||
console.error(`Failed to parse value "${stored}" from local storage key "${key}". Resetting key`); | ||
sync(); | ||
} | ||
} else { | ||
sync(); | ||
} | ||
|
||
watch( | ||
() => refToSync.value, | ||
() => { | ||
sync(); | ||
}, | ||
{ deep: true } | ||
); | ||
} | ||
|
||
export function usePersistentRef(key: string, defaultValue: string): Ref<string>; | ||
export function usePersistentRef(key: string, defaultValue: number): Ref<number>; | ||
export function usePersistentRef<T>(key: string, defaultValue: T): Ref<T>; | ||
export function usePersistentRef<T extends string | number | boolean | object | null>( | ||
key: string, | ||
defaultValue: T | ||
): Ref<T> { | ||
const storageSyncedRef = ref(defaultValue) as Ref<T>; | ||
|
||
syncRefToLocalStorage(key, storageSyncedRef); | ||
|
||
return storageSyncedRef; | ||
} |
Oops, something went wrong.