本文整理汇总了TypeScript中@nakedobjects/services.UrlManagerService类的典型用法代码示例。如果您正苦于以下问题:TypeScript UrlManagerService类的具体用法?TypeScript UrlManagerService怎么用?TypeScript UrlManagerService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了UrlManagerService类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: ngOnInit
ngOnInit() {
const errorWrapper = this.context.getError();
if (errorWrapper) {
this.customComponentService.getCustomErrorComponent(errorWrapper.category, errorWrapper.httpErrorCode || errorWrapper.clientErrorCode).then((c: Type<any>) => {
const childComponent = this.componentFactoryResolver.resolveComponentFactory(c);
this.parent.createComponent(childComponent);
});
} else {
this.loggerService.warn('No error found returning to home page');
this.urlManagerService.setHomeSinglePane();
}
}
示例2:
this.activatedRouteDataSub = this.activatedRoute.data.subscribe((data: ICustomActivatedRouteData) => {
this.arData = data;
this.paneId = data.pane;
this.paneType = data.paneType;
this.paneIdName = this.paneId === 1 ? 'pane1' : 'pane2';
if (!this.paneRouteDataSub) {
this.paneRouteDataSub =
this.urlManager.getPaneRouteDataObservable(this.paneId)
.subscribe((paneRouteData: PaneRouteData) => {
if (!paneRouteData.isEqualIgnoringReload(this.lastPaneRouteData)) {
// only remove messages if something more than reload flag has changed
this.context.clearMessages();
this.context.clearWarnings();
}
if (this.doSetup(paneRouteData)) {
this.lastPaneRouteData = paneRouteData;
this.setup(paneRouteData);
}
});
}
});
示例3: forEach
forEach(open, id => this.urlManager.setCollectionMemberState(id, CollectionViewState.Summary));
示例4: isList
protected isList(): boolean {
return this.urlManager.isList();
}
示例5: isHome
// Helpers delegating to RouteData
protected isHome(): boolean {
return this.urlManager.isHome();
}
示例6: routeData
protected routeData(): PaneRouteData {
return this.urlManager.getRouteData().pane1;
}
示例7:
doClick: () => {
const menuId = link.link.rel().parms[0].value;
this.urlManager.setMenu(menuId!, link.paneId);
},