Add loading when SelectTable component fetch data Change-Id: If36411e74304061d305fb61b7954e1e564ce40e1
146 lines
3.6 KiB
JavaScript
146 lines
3.6 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 { VolumeStore } from 'stores/cinder/volume';
|
|
import globalServerStore from 'stores/nova/instance';
|
|
import { ModalAction } from 'containers/Action';
|
|
import { volumeStatus, isOsDisk, isAttachIsoVolume } from 'resources/volume';
|
|
import {
|
|
isShutOff,
|
|
isNotLocked,
|
|
isNotDeleting,
|
|
isIronicInstance,
|
|
} from 'resources/instance';
|
|
|
|
@inject('rootStore')
|
|
@observer
|
|
export default class DetachIsoVolume extends ModalAction {
|
|
static id = 'detach-iso-volume';
|
|
|
|
static title = t('Detach Iso Volume');
|
|
|
|
init() {
|
|
this.store = globalServerStore;
|
|
this.volumeStore = new VolumeStore();
|
|
this.getVolumes();
|
|
}
|
|
|
|
get name() {
|
|
return t('Detach Iso Volume');
|
|
}
|
|
|
|
static get modalSize() {
|
|
return 'large';
|
|
}
|
|
|
|
getModalSize() {
|
|
return 'large';
|
|
}
|
|
|
|
get volumes() {
|
|
return (this.volumeStore.list.data || []).filter(
|
|
(item) => !isOsDisk(item) && isAttachIsoVolume(item)
|
|
);
|
|
}
|
|
|
|
getVolumes() {
|
|
const { id } = this.item;
|
|
this.volumeStore.fetchList({ serverId: id });
|
|
}
|
|
|
|
get defaultValue() {
|
|
const { name } = this.item;
|
|
const value = {
|
|
instance: name,
|
|
};
|
|
return value;
|
|
}
|
|
|
|
static policy = 'os_compute_api:os-volumes-attachments:delete';
|
|
|
|
// static hasDataVolume = item => item.volumes_attached && item.volumes_attached.length > 1
|
|
|
|
// static allowed = item => Promise.resolve(isActive(item) && isNotDeleting(item) && isNotLocked(item) && this.hasDataVolume(item))
|
|
static allowed = (item, containerProps) => {
|
|
const { isAdminPage } = containerProps;
|
|
return Promise.resolve(
|
|
!isAdminPage &&
|
|
isNotDeleting(item) &&
|
|
isNotLocked(item) &&
|
|
!isIronicInstance(item) &&
|
|
isShutOff(item)
|
|
);
|
|
};
|
|
|
|
get formItems() {
|
|
return [
|
|
{
|
|
name: 'instance',
|
|
label: t('Instance'),
|
|
type: 'label',
|
|
iconType: 'instance',
|
|
},
|
|
{
|
|
name: 'volumes',
|
|
label: t('Volume'),
|
|
type: 'select-table',
|
|
required: true,
|
|
datas: this.volumes,
|
|
isLoading: this.volumeStore.list.isLoading,
|
|
isMulti: true,
|
|
filterParams: [
|
|
{
|
|
label: t('Name'),
|
|
name: 'name',
|
|
},
|
|
],
|
|
columns: [
|
|
{
|
|
title: t('Name'),
|
|
dataIndex: 'name',
|
|
},
|
|
{
|
|
title: t('Size'),
|
|
dataIndex: 'size',
|
|
render: (value) => `${value}GB`,
|
|
},
|
|
{
|
|
title: t('Status'),
|
|
dataIndex: 'status',
|
|
render: (value) => volumeStatus[value] || '-',
|
|
},
|
|
{
|
|
title: t('Type'),
|
|
dataIndex: 'volume_type',
|
|
},
|
|
{
|
|
title: t('Created At'),
|
|
dataIndex: 'created_at',
|
|
valueRender: 'sinceTime',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
}
|
|
|
|
onSubmit = (values) => {
|
|
const { id } = this.item;
|
|
const {
|
|
volumes: { selectedRowKeys = [] },
|
|
} = values;
|
|
return this.store.detachVolume({ id, volumes: selectedRowKeys });
|
|
};
|
|
}
|