]>
Commit | Line | Data |
---|---|---|
1 | import { UIClient } from './UIClient' | |
2 | ||
3 | export const convertToBoolean = (value: unknown): boolean => { | |
4 | let result = false | |
5 | if (value != null) { | |
6 | // Check the type | |
7 | if (typeof value === 'boolean') { | |
8 | return value | |
9 | } else if (typeof value === 'string' && (value.toLowerCase() === 'true' || value === '1')) { | |
10 | result = true | |
11 | } else if (typeof value === 'number' && value === 1) { | |
12 | result = true | |
13 | } | |
14 | } | |
15 | return result | |
16 | } | |
17 | ||
18 | export const convertToInt = (value: unknown): number => { | |
19 | if (value == null) { | |
20 | return 0 | |
21 | } | |
22 | if (Number.isSafeInteger(value)) { | |
23 | return value as number | |
24 | } | |
25 | if (typeof value === 'number') { | |
26 | return Math.trunc(value) | |
27 | } | |
28 | let changedValue: number = value as number | |
29 | if (typeof value === 'string') { | |
30 | changedValue = Number.parseInt(value) | |
31 | } | |
32 | if (Number.isNaN(changedValue)) { | |
33 | // eslint-disable-next-line @typescript-eslint/no-base-to-string | |
34 | throw new Error(`Cannot convert to integer: '${value.toString()}'`) | |
35 | } | |
36 | return changedValue | |
37 | } | |
38 | ||
39 | export const getFromLocalStorage = <T>(key: string, defaultValue: T): T => { | |
40 | const item = localStorage.getItem(key) | |
41 | return item != null ? (JSON.parse(item) as T) : defaultValue | |
42 | } | |
43 | ||
44 | // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-parameters | |
45 | export const setToLocalStorage = <T>(key: string, value: T): void => { | |
46 | localStorage.setItem(key, JSON.stringify(value)) | |
47 | } | |
48 | ||
49 | export const deleteFromLocalStorage = (key: string): void => { | |
50 | localStorage.removeItem(key) | |
51 | } | |
52 | ||
53 | export const getLocalStorage = (): Storage => { | |
54 | return localStorage | |
55 | } | |
56 | ||
57 | export const randomUUID = (): `${string}-${string}-${string}-${string}-${string}` => { | |
58 | return crypto.randomUUID() | |
59 | } | |
60 | ||
61 | export const validateUUID = ( | |
62 | uuid: `${string}-${string}-${string}-${string}-${string}` | |
63 | ): uuid is `${string}-${string}-${string}-${string}-${string}` => { | |
64 | return /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.test(uuid) | |
65 | } | |
66 | ||
67 | export const useUIClient = (): UIClient => { | |
68 | return UIClient.getInstance() | |
69 | } |