1. Add attach network action for zun container 2. Add detach network action for zun container Change-Id: I0cfe22e22b1f6ba3ce525a24ca1f95e5fcb098ec
101 lines
2.4 KiB
JavaScript
101 lines
2.4 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 globalContainersStore from 'src/stores/zun/containers';
|
|
import { ModalAction } from 'containers/Action';
|
|
import { checkItemAction } from 'resources/zun/container';
|
|
import { networkColumns } from 'resources/neutron/network';
|
|
|
|
export class DetachNetwork extends ModalAction {
|
|
static id = 'DetachNetwork';
|
|
|
|
static title = t('Detach Network');
|
|
|
|
init() {
|
|
this.store = globalContainersStore;
|
|
}
|
|
|
|
static get modalSize() {
|
|
return 'large';
|
|
}
|
|
|
|
getModalSize() {
|
|
return 'large';
|
|
}
|
|
|
|
get name() {
|
|
return t('Detach Network');
|
|
}
|
|
|
|
get networks() {
|
|
const { networks = [] } = this.item;
|
|
return networks;
|
|
}
|
|
|
|
get defaultValue() {
|
|
const { name } = this.item;
|
|
const value = {
|
|
instance: name,
|
|
};
|
|
return value;
|
|
}
|
|
|
|
static policy = 'container:network_detach';
|
|
|
|
aliasPolicy = 'zun:container:network_detach';
|
|
|
|
static allowed = (item) => {
|
|
return checkItemAction(item, 'network_attach_detach');
|
|
};
|
|
|
|
disabledNetwork = (it) => {
|
|
const { networks } = this.item;
|
|
return networks.includes(it.id);
|
|
};
|
|
|
|
get formItems() {
|
|
return [
|
|
{
|
|
name: 'instance',
|
|
label: t('Instance'),
|
|
type: 'label',
|
|
iconType: 'instance',
|
|
},
|
|
{
|
|
name: 'networks',
|
|
label: t('Networks'),
|
|
type: 'select-table',
|
|
data: this.networks,
|
|
columns: networkColumns(this),
|
|
filterParams: [
|
|
{
|
|
label: t('Name'),
|
|
name: 'name',
|
|
},
|
|
],
|
|
required: true,
|
|
},
|
|
];
|
|
}
|
|
|
|
onSubmit = (values) => {
|
|
const { networks } = values;
|
|
const network = networks.selectedRowKeys[0];
|
|
return this.store.detachNetwork(this.item.id, { network });
|
|
};
|
|
}
|
|
|
|
export default inject('rootStore')(observer(DetachNetwork));
|