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

Commit 30f5b00

Browse files
committed
feat: AppStore
1 parent a34b697 commit 30f5b00

File tree

6 files changed

+77
-8
lines changed

6 files changed

+77
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@angularclass/resolve-angular-routes": "^1.0.3",
3838
"@types/core-js": "^0.9.28",
3939
"@types/node": "^4.0.30",
40-
"awesome-typescript-loader": "^2.0.1",
40+
"awesome-typescript-loader": "^2.1.1",
4141
"es6-promise": "^3.1.2",
4242
"es6-shim": "^0.35.0",
4343
"ignore-loader": "^0.1.1",

src/app/app-store.ts

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
import { Injectable } from '@angular/core';
2+
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
3+
4+
export interface State {
5+
// include your state here
6+
counter: number;
7+
}
8+
9+
const defaultState = {
10+
// include your initial state here
11+
counter: 0
12+
}
13+
14+
const _store = new BehaviorSubject<State>(defaultState);
15+
16+
@Injectable()
17+
export class AppStore {
18+
private _store = _store;
19+
changes = this._store
20+
.asObservable()
21+
.distinctUntilChanged()
22+
23+
setState(state: State) {
24+
this._store.next(state);
25+
}
26+
27+
getState(): State {
28+
return this._clone(this._store.value);
29+
}
30+
31+
getValue(prop?: string): any {
32+
var state = this._clone(this._store.value);
33+
return prop ? state[prop] : state;
34+
}
35+
36+
setValue(prop?: string, value?: any): any {
37+
var state = this._clone(this._store.value);
38+
state[prop] = value;
39+
this._store.next(state);
40+
}
41+
42+
purge() {
43+
this._store.next(defaultState);
44+
}
45+
46+
_clone(obj) {
47+
return JSON.parse(JSON.stringify(obj));
48+
}
49+
50+
toJSON() {
51+
return this._store.value;
52+
}
53+
}

src/app/app.html

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ <h1>Hello Angular 2 and Webpack 2</h1>
1111
<div>Your Content Here</div>
1212
<router-outlet></router-outlet>
1313

14+
<pre>this.appStore = {{ appStore | json }}</pre>
15+
1416
</main>
1517

1618
<footer>AngularClass</footer>

src/app/app.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Component } from '@angular/core';
2-
2+
import { AppStore } from './app-store';
33

44
@Component({})
55
export class App {
6-
constructor() {
6+
constructor(public appStore: AppStore) {
77
console.log('Hello Angular 2 Webpack 2');
88
}
99
}

src/app/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import homeModule from './home';
55
import reactiveModule from './reactive';
66

77
import { App } from './app';
8+
import { AppStore } from './app-store';
89
import { ROUTES, ROUTE_PROVIDERS } from './routes';
910

1011
export * from './app';
@@ -21,7 +22,8 @@ export default exportNgModules({
2122
],
2223
directives: [],
2324
providers: [
24-
...ROUTE_PROVIDERS
25+
...ROUTE_PROVIDERS,
26+
AppStore
2527
],
2628
pipes: []
2729
});

src/app/reactive/reactive.ts

+16-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { Component, ViewChild, Output, Input, EventEmitter } from '@angular/core
22
import { ObserveViewChild } from '@angularclass/observe-decorators';
33
import { Observable } from 'rxjs/Rx'
44

5+
import { AppStore } from '../app-store';
6+
57
//normal component with @Output event
68
@Component({
79
selector: 'incrementer',
@@ -22,7 +24,7 @@ class Incrementer {
2224
],
2325
template: `
2426
<div>
25-
<h4>Child Total Count: {{ counterChange | async }}</h4>
27+
<h4>Child Total Count: {{ appStore.changes.pluck('counter') | async }}</h4>
2628
<incrementer></incrementer>
2729
<button #decrement>decrement</button>
2830
</div>
@@ -44,6 +46,10 @@ export class AngularclassApp {
4446
.startWith(0)
4547
.scan((total: number, value: number) => total + value, 0);
4648

49+
constructor(public appStore: AppStore) {
50+
51+
}
52+
4753
}
4854

4955
@Component({
@@ -81,10 +87,16 @@ export class AcApp {
8187
`
8288
})
8389
export class App {
84-
counter = 0;
85-
// who needs |async
90+
get counter() {
91+
return this.appStore.getValue('counter');
92+
}
93+
@ObserveViewChild(AcApp) counterChange = new EventEmitter();
94+
constructor(public appStore: AppStore) {
95+
96+
97+
this.counterChange.subscribe(data => this.appStore.setValue('counter', data));
98+
}
8699
ngOnInit() {
87-
// where are all of my subscribes? ;)
88100
}
89101

90102
}

0 commit comments

Comments
 (0)