本文整理汇总了TypeScript中@spinnaker/core.ApplicationStateProvider类的典型用法代码示例。如果您正苦于以下问题:TypeScript ApplicationStateProvider类的具体用法?TypeScript ApplicationStateProvider怎么用?TypeScript ApplicationStateProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ApplicationStateProvider类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
(applicationStateProvider: ApplicationStateProvider) => {
const kubernetesResourceDetails: INestedState = {
name: 'kubernetesResource',
url: '/manifest/:provider/:accountId/:region/:kubernetesResource',
views: {
'detail@../insight': {
component: KubernetesResourceDetails,
$type: 'react',
},
},
resolve: {
accountId: ['$stateParams', ($stateParams: IKubernetesResourceStateParams) => $stateParams.accountId],
kubernetesResource: ['$stateParams', ($stateParams: IKubernetesResourceStateParams) => $stateParams],
},
data: {
pageTitleDetails: {
title: 'Generic Kubernetes Resource Details',
nameParam: 'kubernetesResource',
accountParam: 'accountId',
regionParam: 'region',
},
history: {
type: 'kubernetesResource',
},
},
};
applicationStateProvider.addInsightDetailState(kubernetesResourceDetails);
},
示例2:
]).config((applicationStateProvider: ApplicationStateProvider) => {
const targetGroupDetails: INestedState = {
name: 'targetGroupDetails',
url: '/targetGroupDetails/:provider/:accountId/:region/:vpcId/:loadBalancerName/:name',
params: {
vpcId: {
value: null,
squash: true,
},
},
views: {
'detail@../insight': {
templateProvider: ['$templateCache', '$stateParams', 'cloudProviderRegistry',
($templateCache: ng.ITemplateCacheService,
$stateParams: StateParams,
cloudProviderRegistry: CloudProviderRegistry) => {
return $templateCache.get(cloudProviderRegistry.getValue($stateParams.provider, 'loadBalancer.targetGroupDetailsTemplateUrl'));
}],
controllerProvider: ['$stateParams', 'cloudProviderRegistry',
($stateParams: StateParams,
cloudProviderRegistry: CloudProviderRegistry) => {
return cloudProviderRegistry.getValue($stateParams.provider, 'loadBalancer.targetGroupDetailsController');
}],
controllerAs: 'ctrl'
}
},
resolve: {
targetGroup: ['$stateParams', ($stateParams: StateParams) => {
return {
loadBalancerName: $stateParams.loadBalancerName,
name: $stateParams.name,
accountId: $stateParams.accountId,
region: $stateParams.region,
vpcId: $stateParams.vpcId
};
}]
},
data: {
pageTitleDetails: {
title: 'Target Group Details',
nameParam: 'name',
accountParam: 'accountId',
regionParam: 'region'
},
}
};
applicationStateProvider.addInsightDetailState(targetGroupDetails);
});
示例3:
(applicationStateProvider: ApplicationStateProvider) => {
const targetGroupDetails: INestedState = {
name: 'targetGroupDetails',
url: '/targetGroupDetails/:provider/:accountId/:region/:vpcId/:loadBalancerName/:name',
params: {
vpcId: {
value: null,
squash: true,
},
},
views: {
'detail@../insight': {
component: TargetGroupDetails,
$type: 'react',
},
},
resolve: {
accountId: ['$stateParams', ($stateParams: StateParams) => $stateParams.accountId],
targetGroup: [
'$stateParams',
($stateParams: StateParams) => {
return {
loadBalancerName: $stateParams.loadBalancerName,
name: $stateParams.name,
accountId: $stateParams.accountId,
region: $stateParams.region,
vpcId: $stateParams.vpcId,
};
},
],
},
data: {
pageTitleDetails: {
title: 'Target Group Details',
nameParam: 'name',
accountParam: 'accountId',
regionParam: 'region',
},
},
};
applicationStateProvider.addInsightDetailState(targetGroupDetails);
},