Skip to content

Commit c32e690

Browse files
committed
several fixes needed to run the script inside an angular project
1 parent 6c98511 commit c32e690

File tree

5 files changed

+41
-24
lines changed

5 files changed

+41
-24
lines changed

README.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
# ng-vs-snippets
2-
![ts](https://badgen.net/badge/Built%20With/TypeScript/blue) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![made-for-VSCode](https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg)](https://code.visualstudio.com/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
3-
42

3+
![ts](https://badgen.net/badge/Built%20With/TypeScript/blue) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![made-for-VSCode](https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg)](https://code.visualstudio.com/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
54

65
Automatic VS Code snippet file generation for Angular codebases. Seamlessly maintain up-to-date VS Code snippets of all of your code.
76

87
Currently, we support snippet generation from the following Angular elements:
98

109
<center>
1110

12-
| Element | Status |
13-
|-----------|:-----------------------------------------:|
14-
| Component | :white_check_mark: Supported |
15-
| Directive | :construction_worker: Not yet supported |
16-
| Pipe | :construction_worker: Not yet supported |
11+
| Element | Status |
12+
| --------- | :-------------------------------------: |
13+
| Component | :white_check_mark: Supported |
14+
| Directive | :construction_worker: Not yet supported |
15+
| Pipe | :construction_worker: Not yet supported |
1716

1817
</center>
1918

2019
## Installation
2120

22-
Install ```ng-vs-snippets``` as a dev-dependency in your Angular project. To do so, run:
21+
Install `ng-vs-snippets` as a dev-dependency in your Angular project. To do so, run:
2322

2423
```
2524
npm i @roguib/ng-vs-snippets --save-dev
2625
```
2726

28-
Create a ```package.json``` script to extract snippets from your codebase:
27+
Create a `package.json` script to extract snippets from your codebase:
2928

3029
```json
3130
"scripts": {
32-
"ng-vs-snippets": "ng-vs-snippets --dir ./src --output ./.vscode",
31+
"ng-vs-snippets": "ng-vs-snippets --dir . --output ./.vscode",
3332
},
3433
```
3534

@@ -39,21 +38,23 @@ Execute the script by running:
3938
npm run ng-vs-snippets
4039
```
4140

42-
The script will generate a ```out.code-snippets``` file containing all the definitions. **Make sure you don't have any file with the same name** since the data contained in that file **is going to be replaced**.
41+
The script will generate a `out.code-snippets` file containing all the definitions. **Make sure you don't have any file with the same name** since the data contained in that file **is going to be replaced**.
4342

4443
## Troubleshooting
45-
Sometimes, due to VS Code configuration issues, snippets don't appear in the suggestion's dropdown. Make sure to specify, in VS Code ```settings.json``` configuration file the following properties:
44+
45+
Sometimes, due to VS Code configuration issues, snippets don't appear in the suggestion's dropdown. Make sure to specify, in VS Code `settings.json` configuration file the following properties:
4646

4747
```json
4848
"editor.tabCompletion": "on",
4949
"editor.snippetSuggestions": "top"
5050
```
51-
If this doesn't fix the problem, open the command palette and search for ```Preferences: Configure User Snippets``` to ensure the editor is considering the fille where your generated snippets are defined.
51+
52+
If this doesn't fix the problem, open the command palette and search for `Preferences: Configure User Snippets` to ensure the editor is considering the fille where your generated snippets are defined.
5253

5354
## Documentation
5455

5556
You can find the [full document design at this url]().
5657

5758
## Contributing
5859

59-
Pull requests are welcome :) Make sure to create an issue first so anyone's work is overlaped.
60+
Pull requests are welcome :) Make sure to create an issue first so anyone's work is overlaped.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"angular",
1515
"vs snippets"
1616
],
17-
"main": "build/ng-vs-snippets.js",
18-
"types": "build/ng-vs-snippets.d.ts",
17+
"main": "build/@roguib/ng-vs-snippets.js",
18+
"types": "build/@roguib/ng-vs-snippets.d.ts",
1919
"bin": {
20-
"ng-vs-snippets": "build/ng-vs-snippets.js"
20+
"ng-vs-snippets": "build/@roguib/ng-vs-snippets.js"
2121
},
2222
"scripts": {
2323
"build:cjs": "rollup -c",

src/parser.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ export const parser = (filePaths: Array<string>): Array<File> => {
115115
inputsData = file?.match(regularInputWithTypeSelector) || [];
116116
for (let input of inputsData) {
117117
let tmp: Array<string> = input.replace(/(\s+)/g, " ").split(" ");
118-
logger.log("input data", inputsData);
119118
inputs.push({
120119
inputName: tmp[1].replace(":", ""),
121120
type: tmp[2].replace(";", ""),
@@ -263,8 +262,15 @@ export const parser = (filePaths: Array<string>): Array<File> => {
263262
extendedClassFilepath: extendedClassPath || undefined,
264263
});
265264
} else {
265+
/**
266+
* TODO: Instead of working with relative paths and converting them
267+
* to absolute when needed, we can start the exec by transforming every
268+
* relative path to absolute, and then clean up the resolve calls in the program
269+
* that transforms the code into an spaguetti one. Also it could help by reducing
270+
* the amount of times we call path.join(path.posix.resolve(), path);
271+
*/
266272
tmp.push({
267-
fileLocation: filePath,
273+
fileLocation: path.resolve(filePath),
268274
inputs: inputs,
269275
outputs: outputs,
270276
extendedClassFilepath: undefined,

src/utils/path-resolver.ts

+14-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,13 @@ export const resolve = (
2121
* @returns {string} The the path in the import expression
2222
*/
2323
const extractPathFromImportExpr = (importExpr: string): string => {
24-
let path = importExpr.substr(importExpr.indexOf('"') + 1);
25-
return path.replace(/\"/g, "");
24+
let pathIndex = importExpr.indexOf('"');
25+
26+
if (pathIndex === -1) {
27+
pathIndex = importExpr.indexOf("'");
28+
}
29+
let path = importExpr.substr(pathIndex + 1);
30+
return path.replace(/\"/g, "").replace(/'/g, "");
2631
};
2732

2833
let resolvedPath = "",
@@ -41,19 +46,24 @@ export const resolve = (
4146
}
4247

4348
let compilerOptionsPathsKey = pathToFile.substr(0, pathToFile.indexOf("/")),
44-
compilerOptionsPathsValue = "";
49+
compilerOptionsPathsValue: Array<string> = [""];
4550
if (compilerOptionsPathsKey + "/*" in tsconfigFile?.compilerOptions.paths) {
4651
compilerOptionsPathsValue =
4752
tsconfigFile?.compilerOptions.paths[compilerOptionsPathsKey + "/*"];
4853
} // TODO: else throw an exception
4954

55+
compilerOptionsPathsValue[0] = compilerOptionsPathsValue[0].replace(
56+
"/*",
57+
""
58+
);
59+
5060
// Notice that by calling path.join with a relative path of the base
5161
// path from ComponentClassPath and the full path of the file resolves into the
5262
// full path of the base path
5363
resolvedPath = path.join(
5464
path.posix.resolve(),
5565
pathToFile
56-
.replace(compilerOptionsPathsKey, compilerOptionsPathsValue)
66+
.replace(compilerOptionsPathsKey, compilerOptionsPathsValue[0])
5767
.replace(/(\s+)/g, " ")
5868
.replace(/"/g, "") + ".ts"
5969
);

0 commit comments

Comments
 (0)