skyline/src/pages/identity/containers/Project/actions/Edit.jsx
Jingwei.Zhang 6f9bb5808e refactor: Refactor project
1. Refactor project store
2. Fix projects in domain detail page
3. Update user group role info in user detail page: add auth by group info
4. Refactor create project
5. Refactor edit project: remove project enabled display
6. Refactor manage user: transfer support filter data by domain name
7. Refactor manage user group: transfer support filter data by domain name
8. Update formItem prop wrapperCol to support more flexible styles

Change-Id: I4720277053242c66c49dcde067444e60c14598da
2022-06-08 10:40:59 +08:00

91 lines
2.2 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';
export class EditForm extends ModalAction {
init() {
this.store = globalProjectStore;
this.store.fetchList();
}
static id = 'project-edit';
static title = t('Edit');
static policy = 'identity:update_project';
static allowed() {
return Promise.resolve(true);
}
get name() {
const { name } = this.item;
return `${t('Edit')} ${name}`;
}
get defaultValue() {
const { name, description, enabled } = this.item;
return {
name,
description,
enabled,
};
}
checkName = (rule, value) => {
if (!value) {
return Promise.reject(t('Please input'));
}
const {
list: { data },
} = this.store;
const nameUsed = data.find(
(i) => i.name === value && i.id !== this.item.id
);
if (nameUsed) {
return Promise.reject(t('Invalid: Project name can not be duplicated'));
}
return Promise.resolve();
};
get formItems() {
return [
{
name: 'name',
label: t('Name'),
type: 'input',
value: this.item.name,
validator: this.checkName,
extra: t('Project') + t('Name can not be duplicated'),
},
{
name: 'description',
label: t('Description'),
type: 'textarea',
},
];
}
onSubmit = (values) => {
const { description, name } = values;
const { id } = this.item;
return globalProjectStore.edit({ id, description, name });
};
}
export default inject('rootStore')(observer(EditForm));