Files
skyline-console/src/pages/identity/containers/Project/actions/Create.jsx
Jingwei.Zhang 19fab7e17f fix: Fix refresh data in detail page after finishing action
1. Fix edit metadata success hint
2. Fix manage image metadata success hint
3. Fix create/edit project modal top padding
4. Fix edit user modal top padding
5. Fix create user group modal top padding
6. Fix refresh list page in detail after finishing action in detail page
7. Remove useless fetch in base detail page

Change-Id: I80fe346cc0be4bdb8607088578fa2acb446cf084
2021-08-25 09:50:37 +00:00

160 lines
3.9 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 globalDomainStore from 'stores/keystone/domain';
import globalProjectStore from 'stores/keystone/project';
import { regex } from 'utils/validate';
import { statusTypes } from 'utils/constants';
@inject('rootStore')
@observer
class CreateForm extends ModalAction {
constructor(props) {
super(props);
this.state = {
domain: null,
newUserRoles: {},
newGroupRoles: {},
};
}
init() {
this.domainStore = globalDomainStore;
this.projectStore = globalProjectStore;
this.getDomains();
}
getDomains() {
this.domainStore.fetchDomain();
}
static id = 'project-create';
static title = t('Create Project');
static policy = [
'identity:create_project',
'identity:list_domains',
'identity:list_roles',
'identity:list_users',
];
static allowed() {
return Promise.resolve(true);
}
get name() {
return t('Create Project');
}
get defaultValue() {
const data = {
domain_id: 'default',
enabled: statusTypes[0],
};
return data;
}
get domainList() {
const {
rootStore: { baseDomains },
} = this.props;
const { domains } = this.domainStore;
const domainList = (domains || []).filter(
(it) =>
baseDomains.indexOf(it.name) === -1 || it.id === this.item.domain_id
);
return domainList.map((it) => ({
label: it.name,
value: it.id,
}));
}
get checkedList() {
const { domains } = this.domainStore;
return (domains || []).map((it) => ({
label: it.name,
value: it.id,
}));
}
checkName = (rule, value) => {
if (!value) {
return Promise.reject(t('Please input'));
}
const { nameRegexWithoutChinese } = regex;
if (!nameRegexWithoutChinese.test(value)) {
return Promise.reject(t('Invalid: Project name can not be chinese'));
}
const {
list: { data },
} = this.projectStore;
const nameUsed = data.filter((it) => it.name === value);
if (nameUsed[0]) {
return Promise.reject(t('Invalid: Project name can not be duplicated'));
}
return Promise.resolve();
};
get formItems() {
return [
{
name: 'name',
label: t('Name'),
type: 'input',
required: true,
placeholder: t('Please input name'),
validator: this.checkName,
extra: t('Project') + t('Name can not be duplicated'),
maxLength: 30,
},
{
name: 'domain_id',
label: t('Affiliated Domain'),
type: 'select',
checkOptions: this.checkedList,
checkBoxInfo: t('Show All Domain'),
options: this.domainList,
required: true,
},
{
name: 'enabled',
label: t('Status'),
type: 'radio',
optionType: 'default',
options: statusTypes,
required: true,
isWrappedValue: true,
tip: t(
'Disabling the project will have a negative impact. If the users associated with the project are only assigned to the project, they will not be able to log in'
),
},
{
name: 'description',
label: t('Description'),
type: 'textarea',
},
];
}
onSubmit = (values) => {
values.enabled = values.enabled.value;
return this.projectStore.create(values);
};
}
export default CreateForm;