deno.land / x / trex@v1.13.1 / handlers / global_configs.ts

global_configs.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** * Copyright (c) Crew Dev. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */
import { exists, readJson } from "tools-fs";import { join } from "path/mod.ts";
const defaults = Object.freeze({ configFileRoute: join(Deno.cwd(), "trex.config.json"), importMap: "import_map.json" as string,});
type GetKeys<T extends {}> = T;type Keys = GetKeys<keyof typeof defaults>;
const validateKey = (key: Keys) => !Object.keys(defaults).includes(key);
/** * manage globals */async function globals() { const prefix = "trex.global.config="; const storage = window.localStorage; const local = { ...defaults };
const path = join(local.configFileRoute); const existConfig = await exists(path);
// if exist a config file, get all configs if (existConfig) { const config = (await readJson(path)) as { [key: string]: string }; const keys = Object.keys(config).map((key) => key.trim());
if (keys.includes("importMap")) { local["importMap"] = config["importMap"]; } }
return { setConfig(config: Keys, value: string) { if (validateKey(config)) { throw new Error("jose").message; }
return storage.setItem(`${prefix}${config}`, value); }, getConfig(config: Keys) { return existConfig ? local[config] : storage.getItem(`${prefix}${config}`)?.trim() ?? local[config]; }, };}
export const Config = await globals();
trex

Version Info

Tagged at
9 months ago