Add admin state up switches to various steps of load balancer creation. Change-Id: Ib4008fa1e1d00921040320e2d1b44d35bd38cef9
104 lines
2.5 KiB
JavaScript
104 lines
2.5 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 Base from 'components/Form';
|
|
import { Algorithm, algorithmTip } from 'resources/octavia/pool';
|
|
import { poolProtocols } from 'resources/octavia/lb';
|
|
|
|
export class PoolStep extends Base {
|
|
get title() {
|
|
return 'Pool Detail';
|
|
}
|
|
|
|
get name() {
|
|
return 'Pool Detail';
|
|
}
|
|
|
|
get isStep() {
|
|
return true;
|
|
}
|
|
|
|
get filterOptions() {
|
|
const { context: { listener_protocol = '' } = {} } = this.props;
|
|
return poolProtocols.filter((it) => listener_protocol.includes(it.label));
|
|
}
|
|
|
|
allowed = () => Promise.resolve();
|
|
|
|
init() {
|
|
this.state = {
|
|
pool_lb_algorithm: undefined,
|
|
};
|
|
}
|
|
|
|
handleAlgorithmChange = (e) => {
|
|
this.setState({
|
|
pool_lb_algorithm: e,
|
|
});
|
|
};
|
|
|
|
get defaultValue() {
|
|
return {
|
|
pool_admin_state_up: true,
|
|
};
|
|
}
|
|
|
|
get formItems() {
|
|
const {pool_lb_algorithm} = this.state;
|
|
return [
|
|
{
|
|
name: 'pool_name',
|
|
label: t('Pool Name'),
|
|
type: 'input-name',
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'pool_description',
|
|
label: t('Pool Description'),
|
|
type: 'textarea',
|
|
},
|
|
{
|
|
name: 'pool_lb_algorithm',
|
|
label: t('Pool Algorithm'),
|
|
type: 'select',
|
|
options: Algorithm,
|
|
onChange: this.handleAlgorithmChange,
|
|
extra: pool_lb_algorithm && algorithmTip[pool_lb_algorithm],
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'pool_protocol',
|
|
label: t('Pool Protocol'),
|
|
type: 'select',
|
|
options: this.filterOptions,
|
|
onChange: () => {
|
|
this.updateContext({
|
|
health_type: '',
|
|
});
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'pool_admin_state_up',
|
|
label: t('Admin State Up'),
|
|
type: 'switch',
|
|
tip: t('Defines the admin state of the pool.'),
|
|
},
|
|
];
|
|
}
|
|
}
|
|
|
|
export default inject('rootStore')(observer(PoolStep));
|