- Notifications
You must be signed in to change notification settings - Fork 28.3k
/
Copy pathutils.ts
64 lines (57 loc) · 1.59 KB
/
utils.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
60
61
62
63
64
importfsfrom"fs";
importchokidarfrom"chokidar";
/**
* Run watch mode, watching on @var rootPath
*/
exportfunctionwatchItems(rootPath: string,cb: ()=>void): void{
chokidar
.watch(rootPath,{ignoreInitial: true,awaitWriteFinish: true})
.on("add",cb)
.on("unlink",cb);
}
/**
* Using @var path find all files recursively and generate output using @var resolveItem by calling it for each file
* @param path plugins path
* @param resolveItem will resolve item in required data format
* @param cb will be called when new item is found
* @param fileFormat Matches specific files
* @returns {Item[]} items
*/
exportfunctiongetItems<Item>(settings: {
path: string;
resolveItem: (path: string,name: string)=>Item;
cb?: (name: string)=>void;
fileFormat?: RegExp;
}): Item[]{
const{
path,
resolveItem,
cb,
fileFormat =newRegExp(/(.+)(?<!\.d)\.[jt]sx?$/),
}=settings;
constitems: Item[]=[];
constfolders: fs.Dirent[]=[];
if(!fs.existsSync(path))return[];
fs.readdirSync(path,{withFileTypes: true}).forEach((item)=>{
if(item.isDirectory()){
folders.push(item);
}
if(fileFormat.test(item.name)){
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
constname=item.name.match(fileFormat)![1];
items.push(resolveItem(path,name));
cb&&cb(name);
}
});
for(constfolderoffolders){
items.push(
...getItems<Item>({
path: `${path}/${folder.name}`,
resolveItem,
cb,
fileFormat,
}),
);
}
returnitems;
}