skyline/src/pages/compute/containers/Instance/actions/RebuildSelect.jsx
Jingwei.Zhang 73e352c4d5 feat: Update import && export
1. Update import with @ to relative path
2. Update decorator export

Change-Id: Ib199a7c5eb54e1f30377af0349bca5959a1e54cc
2021-08-31 17:47:01 +08:00

173 lines
3.8 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 React from 'react';
import { inject, observer } from 'mobx-react';
import globalImageStore from 'stores/glance/image';
import globalServerStore from 'stores/nova/instance';
import { ModalAction } from 'containers/Action';
import {
isActiveOrShutOff,
isNotLocked,
isIsoInstance,
} from 'resources/instance';
import ImageType from 'components/ImageType';
import {
getImageOS,
getImageColumns,
canImageCreateInstance,
} from 'resources/image';
export class Rebuild extends ModalAction {
static id = 'rebuild';
static title = t('Rebuild Instance');
init() {
this.store = globalServerStore;
this.imageStore = globalImageStore;
this.getImages();
}
get name() {
return t('rebuild instance');
}
static get modalSize() {
return 'large';
}
get labelCol() {
return {
xs: { span: 6 },
sm: { span: 4 },
};
}
get images() {
const { imageTab } = this.state;
const images = (this.imageStore.list.data || []).filter((it) => {
if (!canImageCreateInstance(it)) {
return false;
}
if (imageTab) {
return getImageOS(it) === imageTab;
}
return true;
});
return images.map((it) => ({
...it,
key: it.id,
}));
}
getImages() {
this.imageStore.fetchList();
}
get systemTabs() {
const valueList = [
'centos',
'ubuntu',
'fedora',
'windows',
'debian',
'coreos',
'arch',
'freebsd',
'others',
];
return valueList.map((value) => {
const label =
value !== 'others'
? value.slice(0, 1).toUpperCase() + value.slice(1)
: t('Others');
return {
label,
value,
component: <ImageType type={value} title={value} />,
};
});
}
get defaultValue() {
const { name } = this.item;
const value = {
instance: name,
};
return value;
}
static policy = 'os_compute_api:servers:rebuild';
// todo:
static isRootVolumeInUse = () => true;
static allowed = (item) => {
const result =
isActiveOrShutOff(item) &&
isNotLocked(item) &&
this.isRootVolumeInUse(item) &&
!isIsoInstance(item);
return Promise.resolve(result);
};
onImageTabChange = (value) => {
this.setState({
imageTab: value,
});
};
get formItems() {
return [
{
name: 'instance',
label: t('Instance'),
type: 'label',
iconType: 'instance',
},
{
name: 'image',
label: t('Operating System'),
type: 'select-table',
datas: this.images,
isLoading: this.imageStore.list.isLoading,
required: true,
isMulti: false,
filterParams: [
{
label: t('Name'),
name: 'name',
},
],
columns: getImageColumns(this),
tabs: this.systemTabs,
defaultTabValue: this.systemTabs[0].value,
selectedLabel: t('Image'),
onTabChange: this.onImageTabChange,
},
];
}
onSubmit = (values) => {
const { id } = this.item;
const {
image: { selectedRowKeys = [] },
} = values;
return this.store.rebuild({ id, image: selectedRowKeys[0] });
};
}
export default inject('rootStore')(observer(Rebuild));