Skip to content

Commit a1f43f3

Browse files
committed
walker -> reader
1 parent ad780b8 commit a1f43f3

File tree

8 files changed

+76
-45
lines changed

8 files changed

+76
-45
lines changed

DESIGN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Once every file has been parsed, generate a JSON with the information gathered a
1111
## High-level implementation
1212

1313
```ts
14-
public walker(root: string, filesExploredPath: Array<string>): Array<string>
14+
public reader(root: string): Array<string>
1515
```
1616

17-
The function `walker` will start at the root directory and save those files candidates of having components defined inside of them. Only will consider files with `.ts` extension. Should traverse all the file tree from the root up to the bottom and return the full path to every candidate file.
17+
The function `reader` will start at the root directory and save those files candidates of having components defined inside of them. Only will consider files with `.ts` extension. Should traverse all the file tree from the root up to the bottom and return the full path to every candidate file, the content of the file and the type of definition that contains that file (component, pipe or directive).
1818

1919
```ts
2020
public parser(filePaths: Array<string>): Array<File>

src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
const path = require("path");
22
const argv = process.argv;
3-
import * as walker from "./walker";
3+
import * as reader from "./reader";
44
import * as parser from "./parser";
55
import * as generator from "./generator";
66
import { File } from "./shared/IFile";
77
import logger from "./shared/logger";
88
import { ICLIConfig } from "./shared/ICLIConfig";
9+
import { FileType } from "./shared/constants";
910

1011
let config: ICLIConfig = {
1112
workingDir: null,
@@ -65,7 +66,7 @@ export const run = async (args: string[]) => {
6566

6667
process.env.ROOT_PROJECT_PATH = config.workingDir || path.posix.resolve();
6768

68-
let candidateFilePaths: Array<string> = walker.walker(process.env.ROOT_PROJECT_PATH as string, []);
69+
let candidateFilePaths: Array<{ type: FileType; filePath: string; fileData: string }> = reader.reader(process.env.ROOT_PROJECT_PATH as string);
6970
let fileData: Array<File> = parser.parser(candidateFilePaths);
7071
generator.generator(fileData, config.outputDir as string);
7172
};

src/reader.ts

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import { Dirent } from "fs";
2+
import { FileType } from "./shared/constants";
3+
import logger from "./shared/logger";
4+
5+
const fs = require("fs");
6+
const path = require("path");
7+
8+
export const reader = (root: string): Array<{ type: FileType; filePath: string; fileData: string }> => {
9+
let pendingDir: Array<string> = [root],
10+
result: Array<{ type: FileType; filePath: string; fileData: string }> = [];
11+
12+
while (pendingDir.length > 0) {
13+
let currentDir = pendingDir.shift();
14+
15+
if (currentDir == null) break;
16+
17+
const files: Dirent[] = fs.readdirSync(currentDir, {
18+
encoding: "utf8",
19+
withFileTypes: true,
20+
});
21+
22+
for (let file of files) {
23+
if (file.isFile() && file.name.endsWith(".ts")) {
24+
logger.log("Candidate file to contain component definition:", file.name);
25+
const filePath = path.join(currentDir, file.name);
26+
const fileData: string = fs.readFileSync(filePath, {
27+
encoding: "utf8",
28+
flag: "r",
29+
});
30+
31+
let type: FileType = "CLASS";
32+
if (fileData?.match(/@Component/g)?.length || 0 > 0) {
33+
type = "COMPONENT";
34+
}
35+
36+
// In the future we will add FileType PIPE & FileType DIRECTIVE
37+
38+
result.push({
39+
type,
40+
filePath,
41+
fileData,
42+
});
43+
} else if (file.isDirectory() && file.name != "node_modules" && file.name != ".git") {
44+
pendingDir.push(path.join(currentDir, file.name));
45+
}
46+
}
47+
}
48+
return result;
49+
};

src/walker.ts

-31
This file was deleted.

tests/fixtures/ts-files/foo.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { Input } from "@angular/core";
2+
3+
export class BaseComponent {
4+
@Input() baseInput: "type1" | "type2" | "type3";
5+
}

tests/fixtures/ts-files/index.ts

Whitespace-only changes.

tests/reader.test.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import * as reader from "../src/reader";
2+
const path = require("path");
3+
4+
test("Inspects /tests/fixtures/ts-files with reader function", () => {
5+
expect(reader.reader(path.join(path.posix.resolve(), "tests/fixtures/ts-files"))).toStrictEqual([
6+
{
7+
type: "COMPONENT",
8+
filePath: path.join(path.posix.resolve(), "/tests/fixtures/ts-files/foo.ts"),
9+
fileData:
10+
'import { Input } from "@angular/core";\r\n' +
11+
"\r\n" +
12+
"export class BaseComponent {\r\n" +
13+
' @Input() baseInput: "type1" | "type2" | "type3";\r\n' +
14+
"}\r\n",
15+
},
16+
]);
17+
});

tests/walker.test.ts

-10
This file was deleted.

0 commit comments

Comments
 (0)