skyline/src/pages/container-infra/containers/ClusterTemplates/Detail/index.jsx
xusongfu e03182b072 fix: fix the magnum quotai and other infos
1. support volume quota when create cluster instance
2. fix subnet reseting when fixed network changed
3. show project id of cluster template if switch to administrator platform

Closes-Bug: #2000141
Change-Id: I6cb59e9f74c76cb3d0901e89c9bf01d48a85d747
2022-12-20 16:25:07 +08:00

79 lines
1.9 KiB
JavaScript

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import { inject, observer } from 'mobx-react';
import Base from 'containers/TabDetail';
import globalClusterTemplateStore from 'src/stores/magnum/clusterTemplates';
import BaseDetail from './BaseDetail';
import actionConfigs from '../actions';
export class ClusterTemplateDetail extends Base {
init() {
this.store = globalClusterTemplateStore;
}
get name() {
return t('Cluster Template Detail');
}
get listUrl() {
return this.getRoutePath('clusterTemplate');
}
get policy() {
return 'clustertemplate:detail';
}
get actionConfigs() {
if (this.isAdminPage) {
return actionConfigs.actionConfigsAdmin;
}
return actionConfigs.actionConfigs;
}
get detailInfos() {
return [
{
title: t('Name'),
dataIndex: 'name',
},
{
title: t('Created'),
dataIndex: 'created_at',
valueRender: 'toLocalTime',
},
{
title: t('Updated'),
dataIndex: 'updated_at',
valueRender: 'toLocalTime',
},
{
title: t('Project ID'),
dataIndex: 'project_id',
hidden: !this.isAdminPage,
},
];
}
get tabs() {
return [
{
title: t('Detail'),
key: 'general_info',
component: BaseDetail,
},
];
}
}
export default inject('rootStore')(observer(ClusterTemplateDetail));