| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- import { message, Modal } from 'antd';
- import { useIntl } from 'umi';
- import type { Field } from '@formily/core';
- import { createForm } from '@formily/core';
- import { createSchemaField } from '@formily/react';
- import React, { useEffect, useState } from 'react';
- import * as ICONS from '@ant-design/icons';
- import { Form, FormItem, Input, Password, Select, Switch } from '@formily/antd';
- import type { ISchema } from '@formily/json-schema';
- import { PlusOutlined } from '@ant-design/icons';
- import { action } from '@formily/reactive';
- import type { Response } from '@/utils/typings';
- import { service } from '@/pages/system/User';
- interface Props {
- model: 'add' | 'edit' | 'query';
- data: Partial<UserItem>;
- close: () => void;
- }
- const Save = (props: Props) => {
- const { model } = props;
- const intl = useIntl();
- const [data, setData] = useState<Partial<UserItem>>(props.data);
- const getRole = () => service.queryRoleList();
- const getOrg = () => service.queryOrgList();
- const useAsyncDataSource = (api: any) => (field: Field) => {
- field.loading = true;
- api(field).then(
- action.bound!((resp: Response<any>) => {
- field.dataSource = resp.result?.map((item: Record<string, unknown>) => ({
- label: item.name,
- value: item.id,
- }));
- field.loading = false;
- }),
- );
- };
- const getUser = async () => {
- if (props.data.id) {
- console.log('id');
- const response: Response<UserItem> = await service.queryDetail(props.data?.id);
- if (response.status === 200) {
- const temp = response.result as UserItem;
- temp.orgIdList = (temp.orgList as { id: string; name: string }[]).map((item) => item.id);
- temp.roleIdList = (temp.roleList as { id: string; name: string }[]).map((item) => item.id);
- setData(temp);
- }
- }
- };
- useEffect(() => {
- if (model === 'edit') {
- getUser();
- } else {
- setData({});
- }
- }, [props.data, props.model]);
- const form = createForm({
- validateFirst: true,
- initialValues: data,
- });
- const SchemaField = createSchemaField({
- components: {
- FormItem,
- Input,
- Password,
- Switch,
- Select,
- },
- scope: {
- icon(name: any) {
- return React.createElement(ICONS[name]);
- },
- },
- });
- const schema: ISchema = {
- type: 'object',
- properties: {
- name: {
- title: intl.formatMessage({
- id: 'pages.system.name',
- defaultMessage: '姓名',
- }),
- type: 'string',
- 'x-decorator': 'FormItem',
- 'x-component': 'Input',
- 'x-component-props': {},
- 'x-decorator-props': {},
- name: 'name',
- required: true,
- },
- username: {
- title: intl.formatMessage({
- id: 'pages.system.username',
- defaultMessage: '用户名',
- }),
- type: 'string',
- 'x-decorator': 'FormItem',
- 'x-component': 'Input',
- 'x-component-props': {
- disabled: model === 'edit',
- },
- 'x-decorator-props': {},
- name: 'username',
- required: true,
- },
- password: {
- type: 'string',
- title: intl.formatMessage({
- id: 'pages.system.password',
- defaultMessage: '密码',
- }),
- 'x-decorator': 'FormItem',
- 'x-component': 'Password',
- 'x-component-props': {
- checkStrength: true,
- placeholder: '********',
- },
- required: model === 'add',
- 'x-reactions': [
- {
- dependencies: ['.confirmPassword'],
- fulfill: {
- state: {
- selfErrors:
- '{{$deps[0] && $self.value && $self.value !==$deps[0] ? "确认密码不匹配" : ""}}',
- },
- },
- },
- ],
- 'x-decorator-props': {},
- name: 'password',
- },
- confirmPassword: {
- type: 'string',
- title: intl.formatMessage({
- id: 'pages.system.confirmPassword',
- defaultMessage: '确认密码?',
- }),
- 'x-decorator': 'FormItem',
- 'x-component': 'Password',
- 'x-component-props': {
- checkStrength: true,
- placeholder: '********',
- },
- 'x-reactions': [
- {
- dependencies: ['.password'],
- fulfill: {
- state: {
- selfErrors:
- '{{$deps[0] && $self.value && $self.value !== $deps[0] ? "确认密码不匹配" : ""}}',
- },
- },
- },
- ],
- 'x-decorator-props': {},
- name: 'confirmPassword',
- required: model === 'add',
- },
- roleIdList: {
- title: '角色',
- 'x-decorator': 'FormItem',
- 'x-component': 'Select',
- 'x-component-props': {
- mode: 'multiple',
- },
- 'x-reactions': ['{{useAsyncDataSource(getRole)}}'],
- 'x-decorator-props': {
- addonAfter: (
- <a
- onClick={() => {
- const tab: any = window.open(`${origin}/#/system/role?save=true`);
- tab!.onTabSaveSuccess = (value: any) => {
- form.setFieldState('roleIdList', (state) => {
- state.dataSource = state.dataSource?.concat([
- { label: value.name, value: value.id },
- ]);
- });
- };
- }}
- >
- <PlusOutlined />
- </a>
- ),
- },
- },
- orgIdList: {
- title: '部门',
- 'x-decorator': 'FormItem',
- 'x-component': 'Select',
- 'x-component-props': {
- mode: 'multiple',
- showArrow: true,
- },
- 'x-decorator-props': {
- addonAfter: (
- <a
- onClick={() => {
- const tab: any = window.open(`${origin}/#/system/department?save=true`);
- tab!.onTabSaveSuccess = (value: any) => {
- form.setFieldState('orgIdList', (state) => {
- console.log(value, 'value');
- state.dataSource = state.dataSource?.concat([
- { label: value.name, value: value.id },
- ]);
- });
- };
- }}
- >
- <PlusOutlined />
- </a>
- ),
- },
- 'x-reactions': ['{{useAsyncDataSource(getOrg)}}'],
- },
- },
- };
- const save = async () => {
- const value = await form.submit<UserItem>();
- const temp: any = {};
- temp.id = value.id;
- temp.user = value;
- temp.orgIdList = value.orgIdList;
- temp.roleIdList = value.roleIdList;
- const response = await service.saveUser(temp, model);
- if (response.status === 200) {
- message.success(
- intl.formatMessage({
- id: 'pages.data.option.success',
- defaultMessage: '操作成功',
- }),
- );
- } else {
- message.error('操作失败!');
- }
- props.close();
- };
- return (
- <Modal
- title={intl.formatMessage({
- id: `pages.data.option.${model}`,
- defaultMessage: '编辑',
- })}
- maskClosable={false}
- visible={model !== 'query'}
- onCancel={props.close}
- onOk={save}
- >
- <Form form={form} labelCol={4} wrapperCol={18}>
- <SchemaField schema={schema} scope={{ useAsyncDataSource, getRole, getOrg }} />
- </Form>
- </Modal>
- );
- };
- export default Save;
|