本文整理汇总了TypeScript中@ngrx/router.RouteParams.pluck方法的典型用法代码示例。如果您正苦于以下问题:TypeScript RouteParams.pluck方法的具体用法?TypeScript RouteParams.pluck怎么用?TypeScript RouteParams.pluck使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ngrx/router.RouteParams
的用法示例。
在下文中一共展示了RouteParams.pluck方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: ngOnInit
// I get called once when the component has been instantiated, after the inputs have
// been bound for the first time.
public ngOnInit() : void {
this.projectSubscription = this.routeParams
.pluck<string>( "projectId" )
.distinctUntilChanged()
.switchMap(
( projectId: string ) : Observable<{}> => {
this.isLoading = true;
this.projectId = +projectId;
return(
Observable.forkJoin(
this.projectService.getProjectById( this.projectId ),
this.screenService.getScreensByProjectId( this.projectId )
)
);
}
)
.subscribe(
( results: [ IProject, IScreen[] ] ) : void => {
this.isLoading = false;
this.project = results[ 0 ];
this.screens = results[ 1 ];
this.selectContextScreen();
},
( error: any ) : void => {
this.router.go( "/" );
}
)
;
this.screensSubscription = this.routeParams
.pluck<string>( "screenId" )
.distinctUntilChanged()
.subscribe(
( screenId: string ) : void => {
this.screenId = +screenId;
this.selectContextScreen();
}
)
;
}
示例2: constructor
constructor(private classRoomService: ClassRoomService, params$: RouteParams,
private router: Router, private subjectService: SubjectService,
private teacherService: TeacherService,
private toastyService: ToastyService,
private classRoomSubjectService: ClassRoomSubjectService) {
params$.pluck<number>('id').subscribe(id => this.id = id);
}
示例3: ngOnInit
ngOnInit() {
const uid = this.store.currentUser.uid;
/* URLからidを取得する */
this.store.disposable = this.params$.pluck<string>('id')
.do(noteid => {
if (noteid) {
/* 保存済みnoteを呼び出す */
this.store.disposable = this.service.readNote$(noteid)
.do(note => {
this.note = note;
this.oldNote = lodash.cloneDeep(this.note);
this.cd.markForCheck();
})
.subscribe();
} else {
/* noteを新規作成 */
this.note = this.service.createNote();
this.oldNote = lodash.cloneDeep(this.note);
this.cd.markForCheck();
}
})
.subscribe();
/* キー入力がある度にnoteを保存する */
this.store.disposable = Observable.fromEvent<KeyboardEvent>(this.el.nativeElement, 'keyup')
.debounceTime(1000)
.do(() => {
this.service.writeNote(this.note, this.oldNote);
})
.subscribe();
}
示例4: ngOnInit
// I get called once when the component has been instantiated, after the inputs have
// been bound for the first time.
public ngOnInit() : void {
this.routeParamsSubscription = this.routeParams
.pluck<string>( "projectId" )
.distinctUntilChanged()
.switchMap(
( value: string ) : Observable<IProject> => {
this.isLoading = true;
return( this.projectService.getProjectById( +value ) );
}
)
.subscribe(
( project: IProject ) : void => {
this.isLoading = false;
this.project = project;
},
( error: any ) : void => {
this.router.go( "/projects", { notFound: true } );
}
)
;
}
示例5: ngOnInit
// I get called once when the component has been instantiated, after the inputs have
// been bound for the first time.
public ngOnInit() : void {
this.queryParamsSubscription = this.queryParams
.pluck<string>( "filter" )
.distinctUntilChanged()
.filter(
( filter: string ) : boolean => {
return( this.filter !== ( filter || "" ) );
}
)
.subscribe(
( filter: string ) : void => {
this.filter = ( filter || "" );
this.applyFilter();
}
)
;
this.routeParamsSubscription = this.routeParams
.pluck<string>( "projectId" )
.distinctUntilChanged()
.switchMap(
( value: string ) : Observable<IScreen[]> => {
this.isLoading = true;
return( this.screenService.getScreensByProjectId( +value ) );
}
)
.subscribe(
( screens: IScreen[] ) : void => {
this.isLoading = false;
this.screens = screens;
this.filteredScreens = this.screens.map(
( screen: IScreen ) : IFilteredScreen => {
return({
screen: screen,
tags: [ screen.name.toLowerCase(), screen.filename.toLowerCase() ],
visible: false,
column: 0
});
}
);
this.applyFilter();
}
)
;
}
示例6: constructor
constructor(routeParams: RouteParams,
private hotelService: HotelService,
private router: Router) {
this.hotelId = routeParams.pluck<number>('id');
this.hotelId
.filter(id => !isNaN(id))
.flatMap(id => this.hotelService.getHotelAuthenticated(id)).subscribe(hotel => {
this.hotel = hotel;
});
}
示例7: ngOnInit
// I get called once when the component has been instantiated, after the inputs have
// been bound for the first time.
public ngOnInit() : void {
this.routeParamsSubscription = this.routeParams
.pluck<string>( "projectId" )
.distinctUntilChanged()
.subscribe(
( value: string ) : void => {
this.projectId = +value;
}
)
;
}
示例8: constructor
constructor(private gradingLevelService: GradingLevelService, params$: RouteParams,
router: Router, private toastyService: ToastyService) {
params$.pluck<number>('id').subscribe(id => this.id = id);
}
示例9: constructor
constructor(routeParams$:RouteParams) {
this.idParam$ = routeParams$.pluck<string>('id');
}
示例10: constructor
constructor(private examPeriodService: ExamPeriodService, params$: RouteParams,
router: Router, private termService: TermService, private toastyService: ToastyService) {
params$.pluck<number>('id').subscribe(id => this.id = id);
}