Created
September 29, 2018 16:48
-
-
Save whisher/928b9afe5f021105fc6c086a6adbeef4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Store { | |
private subject = new BehaviorSubject<State>(state); | |
private store = this.subject.asObservable().distinctUntilChanged(); | |
get value() { | |
return this.subject.value; | |
} | |
select<T>(name: string): Observable<T> { | |
return this.store.pluck(name); | |
} | |
set(name: string, state: any) { | |
this.subject.next({ ...this.value, [name]: state }); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment