skyline/src/pages/compute/containers/Instance/Detail/index.jsx
Jingwei.Zhang 166f8b5ed7 fix: Fix folder name
Fix folder name to avoid docker build failure

Change-Id: I810e948e46698f4acd92b1c3da7e7b200fa8a7dc
2021-06-24 11:49:24 +08:00

158 lines
3.9 KiB
JavaScript

// Copyright 2021 99cloud
//
// 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 {
instanceStatus,
lockRender,
isIronicInstance,
} from 'resources/instance';
import { ServerStore } from 'stores/nova/instance';
import Base from 'containers/TabDetail';
import Volumes from 'pages/storage/containers/Volume';
import FloatingIps from 'pages/network/containers/FloatingIp';
import VirtualAdapter from 'pages/network/containers/VirtualAdapter';
import actionConfigsRecycleBin from 'pages/management/containers/RecycleBin/actions';
import { toJS } from 'mobx';
import BaseDetail from './BaseDetail';
import SecurityGroup from './SecurityGroup';
import actionConfigs from '../actions';
@inject('rootStore')
@observer
export default class InstanceDetail extends Base {
get name() {
return t('instance');
}
get policy() {
return 'os_compute_api:servers:show';
}
get isRecycleBinDetail() {
const { pathname } = this.props.location;
return pathname.indexOf('recycle-bin') >= 0;
}
get listUrl() {
if (this.isRecycleBinDetail) {
return this.getUrl('/management/recycle-bin');
}
return this.getUrl('/compute/instance');
}
get actionConfigs() {
if (this.isRecycleBinDetail) {
return actionConfigsRecycleBin;
}
return this.isAdminPage
? actionConfigs.adminActions
: actionConfigs.actionConfigs;
}
get detailData() {
const { id, status } = this.store.detail;
if (id && status === 'soft_deleted' && !this.isRecycleBinDetail) {
this.routing.push(
`${this.getUrl('/management/recycle-bin')}/detail/${id}`
);
}
return toJS(this.store.detail) || {};
}
getActionData() {
return this.detailData.itemInList || {};
}
updateFetchParams = (params) => ({
...params,
isRecycleBinDetail: this.isRecycleBinDetail,
});
get detailInfos() {
return [
{
title: t('Name'),
dataIndex: 'name',
},
{
title: t('Status'),
dataIndex: 'status',
render: (data) => instanceStatus[data] || data,
},
{
title: t('Lock Status'),
dataIndex: 'locked',
render: lockRender,
},
{
title: t('Project ID'),
dataIndex: 'tenant_id',
hidden: !this.isAdminPage,
},
{
title: t('Created At'),
dataIndex: 'created',
valueRender: 'toLocalTime',
},
{
title: t('Host'),
dataIndex: 'OS-EXT-SRV-ATTR:host',
// dataIndex: 'host',
},
];
}
get tabs() {
const tabs = [
{
title: t('BaseDetail'),
key: 'BaseDetail',
component: BaseDetail,
},
{
title: t('Volume'),
key: 'volumes',
component: Volumes,
},
{
title: t('Interface'),
key: 'interface',
component: VirtualAdapter,
},
{
title: t('Floating IPs'),
key: 'floatingIps',
component: FloatingIps,
},
{
title: t('Security Group'),
key: 'securityGroup',
component: SecurityGroup,
},
];
if (isIronicInstance(this.detailData)) {
return tabs.filter(
(it) =>
it.key !== 'volumes' && it.key !== 'snapshots' && it.key !== 'monitor'
);
}
return tabs;
}
init() {
this.store = new ServerStore();
}
}