本文整理汇总了TypeScript中core/navigation.StateConfigProvider.addRewriteRule方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StateConfigProvider.addRewriteRule方法的具体用法?TypeScript StateConfigProvider.addRewriteRule怎么用?TypeScript StateConfigProvider.addRewriteRule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core/navigation.StateConfigProvider
的用法示例。
在下文中一共展示了StateConfigProvider.addRewriteRule方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: require
//.........这里部分代码省略.........
},
};
const securityGroupSummary: INestedState = {
url: `/firewalls?${stateConfigProvider.paramsToQuery(filterModelConfig)}`,
name: 'firewalls',
views: {
nav: {
template: '<security-group-filter app="$resolve.app"></security-group-filter>',
},
master: {
templateUrl: require('../securityGroup/all.html'),
controller: 'AllSecurityGroupsCtrl',
controllerAs: 'ctrl',
},
},
params: stateConfigProvider.buildDynamicParams(filterModelConfig),
data: {
pageTitleSection: {
title: FirewallLabels.get('Firewalls'),
},
},
};
const standaloneFirewall: INestedState = {
name: 'firewallDetails',
url: '/firewallDetails/:provider/:accountId/:region/:vpcId/:name',
params: {
vpcId: {
value: null,
squash: true,
},
},
views: {
'main@': {
templateUrl: require('../presentation/standalone.view.html'),
controllerProvider: [
'$stateParams',
($stateParams: StateParams) => {
return SkinService.getValue(
$stateParams.provider,
$stateParams.accountId,
'securityGroup.detailsController',
);
},
],
controllerAs: 'ctrl',
},
},
resolve: {
resolvedSecurityGroup: [
'$stateParams',
($stateParams: StateParams) => {
return {
name: $stateParams.name,
accountId: $stateParams.accountId,
provider: $stateParams.provider,
region: $stateParams.region,
vpcId: $stateParams.vpcId,
};
},
],
app: [
'$stateParams',
'securityGroupReader',
($stateParams: StateParams, securityGroupReader: SecurityGroupReader): ng.IPromise<Application> => {
// we need the application to have a firewall index (so rules get attached and linked properly)
// and its name should just be the name of the firewall (so cloning works as expected)
return securityGroupReader.loadSecurityGroups().then(securityGroupsIndex => {
const application: Application = ApplicationModelBuilder.createStandaloneApplication($stateParams.name);
application['securityGroupsIndex'] = securityGroupsIndex; // TODO: refactor the securityGroupsIndex out
return application;
});
},
],
},
data: {
pageTitleDetails: {
title: `${FirewallLabels.get('Firewall')} Details`,
nameParam: 'name',
accountParam: 'accountId',
regionParam: 'region',
},
history: {
type: 'securityGroups',
},
},
};
applicationStateProvider.addInsightState(securityGroupSummary);
applicationStateProvider.addInsightDetailState(firewallDetails);
stateConfigProvider.addToRootState(standaloneFirewall);
stateConfigProvider.addRewriteRule(
'/applications/{application}/securityGroups',
'/applications/{application}/firewalls',
);
stateConfigProvider.addRewriteRule(/(.+?)\/securityGroupDetails\/(.*)/, ($match: string[]) => {
return `${$match[1]}/firewallDetails/${$match[2]}`;
});
},