Skip to content

Commit 9fe1e06

Browse files
committed
support inputs with setters
1 parent 571dd85 commit 9fe1e06

File tree

5 files changed

+101
-36
lines changed

5 files changed

+101
-36
lines changed

CHANGELOG.md

Whitespace-only changes.

rollup.config.js

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
import typescript from 'rollup-plugin-typescript2'
1+
import typescript from "rollup-plugin-typescript2";
22
import shebang from "rollup-plugin-add-shebang";
33

4-
import pkg from './package.json'
4+
import pkg from "./package.json";
55

66
export default [
7-
{
8-
input: 'src/index.ts',
9-
output: { format: "cjs", file: `build/${pkg.name}.js` },
10-
plugins: [
11-
shebang({
12-
include: `build/${pkg.name}.js`,
13-
}),
14-
typescript({
15-
typescript: require('typescript'),
16-
}),
17-
],
18-
},
19-
{
20-
input: 'src/index.ts',
21-
output: { format: "cjs", file: `build/${pkg.name}.min.js` },
22-
plugins: [
23-
shebang({
24-
include: `build/${pkg.name}.min.js`,
25-
}),
26-
typescript({
27-
typescript: require('typescript'),
28-
}),
29-
],
30-
},
31-
]
7+
{
8+
input: "src/index.ts",
9+
output: { format: "cjs", file: `build/${pkg.name}.js` },
10+
plugins: [
11+
shebang({
12+
include: `build/${pkg.name}.js`,
13+
}),
14+
typescript({
15+
typescript: require("typescript"),
16+
}),
17+
],
18+
},
19+
{
20+
input: "src/index.ts",
21+
output: { format: "cjs", file: `build/${pkg.name}.min.js` },
22+
plugins: [
23+
shebang({
24+
include: `build/${pkg.name}.min.js`,
25+
}),
26+
typescript({
27+
typescript: require("typescript"),
28+
}),
29+
],
30+
},
31+
];

src/parser.ts

+53-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require("path");
44
import { File, Input, Output } from "./shared/IFile";
55
import * as logger from "./shared/logger";
66

7-
//TODO: Test in in other OS (github actions)
7+
// TODO: Test in in other OS (github actions)
88
// TODO: Read files synchronously
99
export const parser = (filePaths: Array<string>): Array<File> => {
1010
let result: Array<File> = [];
@@ -54,17 +54,10 @@ export const parser = (filePaths: Array<string>): Array<File> => {
5454
continue;
5555
}
5656
componentSelectorData[0].replace(/(\s+)/g, " ");
57-
selector = componentSelectorData[0]
58-
.split(" ")[1]
59-
.replace(/('|")/g, "");
57+
selector = componentSelectorData[0].split(" ")[1].replace(/('|")/g, "");
6058
logger.log("Selector:", selector);
6159
}
6260

63-
// TODO: @Input() set foo(value: type) {};
64-
65-
// input literal type
66-
// @Input() variableName: 'type1' | 'type2' | 'type3'; and
67-
// @Input() variableName: 'type1' | 'type2' | 'type3' = 'type1';
6861
// notice we ignore the default value of the input in the regex
6962
let inputs: Array<Input> = [];
7063
let inputsData: Array<string> =
@@ -136,6 +129,57 @@ export const parser = (filePaths: Array<string>): Array<File> => {
136129
});
137130
}
138131

132+
//@Input() set foo(value) {}
133+
inputsData = [];
134+
inputsData =
135+
file?.match(
136+
/@Input\(\)(\s+)set(\s+)[A-Za-z0-9]+\([A-Za-z0-9]+\)(\s+)/g
137+
) || [];
138+
for (let input of inputsData) {
139+
let tmp: Array<string> = input.replace(/(\s+)/g, " ").split(" ");
140+
const inputName = tmp[2].replace(/(\s+)/g, "").split("(")[0];
141+
inputs.push({
142+
inputName,
143+
type: undefined,
144+
});
145+
}
146+
147+
//@Input() set foo(value: type) {}
148+
inputsData = [];
149+
inputsData =
150+
file?.match(
151+
/@Input\(\)(\s+)set(\s+)[A-Za-z0-9]+\([A-Za-z0-9]+:(\s+)[A-Za-z0-9]+\)(\s+)/g
152+
) || [];
153+
for (let input of inputsData) {
154+
let tmp: Array<string> = input.replace(/(\s+)/g, " ").split(" ");
155+
const inputName = tmp[2].replace(/(\s+)/g, "").split("(")[0];
156+
const type = tmp[3].replace(/(\s+)/g, "").split(")")[0];
157+
inputs.push({
158+
inputName,
159+
type,
160+
});
161+
}
162+
163+
//@Input() set foo(value: type) {}
164+
inputsData = [];
165+
inputsData =
166+
file?.match(
167+
/@Input\(\)(\s+)set(\s+)[A-Za-z0-9]+\([A-Za-z0-9]+:((\s+)('|")[A-Za-z0-9]+('|")(\s+)\|)+(\s)('|")[A-Za-z0-9]+('|")\)/g
168+
) || [];
169+
for (let input of inputsData) {
170+
let tmp: Array<string> = input.replace(/(\s+)/g, " ").split(" ");
171+
const inputName = tmp[2].replace(/(\s+)/g, "").split("(")[0];
172+
const type = tmp
173+
.slice(3, tmp.length)
174+
.join()
175+
.replace(/'|"|\)/g, "")
176+
.replace(/,/g, " ");
177+
inputs.push({
178+
inputName,
179+
type,
180+
});
181+
}
182+
139183
// @Input() variableName; and @Input() variableName. Also for now we will parse
140184
// in this part of the code @Input() variableName = value and @Input() variableName = value;
141185
inputsData = [];

tests/fixtures/parser/main.component.ts

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ export class MainComponent extends BaseComponent {
2222
@Input() variableAssignedValueAndSemicolon = value;
2323
@Output() buttonClick: EventEmitter<any> = new EventEmitter();
2424
@Output() fooVar: EventEmitter<number> = new EventEmitter();
25+
@Input() set Foo(value) {
26+
27+
}
28+
@Input() set FooType(value: string) {
29+
30+
}
31+
@Input() set FooTypeLiteral(value: 'literal1' | 'literal2' | 'literal3') {
32+
33+
}
2534

2635
someRandomFunction(action) {
2736
action = "action";

tests/parser.test.ts

+12
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,18 @@ test("Parses the contents of the candidate files and returns an array of File ty
5151
inputName: "inputNameD",
5252
type: undefined,
5353
},
54+
{
55+
inputName: "Foo",
56+
type: undefined,
57+
},
58+
{
59+
inputName: "FooType",
60+
type: "string",
61+
},
62+
{
63+
inputName: "FooTypeLiteral",
64+
type: "literal1 | literal2 | literal3",
65+
},
5466
{
5567
inputName: "withoutType",
5668
type: undefined,

0 commit comments

Comments
 (0)