Skip to content

Instantly share code, notes, and snippets.

@whisher
Created September 29, 2018 16:48
Show Gist options
  • Save whisher/928b9afe5f021105fc6c086a6adbeef4 to your computer and use it in GitHub Desktop.
Save whisher/928b9afe5f021105fc6c086a6adbeef4 to your computer and use it in GitHub Desktop.
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