Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor parser #17

Merged
merged 12 commits into from
Sep 28, 2021
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tabWidth": 2,
"useTabs": false,
"printWidth": 160
}
4 changes: 2 additions & 2 deletions DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Once every file has been parsed, generate a JSON with the information gathered a
## High-level implementation

```ts
public walker(root: string, filesExploredPath: Array<string>): Array<string>
public reader(root: string): Array<string>
```

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.
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).

```ts
public parser(filePaths: Array<string>): Array<File>
Expand Down
29 changes: 15 additions & 14 deletions src/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,26 @@ import logger from "./shared/logger";
const fs = require("fs");
const path = require("path");

/**
*
* @param {Array<File>} files An array of tokens generated after parsing the content of every file
* @param {string} outputPath The location in which the function has to write the file with the deffinitions
* of the snippets
*/
export const generator = (files: Array<File>, outputPath: string): void => {
// scope will be html only for now
let json = Object();
for (const file of files) {
let component = Object(), inputs = "", index = 1;
let component = Object(),
inputs = "",
index = 1;
component.scope = "html";
component.prefix = file.prefix;
for (let input of file.inputs) {
if (input.type?.indexOf('|') != -1 && input.type) {
inputs +=
` [${input.inputName}]=\"$\{${index}\|${input.type.replace(/(\s)\|(\s)/g, ',')
.replace(/'/g, '')}\|\}\"`;
}
else {
inputs += input.type === "string" ?
` ${input.inputName}=` :
` [${input.inputName}]=`;
if (input.type?.indexOf("|") != -1 && input.type) {
inputs += ` [${input.inputName}]=\"$\{${index}\|${input.type.replace(/(\s)\|(\s)/g, ",").replace(/'/g, "")}\|\}\"`;
} else {
inputs += input.type === "string" ? ` ${input.inputName}=` : ` [${input.inputName}]=`;
inputs += `\"$${index}\"`;
}
++index;
Expand All @@ -30,11 +33,9 @@ export const generator = (files: Array<File>, outputPath: string): void => {
outputs += ` (${output.outputName})=\"$${index}\"`;
++index;
}
component.body = [
`<${file.prefix}` + inputs + outputs + `></${file.prefix}>`,
];
component.body = [`<${file.prefix}` + inputs + outputs + `></${file.prefix}>`];
json[file.componentName] = {
...component
...component,
};
}
const dir = path.join(outputPath, "/out.code-snippets");
Expand Down
9 changes: 4 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
const path = require("path");
const argv = process.argv;
import * as walker from "./walker";
import * as reader from "./reader";
import * as parser from "./parser";
import * as generator from "./generator";
import { File } from "./shared/IFile";
import logger from "./shared/logger";
import { ICLIConfig } from "./shared/ICLIConfig";
import { FileType } from "./shared/constants";
import { IFileData } from "./shared/IFileData";

let config: ICLIConfig = {
workingDir: null,
Expand Down Expand Up @@ -65,10 +67,7 @@ export const run = async (args: string[]) => {

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

let candidateFilePaths: Array<string> = walker.walker(
process.env.ROOT_PROJECT_PATH as string,
[]
);
let candidateFilePaths: Array<IFileData> = reader.reader(process.env.ROOT_PROJECT_PATH as string);
let fileData: Array<File> = parser.parser(candidateFilePaths);
generator.generator(fileData, config.outputDir as string);
};
Expand Down
Loading