You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
387 lines
12 KiB
TypeScript
387 lines
12 KiB
TypeScript
import {PlusOutlined} from '@ant-design/icons';
|
|
import type {ActionType, ProColumns} from '@ant-design/pro-components';
|
|
import {
|
|
FooterToolbar,
|
|
PageContainer,
|
|
ProTable,
|
|
} from '@ant-design/pro-components';
|
|
import {FormattedMessage, useIntl, useAccess, Access, history} from '@umijs/max';
|
|
import {Button, Popconfirm, message} from 'antd';
|
|
import React, {useRef, useState} from 'react';
|
|
import UpdateForm from './components/UpdateForm';
|
|
import CreateForm from "./components/CreateForm";
|
|
import SetPermissionForm from "./components/SetPermissionForm";
|
|
import {ColumnDrawer} from "./components/ColumnDrawer";
|
|
import {postRoleGetRoleList} from "@/services/system/Role";
|
|
// 列表操作栏组件
|
|
import TableActionCard from '@/components/TableActionCard';
|
|
import IsDelete from '@/components/TableActionCard/isDelete';
|
|
// 批量删除
|
|
import IsBatchDelete from '@/components/BatchOperation/isBatchDelete';
|
|
|
|
const RoleList: React.FC = () => {
|
|
/**
|
|
* @en-US Pop-up window of new window
|
|
* @zh-CN 新建窗口的弹窗
|
|
* */
|
|
const [createModalOpen, setCreateModalOpen] = useState<boolean>(false);
|
|
/**
|
|
* @en-US The pop-up window of the distribution update window
|
|
* @zh-CN 分布更新窗口的弹窗
|
|
* */
|
|
const [updateModalOpen, setUpdateModalOpen] = useState<boolean>(false);
|
|
const [showDetail, setShowDetail] = useState<boolean>(false);
|
|
/**
|
|
* @en-US International configuration
|
|
* @zh-CN 国际化配置
|
|
* */
|
|
const access = useAccess();
|
|
const intl = useIntl();
|
|
const actionRef = useRef<ActionType>();
|
|
const [currentRow, setCurrentRow] = useState<API.Role>();
|
|
const [selectedRowsState, setSelectedRows] = useState<API.Role[]>([]);
|
|
const [setPermissionModalOpen, setSetPermissionModalOpen] = useState<boolean>(false);
|
|
|
|
const handleUpdateModal = () => {
|
|
if (updateModalOpen) {
|
|
setUpdateModalOpen(false)
|
|
setCurrentRow(undefined)
|
|
} else {
|
|
setUpdateModalOpen(true)
|
|
}
|
|
}
|
|
const handleSetPermissionModal = () => {
|
|
if (setPermissionModalOpen) {
|
|
setSetPermissionModalOpen(false)
|
|
setCurrentRow(undefined)
|
|
} else {
|
|
setSetPermissionModalOpen(true)
|
|
}
|
|
}
|
|
const handleCreateModal = () => {
|
|
if (createModalOpen) {
|
|
setCreateModalOpen(false)
|
|
setCurrentRow(undefined)
|
|
} else {
|
|
setCreateModalOpen(true)
|
|
}
|
|
}
|
|
const handleColumnDrawer = () => {
|
|
if (showDetail) {
|
|
setShowDetail(false)
|
|
setCurrentRow(undefined)
|
|
} else {
|
|
setShowDetail(true)
|
|
}
|
|
}
|
|
const handleDestroy = async (selectedRow: API.Role) => {
|
|
// postRoleDeleteRole(selectedRow).then(() => {
|
|
// message.success(intl.formatMessage({id: 'common.success', defaultMessage: '$$$'}))
|
|
// actionRef.current?.reload()
|
|
// }).catch(() => {
|
|
// message.error(intl.formatMessage({id: 'common.failure', defaultMessage: '$$$'}))
|
|
// })
|
|
};
|
|
|
|
const columns: ProColumns<API.Role>[] = [
|
|
|
|
{
|
|
title: (<FormattedMessage
|
|
id="system.role.table.list.id"
|
|
defaultMessage="id"/>),
|
|
dataIndex: "id",
|
|
sorter: true,
|
|
// valueType: "digit",
|
|
filters: true, onFilter: true,
|
|
render: (dom, entity) => {
|
|
return (
|
|
<a
|
|
onClick={() => {
|
|
setCurrentRow(entity);
|
|
setShowDetail(true);
|
|
}}
|
|
>
|
|
{dom}
|
|
</a>
|
|
);
|
|
},
|
|
},
|
|
|
|
{
|
|
sorter: true,
|
|
title: (<FormattedMessage
|
|
id="system.role.table.list.name"
|
|
defaultMessage="$$$"/>),
|
|
dataIndex: "name",
|
|
hideInSearch: true,
|
|
},
|
|
|
|
|
|
{
|
|
title: (<FormattedMessage
|
|
id="system.role.table.list.code"
|
|
defaultMessage="$$$"/>),
|
|
dataIndex: "code",
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: (<FormattedMessage
|
|
id="system.role.table.list.sort"
|
|
defaultMessage="$$$"/>),
|
|
dataIndex: "sort",
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: (<FormattedMessage
|
|
id="system.role.table.list.status"
|
|
defaultMessage="$$$"/>),
|
|
dataIndex: "status",
|
|
valueEnum: {
|
|
true: {
|
|
text: (<FormattedMessage
|
|
id="common.open"
|
|
defaultMessage="$$"/>),
|
|
status: 'Success'
|
|
},
|
|
false: {
|
|
text: (<FormattedMessage
|
|
id="common.close"
|
|
defaultMessage="$$"/>),
|
|
status: 'Error'
|
|
}
|
|
},
|
|
filters: true, onFilter: true,
|
|
},
|
|
|
|
{
|
|
title: <FormattedMessage id="pages.searchTable.titleOption" defaultMessage="Operating"/>,
|
|
dataIndex: 'option',
|
|
valueType: 'option',
|
|
fixed: 'right',
|
|
render: (_, record) => [
|
|
<TableActionCard
|
|
key="TableActionCardRef"
|
|
renderActions={[
|
|
{
|
|
key: 'update',
|
|
renderDom: (
|
|
<Button
|
|
key="update"
|
|
type="link"
|
|
size="small"
|
|
onClick={() => {
|
|
setUpdateModalOpen(true);
|
|
setCurrentRow(record);
|
|
}}
|
|
>
|
|
<FormattedMessage id="pages.searchTable.update" defaultMessage="Update" />
|
|
</Button>
|
|
),
|
|
},
|
|
{
|
|
key: 'set_permissions',
|
|
renderDom: (
|
|
<Button
|
|
key="set_permissions"
|
|
type="link"
|
|
size="small"
|
|
onClick={() => {
|
|
setSetPermissionModalOpen(true);
|
|
setCurrentRow(record);
|
|
}}
|
|
>
|
|
<FormattedMessage id="system.role.table.action.set_permission" defaultMessage="$$$" />
|
|
</Button>
|
|
),
|
|
},
|
|
{
|
|
key: 'destroy',
|
|
renderDom: (
|
|
<IsDelete
|
|
deleteApi={() => {
|
|
handleDestroy(record).then(() => {});
|
|
}}
|
|
></IsDelete>
|
|
),
|
|
},
|
|
]}
|
|
></TableActionCard>
|
|
// <Access accessible={access.canUpdate(history.location.pathname)} key={`${history.location.pathname}-add`}>
|
|
// <a
|
|
// key="update"
|
|
// onClick={() => {
|
|
// setUpdateModalOpen(true);
|
|
// setCurrentRow(record);
|
|
// }}
|
|
// >
|
|
// <FormattedMessage id="pages.searchTable.update" defaultMessage="Update"/>
|
|
// </a>
|
|
// <a key="set_permissions"
|
|
// onClick={() => {
|
|
// setSetPermissionModalOpen(true)
|
|
// setCurrentRow(record)
|
|
// }}
|
|
// ><FormattedMessage id="system.role.table.action.set_permission" defaultMessage="$$$"></FormattedMessage></a>
|
|
// <Popconfirm
|
|
// placement="topLeft"
|
|
// title={intl.formatMessage({ id: 'common.tip.title', defaultMessage: '$$$' })}
|
|
// description={intl.formatMessage({
|
|
// id: 'common.modal.table.delete.content',
|
|
// defaultMessage: '$$$',
|
|
// })}
|
|
// okText={intl.formatMessage({ id: 'common.yes', defaultMessage: '$$$' })}
|
|
// cancelText={intl.formatMessage({ id: 'common.no', defaultMessage: '$$$' })}
|
|
// onConfirm={() => {
|
|
// handleDestroy(record).then(() => {});
|
|
// }}
|
|
// >
|
|
// <Button key="destroy" type="link" size="small" danger>
|
|
// <FormattedMessage id="pages.searchTable.destroy" defaultMessage="Destroy" />
|
|
// </Button>
|
|
// </Popconfirm>
|
|
// </Access>
|
|
],
|
|
},];
|
|
return (
|
|
<PageContainer>
|
|
<ProTable<API.Role, API.ApiListResponse>
|
|
headerTitle={intl.formatMessage({
|
|
id: 'pages.searchTable.title',
|
|
defaultMessage: '$$$',
|
|
})}
|
|
options={{fullScreen: true, setting: true, density: true, reload: true}}
|
|
actionRef={actionRef}
|
|
rowKey="key"
|
|
search={{
|
|
labelWidth: 'auto',
|
|
}}
|
|
pagination={{
|
|
showSizeChanger: true,
|
|
pageSize: 10,
|
|
}}
|
|
columnsState={{
|
|
persistenceKey: 'api_list',
|
|
persistenceType: 'localStorage'
|
|
}}
|
|
toolBarRender={() => [
|
|
<Access accessible={access.canUpdate(history.location.pathname)} key={`${history.location.pathname}-add`}>
|
|
<Button
|
|
type="primary"
|
|
key="primary"
|
|
onClick={() => {
|
|
setCreateModalOpen(true);
|
|
}}
|
|
>
|
|
<PlusOutlined/> <FormattedMessage id="pages.searchTable.new" defaultMessage="New"/>
|
|
</Button>
|
|
</Access>
|
|
]}
|
|
request={async (params = {}, sort) => {
|
|
const {current, ...rest} = params
|
|
const reqParams = {
|
|
page: current,
|
|
desc: false,
|
|
orderKey: "",
|
|
...rest,
|
|
}
|
|
if ('status' in reqParams){
|
|
reqParams.status = reqParams.status === 'true'
|
|
}
|
|
if (sort && Object.keys(sort).length) {
|
|
reqParams.orderKey = Object.keys(sort)[0]
|
|
let sort_select = sort[reqParams.orderKey]
|
|
reqParams.desc = sort_select === 'descend';
|
|
}
|
|
let resp = await postRoleGetRoleList({...reqParams})
|
|
return {
|
|
data: resp.data.list.map((v: API.Role)=>{ return {...v, key: v.id}}),
|
|
success: resp.success,
|
|
total: resp.data.total,
|
|
current: resp.data.page,
|
|
pageSize: resp.data.pageSize
|
|
};
|
|
}}
|
|
columns={columns}
|
|
rowSelection={{
|
|
onChange: (_, selectedRows) => {
|
|
setSelectedRows(selectedRows);
|
|
},
|
|
}}
|
|
tableAlertOptionRender={() => {
|
|
return (
|
|
<>
|
|
{selectedRowsState?.length > 0 && (
|
|
<IsBatchDelete
|
|
deleteApi={() => {
|
|
const ids = selectedRowsState.map((v: API.Role) => {
|
|
return v.id
|
|
})
|
|
// deleteRoleDeleteRolesByIds({ids: ids as number[]}).then(() => {
|
|
// actionRef.current?.reloadAndRest?.();
|
|
// })
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}}
|
|
/>
|
|
{selectedRowsState?.length > 0 && (
|
|
<FooterToolbar
|
|
extra={
|
|
<div>
|
|
<FormattedMessage id="pages.searchTable.chosen" defaultMessage="Chosen"/>{' '}
|
|
<a style={{fontWeight: 600}}>{selectedRowsState.length}</a>{' '}
|
|
<FormattedMessage id="pages.searchTable.item" defaultMessage="$$$"/>
|
|
</div>
|
|
}
|
|
>
|
|
<Button
|
|
onClick={async () => {
|
|
const ids = selectedRowsState.map((v: API.Role) => {
|
|
return v.id
|
|
})
|
|
// deleteRoleDeleteRolesByIds({ids: ids as number[]}).then(() => {
|
|
// actionRef.current?.reloadAndRest?.();
|
|
// })
|
|
}}
|
|
>
|
|
<FormattedMessage
|
|
id="pages.searchTable.batchDeletion"
|
|
defaultMessage="Batch deletion"
|
|
/>
|
|
</Button>
|
|
</FooterToolbar>
|
|
)}
|
|
<CreateForm
|
|
createModalOpen={createModalOpen}
|
|
values={currentRow || {}}
|
|
handleModal={handleCreateModal}
|
|
reload={actionRef.current?.reload}
|
|
/>
|
|
<UpdateForm
|
|
updateModalOpen={updateModalOpen}
|
|
values={currentRow || {}}
|
|
handleModal={handleUpdateModal}
|
|
reload={actionRef.current?.reload}
|
|
/>
|
|
<SetPermissionForm
|
|
updateModalOpen={setPermissionModalOpen}
|
|
values={currentRow || {}}
|
|
handleModal={handleSetPermissionModal}
|
|
reload={actionRef.current?.reload}
|
|
/>
|
|
|
|
<ColumnDrawer
|
|
handleDrawer={handleColumnDrawer}
|
|
isShowDetail={showDetail}
|
|
columns={columns}
|
|
currentRow={currentRow}
|
|
/>
|
|
|
|
</PageContainer>
|
|
);
|
|
};
|
|
|
|
export default RoleList;
|