101 lines
2.5 KiB
JavaScript
101 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 { ModalAction } from 'containers/Action';
|
|
import globalProjectStore from 'stores/keystone/project';
|
|
import { QoSPolicyStore } from 'stores/neutron/qos-policy';
|
|
|
|
export class Create extends ModalAction {
|
|
static id = 'create_qos_policy';
|
|
|
|
static title = t('Create QoS Policy');
|
|
|
|
get name() {
|
|
return t('Create QoS Policy');
|
|
}
|
|
|
|
static policy = 'create_policy';
|
|
|
|
static aliasPolicy = 'neutron:create_policy';
|
|
|
|
static allowed = () => Promise.resolve(true);
|
|
|
|
init() {
|
|
this.store = new QoSPolicyStore();
|
|
this.isAdminPage && globalProjectStore.fetchList();
|
|
}
|
|
|
|
get defaultValue() {
|
|
return {
|
|
project_id: this.props.rootStore.user.project.id,
|
|
};
|
|
}
|
|
|
|
onSubmit = (values) => {
|
|
const { name, description, shared, is_default, project_id } = values;
|
|
return this.store.create({
|
|
name,
|
|
description,
|
|
shared,
|
|
is_default,
|
|
project_id,
|
|
});
|
|
};
|
|
|
|
get formItems() {
|
|
const projects = globalProjectStore.list.data.map((item) => ({
|
|
label: item.name,
|
|
value: item.id,
|
|
}));
|
|
|
|
return [
|
|
{
|
|
name: 'name',
|
|
label: t('Policy Name'),
|
|
type: 'input-name',
|
|
required: true,
|
|
withoutChinese: true,
|
|
},
|
|
{
|
|
name: 'project_id',
|
|
label: t('Project'),
|
|
type: 'select',
|
|
showSearch: true,
|
|
required: true,
|
|
options: projects,
|
|
hidden: !this.isAdminPage,
|
|
},
|
|
{
|
|
name: 'description',
|
|
label: t('Description'),
|
|
type: 'textarea',
|
|
},
|
|
{
|
|
name: 'shared',
|
|
label: t('Shared'),
|
|
type: 'switch',
|
|
hidden: !this.isAdminPage,
|
|
},
|
|
{
|
|
name: 'is_default',
|
|
label: t('Default Policy'),
|
|
type: 'switch',
|
|
hidden: !this.isAdminPage,
|
|
},
|
|
];
|
|
}
|
|
}
|
|
export default inject('rootStore')(observer(Create));
|