|
@@ -1,7 +1,7 @@
|
|
|
import React,{Component} from 'react';
|
|
|
import ProForm, {ModalForm, ProFormText} from "@ant-design/pro-form";
|
|
|
import {addRole,getPermissions,getRolePermission} from '../services/API';
|
|
|
-import {Button, message,Tree,Form} from "antd";
|
|
|
+import {Spin, message,Tree,Form} from "antd";
|
|
|
|
|
|
class EditRole extends Component{
|
|
|
constructor(props) {
|
|
@@ -11,9 +11,11 @@ class EditRole extends Component{
|
|
|
expandedKeys:'',
|
|
|
checkedKeys: '',
|
|
|
selectedKeys: '',
|
|
|
- rolePermission: {},
|
|
|
+ roleNameLoading: false,
|
|
|
+ treeLoading: false,
|
|
|
}
|
|
|
this.finishAddRole = this.finishAddRole.bind(this);
|
|
|
+ this.finishUpdataRole = this.finishUpdataRole.bind(this);
|
|
|
this.onSelect = this.onSelect.bind(this);
|
|
|
this.onExpand = this.onExpand.bind(this);
|
|
|
this.onCheck = this.onCheck.bind(this);
|
|
@@ -23,7 +25,7 @@ class EditRole extends Component{
|
|
|
|
|
|
finishAddRole= async (value)=>{
|
|
|
let obj = Object.assign({permissions:this.state.checkedKeys || []},value)
|
|
|
- message.loading({content:'加载中...',key:'finishAddRole'})
|
|
|
+ message.loading({content:'添加中...',key:'finishAddRole'})
|
|
|
const msg = await addRole({data:JSON.stringify(obj)});
|
|
|
if(msg.error.length === 0){
|
|
|
message.success({content:'添加成功',key:'finishAddRole',duration:2.5});
|
|
@@ -31,6 +33,21 @@ class EditRole extends Component{
|
|
|
this.props.onCancel();
|
|
|
}else{
|
|
|
message.error({content:msg.error[0].message,key:'finishAddRole',duration:2.5});
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ finishUpdataRole= async (value)=>{
|
|
|
+ value.id = this.props.roleData.id;
|
|
|
+ let obj = Object.assign({permissions:this.state.checkedKeys || []},value)
|
|
|
+ message.loading({content:'修改中...',key:'finishUpdataRole'})
|
|
|
+ const msg = await addRole({data:JSON.stringify(obj)});
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ message.success({content:'修改成功',key:'finishUpdataRole',duration:2.5});
|
|
|
+ this.props.tableRef.current.reload();
|
|
|
+ this.props.onCancel();
|
|
|
+ }else{
|
|
|
+ message.error({content:msg.error[0].message,key:'finishUpdataRole',duration:2.5});
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -54,6 +71,9 @@ class EditRole extends Component{
|
|
|
}
|
|
|
|
|
|
getPermissionsList= async ()=>{
|
|
|
+ this.setState({
|
|
|
+ treeLoading: true,
|
|
|
+ })
|
|
|
const msg = await getPermissions();
|
|
|
if(msg.error.length === 0){
|
|
|
let data = await this.handlePermissionsList(msg.data.one);
|
|
@@ -63,6 +83,9 @@ class EditRole extends Component{
|
|
|
}else{
|
|
|
message.error(msg.error[0].message)
|
|
|
}
|
|
|
+ this.setState({
|
|
|
+ treeLoading: false,
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
handlePermissionsList=(menuList)=>{
|
|
@@ -82,6 +105,10 @@ class EditRole extends Component{
|
|
|
}
|
|
|
|
|
|
getRolePermission =async ()=>{
|
|
|
+ this.setState({
|
|
|
+ roleNameLoading: true,
|
|
|
+ treeLoading: true,
|
|
|
+ })
|
|
|
const msg = await getRolePermission(this.props.roleData.id);
|
|
|
if(msg.error.length === 0){
|
|
|
let idList=[];
|
|
@@ -91,7 +118,6 @@ class EditRole extends Component{
|
|
|
)
|
|
|
})
|
|
|
this.setState({
|
|
|
- rolePermission:msg.data,
|
|
|
checkedKeys:idList,
|
|
|
})
|
|
|
this.formRef.current.setFieldsValue({
|
|
@@ -100,6 +126,10 @@ class EditRole extends Component{
|
|
|
}else{
|
|
|
message.error(msg.error[0].message);
|
|
|
}
|
|
|
+ this.setState({
|
|
|
+ roleNameLoading: false,
|
|
|
+ treeLoading: false,
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
componentDidUpdate(prevProps, prevState, snapshot) {
|
|
@@ -120,36 +150,41 @@ class EditRole extends Component{
|
|
|
preserve={false}
|
|
|
title={roleData?'编辑角色':'添加角色'}
|
|
|
modalProps={{
|
|
|
- onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
|
|
|
+ destroyOnClose: true,
|
|
|
+ onCancel: (e) => {e.stopPropagation();this.setState({checkedKeys:''});this.props.onCancel();},
|
|
|
}}
|
|
|
- onFinish={this.finishAddRole}
|
|
|
+ onFinish={roleData?this.finishUpdataRole : this.finishAddRole}
|
|
|
>
|
|
|
<ProForm.Group>
|
|
|
- <ProFormText
|
|
|
- rules={
|
|
|
- [{
|
|
|
- required: true,
|
|
|
- message: '请输入角色名称!',
|
|
|
- }]
|
|
|
- }
|
|
|
- width="xl"
|
|
|
- name="roleName"
|
|
|
- label="角色名称:"
|
|
|
- placeholder="请输入角色名称"
|
|
|
- />
|
|
|
+ <Spin spinning={this.state.roleNameLoading}>
|
|
|
+ <ProFormText
|
|
|
+ rules={
|
|
|
+ [{
|
|
|
+ required: true,
|
|
|
+ message: '请输入角色名称!',
|
|
|
+ }]
|
|
|
+ }
|
|
|
+ width="xl"
|
|
|
+ name="roleName"
|
|
|
+ label="角色名称:"
|
|
|
+ placeholder="请输入角色名称"
|
|
|
+ />
|
|
|
+ </Spin>
|
|
|
</ProForm.Group>
|
|
|
<Form.Item name='tree'>
|
|
|
- <Tree
|
|
|
- checkable
|
|
|
- onExpand={this.onExpand}
|
|
|
- expandedKeys={this.state.expandedKeys}
|
|
|
- autoExpandParent={this.state.autoExpandParent}
|
|
|
- onCheck={this.onCheck}
|
|
|
- checkedKeys={this.state.checkedKeys}
|
|
|
- onSelect={this.onSelect}
|
|
|
- selectedKeys={this.state.selectedKeys}
|
|
|
- treeData={this.state.permissionsList}
|
|
|
- />
|
|
|
+ <Spin spinning={this.state.treeLoading}>
|
|
|
+ <Tree
|
|
|
+ checkable
|
|
|
+ onExpand={this.onExpand}
|
|
|
+ expandedKeys={this.state.expandedKeys}
|
|
|
+ autoExpandParent={this.state.autoExpandParent}
|
|
|
+ onCheck={this.onCheck}
|
|
|
+ checkedKeys={this.state.checkedKeys}
|
|
|
+ onSelect={this.onSelect}
|
|
|
+ selectedKeys={this.state.selectedKeys}
|
|
|
+ treeData={this.state.permissionsList}
|
|
|
+ />
|
|
|
+ </Spin>
|
|
|
</Form.Item>
|
|
|
</ModalForm>
|
|
|
)
|