-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
59 lines (46 loc) · 1.29 KB
/
index.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
import { promises as fs, readdirSync } from "fs";
import path from "path";
class AssetManager {
loaded: boolean;
data: Record<string, string>;
constructor(public dir: string) {
this.loaded = false;
this.data = {};
}
async load() {
const files = await fs.readdir(this.dir);
for (const file of files) {
const name = (file.split(".").shift() ?? file).toUpperCase();
this.data[name] = `${this.dir}/${file}`;
}
this.loaded = true;
}
loadSync() {
const files = readdirSync(this.dir);
for (const file of files) {
const name = (file.split(".").shift() ?? file).toUpperCase();
this.data[name] = `${this.dir}/${file}`;
}
this.loaded = true;
}
clear() {
this.data = {};
this.loaded = false;
}
get(name: string) {
return this.data[name];
}
set(name: string, data: string) {
return this.data[name.toUpperCase()] = data;
}
get size() {
return Object.keys(this.data).length;
}
}
export = {
font: new AssetManager(path.join(__dirname, "..", "data", "fonts")),
image: new AssetManager(path.join(__dirname, "..", "data", "images")),
utils: {
AssetManager
}
};