本文整理汇总了TypeScript中@angular-redux/store.NgRedux.dispatch方法的典型用法代码示例。如果您正苦于以下问题:TypeScript NgRedux.dispatch方法的具体用法?TypeScript NgRedux.dispatch怎么用?TypeScript NgRedux.dispatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular-redux/store.NgRedux
的用法示例。
在下文中一共展示了NgRedux.dispatch方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: logout
logout() {
this.ngRedux.dispatch({type: 'RESET_BOARD_STORE'});
this.ngRedux.dispatch({type: 'RESET_USER_STORE'});
this.ngRedux.dispatch({type: 'RESET_CARD_STORE'});
this.ngRedux.dispatch({type: 'RESET_LIST_STORE'});
this.ngRedux.dispatch({type: 'REMOVE_BOARD_PREFERENCES'});
localStorage.removeItem('token');
this.router.navigate(['/start']);
}
示例2:
this.userRef.valueChanges().subscribe((u: IUser) => {
if(u) {
this.user = u;
this.user.userId = this.userId;
let cats = !this.user.categories ? [] : this.user.categories;
this.ngRedux.dispatch({type: Actions.LOAD_USER, user: this.user});
this.ngRedux.dispatch({type: Actions.LOAD_CATEGORIES, categories: cats});
}
});
示例3: getCourses
getCourses() {
let coursesFetchedData: ICourse[] = [
{
id: 1,
name: 'Learning Flux',
topic: 'Flux',
},
{
id: 2,
name: 'Learning Angular2',
topic: 'Angular2',
},
{
id: 3,
name: 'Using Redux with Angular2',
topic: 'Angular2',
}
];
// store.dispatch({
// type: 'GET_COURSES_SUCCESS',
// coursesFetchedData
// });
/* note: in advanced version, this will be its own layer/injectable service - removed from Ng Data/http services */
this.ngRedux.dispatch({
type: 'GET_COURSES_SUCCESS',
coursesFetchedData,
});
};
示例4: beforeEach
beforeEach(inject([NgRedux], (store: NgRedux<AppState>) => {
const action = commandGelungen(
{type: CommandType.BeginneInventur, payload: {id: '4711'}, meta: {}},
{status: 200, message: 'OK'})
store.dispatch(action)
}))
示例5: removeCategory
removeCategory(cat: string) {
if (!this.userId) return;
var index = this.user.categories.indexOf(cat);
this.user.categories.splice(index, 1);
this.userRef.update(this.user)
.catch(error => console.log(error));
this.ngRedux.dispatch({type: Actions.REMOVE_CATEGORY, category: cat});
}
示例6: addCategory
addCategory(cat: string) {
if (!this.userId) return;
this.user.categories = !this.user.categories ? [] : this.user.categories;
this.user.categories.push(cat);
this.userRef.update(this.user)
.catch(error => console.log(error));
this.ngRedux.dispatch({type: Actions.ADD_CATEGORY, category: cat});
}
示例7: fetchResultDispatch
fetchResultDispatch(total: number) {
this.ngRedux.dispatch(this.fetchResult(total));
}
示例8: searchDispatch
searchDispatch(keyword: string) {
this.ngRedux.dispatch(this.search(keyword));
}
示例9:
this.photoService.getAllPhotos().subscribe(photos => {
this.ngRedux.dispatch({
type: REQUEST_PHOTOS_SUCCESS,
photos
})
}, error => console.log(error));
示例10: resetOrder
resetOrder() {
this.ngRedux.dispatch({
type: RESET_ORDER
});
}