本文整理汇总了TypeScript中app/reducers/tasks.selectActiveTasks函数的典型用法代码示例。如果您正苦于以下问题:TypeScript selectActiveTasks函数的具体用法?TypeScript selectActiveTasks怎么用?TypeScript selectActiveTasks使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了selectActiveTasks函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(private store: Store<fromRoot.AppState>, private controlService: ControlService) {
this.controls$ = this.store.select(fromControls.selectControlList);
this.selectedControl$ = this.store.select(fromControls.selectActiveControl);
this.selectedBinEstimator$ = this.store.select(fromControls.selectActiveBinEstimator);
this.activeAlleleSets$ = this.store.select(fromControls.selectActiveAlleleSets);
this.binEstimators$ = this.store.select(fromDB.selectBinEstimatorProjectList);
this.activeTasks$ = this.store.select(fromTasks.selectActiveTasks());
this.failedTasks$ = this.store.select(fromTasks.selectFailedTasks());
}
开发者ID:Greenhouse-Lab,项目名称:MicroSPAT,代码行数:9,代码来源:controls.ts
示例2: constructor
constructor(private store: Store<fromRoot.AppState>, private sampleService: SampleService) {
this.samples$ = this.store.select(fromDB.selectSampleList);
this.plates$ = this.store.select(fromDB.selectPlateEntities);
this.loci$ = this.store.select(fromDB.selectLocusEntities);
this.selectedSample$ = this.store.select(fromSample.selectActiveSample);
this.samplesLoading$ = this.store.select(fromSample.selectLoadingSamples);
// this.selectedSampleChannels$ = this.store.select(fromSample.selectSampleChannels);
this.selectedSampleChannels$ = this.store.select(fromSample.selectSampleChannelList)
this.selectedChannelID$ = this.store.select(fromSample.selectActiveChannelID);
this.selectedTrace$ = this.store.select(fromSample.selectActiveTrace);
this.selectedDomain$ = this.store.select(fromSample.selectActiveDomain);
this.selectedRange$ = this.store.select(fromSample.selectActiveRange);
// this.channelLoading$ = this.store.select(fromSample.selectChannelsLoading);
this.activeTasks$ = this.store.select(fromTasks.selectActiveTasks());
this.activeUploadSamplesTasks$ = this.store.select(fromTasks.selectActiveTasks('sample', 'upload_samples'));
this.failedUploadSamplesTasks$ = this.store.select(fromTasks.selectFailedTasks('sample', 'upload_samples'));
}
开发者ID:Greenhouse-Lab,项目名称:MicroSPAT,代码行数:21,代码来源:samples.ts
示例3: constructor
constructor(
private store: Store<fromRoot.AppState>,
private keyboardService: KeyboardService,
private plateService: PlateService,
private wellService: WellService,
private channelService: ChannelService,
private ladderService: LadderService,
private locusService: LocusService,
private locusSetService: LocusSetService,
private sampleService: SampleService,
private controlService: ControlService,
private projectChannelAnnotationsService: ProjectChannelAnnotationsService,
private projectSampleAnnotationsService: ProjectSampleAnnotationsService,
private sampleLocusAnnotationService: SampleLocusAnnotationService,
private binEstimatorProjectService: BinEstimatorProjectService,
private binEstimatorLocusParamsService: BinEstimatorLocusParamsService,
private binService: BinService,
private locusBinSetService: LocusBinSetService,
private artifactEstimatorProjectService: ArtifactEstimatorProjectService,
private artifactEstimatorLocusParamsService: ArtifactEstimatorLocusParamsService,
private locusArtifactEstimatorService: LocusArtifactEstimatorService,
private artifactEstimatorService: ArtifactEstimatorService,
private artifactEquationService: ArtifactEquationService,
private quantificationBiasEstimatorProjectService: QuantificationBiasEstimatorProjectService,
private quantifiactiobBiasEstimatorLocusParamsSerice: QuantificationBiasEstimatorLocusParamsService,
private controlSampleAssociationService: ControlSampleAssociationService,
private genotypingProjectService: GenotypingProjectService,
private genotypingLocusParamsService: GenotypingLocusParamsService,
private genotypeService: GenotypeService
) {
this.activeTasks$ = this.store.select(fromTasks.selectActiveTasks());
this.genotypingProjectService.list();
this.binEstimatorProjectService.list();
this.artifactEstimatorProjectService.list();
this.quantificationBiasEstimatorProjectService.list();
this.plateService.list();
this.ladderService.list();
this.locusService.list();
this.locusSetService.list();
this.sampleService.list();
this.controlService.list();
}
开发者ID:Greenhouse-Lab,项目名称:MicroSPAT,代码行数:46,代码来源:app.ts
示例4: constructor
constructor(
private store: Store<fromRoot.AppState>,
private plateService: PlateService
) {
this.store.dispatch(new plates.LoadingPlatesAction());
this.plates$ = this.store.select(fromPlates.selectPlateList);
this.newPlatesLoading$ = this.store.select(fromPlates.selectNewPlatesLoading);
this.selectedPlate$ = this.store.select(fromPlates.selectActivePlate);
this.plateLoading$ = this.store.select(fromPlates.selectPlateLoading);
this.ladderRenderable$ = this.store.select(fromPlates.selectRenderableLadderInfo);
this.channelRenderable$ = this.store.select(fromPlates.selectRenderableChannelInfo);
this.activeWell$ = this.store.select(fromPlates.selectActiveWell);
this.wellLoading$ = this.store.select(fromPlates.selectWellLoading);
this.ladderData$ = this.store.select(fromPlates.selectLadderData);
this.baseSizes$ = this.store.select(fromPlates.selectLadderBaseSizes);
this.peakIndices$ = this.store.select(fromPlates.selectLadderPeakIndices);
this.ladders$ = this.store.select(fromPlates.selectLadders);
this.shiftDown$ = this.store.select(fromKeyboard.selectShiftDown);
this.wellEntities$ = this.store.select(fromDB.selectWellEntities);
this.activeChannelTraces$ = this.store.select(fromPlates.selectActiveChannelTraces);
this.activeChannelsRange$ = this.store.select(fromPlates.selectActiveChannelRange);
this.activePlateDiagnosticTraces$ = this.store.select(fromPlates.selectActivePlateDiagnosticTraces);
this.activePlateDiagnosticDomain$ = this.store.select(fromPlates.selectActivePlateDiagnosticDomain);
this.activePlateDiagnosticRange$ = this.store.select(fromPlates.selectActivePlateDiagnosticRange);
this.activePlateDiagnosticLegend$ = this.store.select(fromPlates.selectActivePlateDiagnosticLegend);
this.activeLoci$ = this.store.select(fromPlates.selectActiveChannelLociList);
this.inactiveLoci$ = this.store.select(fromPlates.selectInactiveLoci);
this.activeLocusDomain$ = this.store.select(fromPlates.selectActiveLocusDomain);
this.selectedLocus$ = this.store.select(fromPlates.selectSelectedLocus);
this.activeRecalculatePlateLadderTasks$ = this.store.select(fromTasks.selectActiveTasks('plate', 'recalculate_ladder'));
this.failedRecalculatePlateLadderTasks$ = this.store.select(fromTasks.selectFailedTasks('plate', 'recalculate_ladder'));
this.activeRecalculateWellLadderTasks$ = this.store.select(fromTasks.selectActiveTasks('well', 'recalculate_ladder'));
this.failedRecalculateWellLadderTasks$ = this.store.select(fromTasks.selectFailedTasks('well', 'recalculate_ladder'));
this.activeUploadPlatesTasks$ = this.store.select(fromTasks.selectActiveTasks('plate', 'upload_plate'));
this.failedUploadPlatesTasks$ = this.store.select(fromTasks.selectFailedTasks('plate', 'upload_plate'));
this.activeUploadPlateMapTasks$ = this.store.select(fromTasks.selectActiveTasks('plate', 'upload_plate_map'));
this.failedUploadPlateMapTasks$ = this.store.select(fromTasks.selectFailedTasks('plate', 'upload_plate_map'));
this.activeDeletePlateTasks$ = this.store.select(fromTasks.selectActiveTasks('plate', 'delete'));
this.failedDeletePlateTasks$ = this.store.select(fromTasks.selectFailedTasks('plate', 'delete'));
this.activeTasks$ = this.store.select(fromTasks.selectActiveTasks());
this.createNonExistentSamples$ = this.store.select(fromPlates.selectCreateNonExistentSamples);
}
开发者ID:Greenhouse-Lab,项目名称:MicroSPAT,代码行数:48,代码来源:plates.ts
注:本文中的app/reducers/tasks.selectActiveTasks函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论