refactor(ui): cleanup data fetching and display refreshing logic
[e-mobility-charging-stations-simulator.git] / ui / web / src / composables / Utils.ts
index 451c4155fd7a114990f28f52fb619fc4932d774d..467760535c6f5ec88cc1c58949a5c267743806f7 100644 (file)
@@ -32,3 +32,24 @@ export const convertToInt = (value: unknown): number => {
   }
   return changedValue
 }
+
+export const setToLocalStorage = <T>(key: string, value: T): void => {
+  localStorage.setItem(key, JSON.stringify(value))
+}
+
+export const getFromLocalStorage = <T>(key: string, defaultValue: T): T => {
+  const item = localStorage.getItem(key)
+  return item != null ? (JSON.parse(item) as T) : defaultValue
+}
+
+export const deleteFromLocalStorage = (key: string): void => {
+  localStorage.removeItem(key)
+}
+
+export const getLocalStorage = (): Storage => {
+  return localStorage
+}
+
+export const randomUUID = (): `${string}-${string}-${string}-${string}-${string}` => {
+  return crypto.randomUUID()
+}