Skip to content
This repository was archived by the owner on Feb 17, 2024. It is now read-only.

Commit 6f41ca6

Browse files
committed
feat: source
1 parent 732deef commit 6f41ca6

35 files changed

+495
-1056
lines changed

src/app/_helpers/ng-module.ts

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
export function exportNgModules(config) {
3+
if (!config || !config.ngModules) return config;
4+
// mutate
5+
config.ngModules.forEach(ngModule => {
6+
if (hasPropAndValues(ngModule, 'routes'))
7+
mergeConfigs(config, ngModule, 'routes')
8+
9+
if (hasPropAndValues(ngModule, 'directives'))
10+
mergeConfigs(config, ngModule, 'directives')
11+
12+
if (hasPropAndValues(ngModule, 'pipes'))
13+
mergeConfigs(config, ngModule, 'pipes')
14+
15+
if (hasPropAndValues(ngModule, 'providers'))
16+
mergeConfigs(config, ngModule, 'providers')
17+
18+
});
19+
20+
return config;
21+
}
22+
23+
export function mergeConfigs(config, ngModule, prop) {
24+
config[prop] = [].concat(config[prop], ngModule[prop]).filter(mod => Boolean(mod));
25+
}
26+
27+
export function hasPropAndValues(config, prop) {
28+
return config[prop] !== undefined && Array.isArray(config[prop]) && config[prop].length;
29+
}

src/app/about/about.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
template: `
5+
About
6+
`
7+
})
8+
export class About {
9+
constructor() {
10+
}
11+
}

src/app/about/index.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import {exportNgModules} from '../_helpers/ng-module';
2+
3+
import {About} from './about';
4+
5+
export * from './about';
6+
export default exportNgModules({
7+
entryComponent: About,
8+
routes: [],
9+
directives: [],
10+
providers: [],
11+
pipes: []
12+
});

src/app/app.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<navbar>
2+
<h1>Hello Angular 2 and Webpack 2</h1>
3+
</navbar>
4+
5+
<main>
6+
<a href="#" [routerLink]="['']">Home</a>
7+
<a href="#" [routerLink]="['about']">About</a>
8+
<a href="#" [routerLink]="['yolo']">Yolo</a>
9+
<reactive></reactive>
10+
11+
<div>Your Content Here</div>
12+
<router-outlet></router-outlet>
13+
14+
</main>
15+
16+
<footer>AngularClass</footer>

src/app/app.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { Component } from '@angular/core';
2+
3+
4+
@Component({})
5+
export class App {
6+
constructor() {
7+
console.log('Hello Angular 2 Webpack 2');
8+
}
9+
}
10+

src/app/bootstrap.ts

-32
This file was deleted.

src/app/components/app.ts

-210
This file was deleted.

src/app/components/todo.ts

-71
This file was deleted.

0 commit comments

Comments
 (0)