@@ -26,7 +26,7 @@ class ComponentInfo {
26
26
templatePath : string ;
27
27
name : string ;
28
28
29
- constructor ( ) { }
29
+ constructor ( ) { }
30
30
}
31
31
32
32
let extensions : Extensions ;
@@ -39,12 +39,6 @@ export default function (options: ComponentOptions): Rule {
39
39
( tree : Tree ) => {
40
40
platformUse = getPlatformUse ( tree , options ) ;
41
41
42
- // TODO: Remove after @angular /[email protected] is complete
43
- if ( ! options . path ) {
44
- const settings = getProjectObject ( tree , options . project ) ;
45
- options . path = normalize ( settings . sourceRoot + '/app' ) ;
46
- }
47
-
48
42
if ( platformUse . nsOnly && options . spec !== true ) {
49
43
options . spec = false ;
50
44
}
@@ -63,41 +57,29 @@ export default function (options: ComponentOptions): Rule {
63
57
componentInfo = parseComponentInfo ( tree , options ) ;
64
58
} ,
65
59
66
- ( tree : Tree , context : SchematicContext ) => {
60
+ ( tree : Tree ) => {
67
61
if ( platformUse . nsOnly ) {
68
- // return renameWebTemplate(tree, component.templatePath);
69
- // don't do anything to the template file, as it its content will be replaced in the next step
70
- return ;
62
+ insertModuleId ( tree , componentInfo . classPath ) ;
71
63
}
64
+ } ,
65
+
66
+ ( tree : Tree , context : SchematicContext ) => {
72
67
if ( platformUse . useWeb ) {
73
68
return renameWebTemplate ( tree , componentInfo . templatePath ) ;
74
69
} else {
75
70
return removeWebTemplate ( tree , context , componentInfo . templatePath ) ;
76
71
}
77
72
} ,
78
73
79
- ( tree : Tree ) => {
80
- if ( platformUse . nsOnly ) {
81
- insertModuleId ( tree , componentInfo . classPath ) ;
82
- }
83
- } ,
84
-
85
74
( tree : Tree , context : SchematicContext ) => {
86
- if ( platformUse . nsOnly ) {
87
- tree . overwrite ( componentInfo . templatePath , `<Button text="${ componentInfo . name } works!" class="btn btn-primary"></Button>` ) ;
88
- return tree ;
89
- }
90
-
91
75
if ( platformUse . useNs ) {
92
- // return performNsModifications(component)(tree, context);
93
76
return addNativeScriptFiles ( componentInfo ) ( tree , context ) ;
94
77
}
95
78
}
96
79
] ) ;
97
80
} ;
98
81
99
- const validateOptions = ( platformUse : PlatformUse , options : ComponentOptions ) =>
100
- ( ) => {
82
+ const validateOptions = ( platformUse : PlatformUse , options : ComponentOptions ) => {
101
83
if ( platformUse . webReady && options . inlineTemplate ) {
102
84
throw new SchematicsException ( 'You cannot use the --inlineTemplate option for web+ns component!' ) ;
103
85
}
@@ -107,10 +89,10 @@ const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) =>
107
89
}
108
90
109
91
if ( ! platformUse . useNs && ! platformUse . useWeb ) {
110
- if ( options . nativescript ) {
92
+ if ( options . nativescript ) {
111
93
throw new SchematicsException ( `Project is not configured for NativeScript, while --web is set to false` ) ;
112
94
}
113
-
95
+
114
96
if ( options . web ) {
115
97
throw new SchematicsException ( `Project is not configured for Angular Web, while --nativescript is set to false` ) ;
116
98
}
@@ -120,11 +102,11 @@ const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) =>
120
102
const parseComponentInfo = ( tree : Tree , options : ComponentOptions ) : ComponentInfo => {
121
103
// const path = `/${projectSettings.root}/${projectSettings.sourceRoot}/app`;
122
104
const component = new ComponentInfo ( ) ;
123
-
105
+
124
106
const parsedPath = parseName ( options . path || '' , options . name ) ;
125
107
126
108
component . name = dasherize ( parsedPath . name ) ;
127
- const className = `/${ component . name } .component.ts` ;
109
+ const className = `/${ component . name } .component.ts` ;
128
110
const templateName = `/${ component . name } .component.html` ;
129
111
130
112
tree . actions . forEach ( action => {
@@ -153,17 +135,10 @@ const renameWebTemplate = (tree: Tree, templatePath: string) => {
153
135
} ;
154
136
155
137
const removeWebTemplate = ( tree : Tree , context : SchematicContext , templatePath : string ) =>
156
- // tree.delete(templatePath);
157
138
filter (
158
139
( path : Path ) => ! path . match ( templatePath )
159
140
) ( tree , context )
160
141
161
- // const performNsModifications = (component: ComponentInfo) =>
162
- // (tree: Tree, context: SchematicContext) => {
163
- // insertModuleId(component.classPath)(tree);
164
- // return addNativeScriptFiles(component)(tree, context);
165
- // }
166
-
167
142
const addNativeScriptFiles = ( component : ComponentInfo ) => {
168
143
const parsedTemplate = parseName ( '' , component . templatePath ) ;
169
144
parsedTemplate . name = parsedTemplate . name . replace ( '.html' , `${ extensions . ns } .html` ) ;
@@ -180,4 +155,3 @@ const addNativeScriptFiles = (component: ComponentInfo) => {
180
155
return mergeWith ( templateSource ) ;
181
156
182
157
} ;
183
-
0 commit comments