-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(layout): support configprovide darkAlgorithm
- Loading branch information
1 parent
a9a71d9
commit dabf05e
Showing
10 changed files
with
2,701 additions
and
525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,231 @@ | ||
import { EllipsisOutlined, PlusOutlined } from '@ant-design/icons'; | ||
import type { ActionType, ProColumns } from '@ant-design/pro-components'; | ||
import { ProTable, TableDropdown } from '@ant-design/pro-components'; | ||
import { Button, ConfigProvider, Dropdown, Space, Tag, theme } from 'antd'; | ||
import { useRef } from 'react'; | ||
import request from 'umi-request'; | ||
|
||
type GithubIssueItem = { | ||
url: string; | ||
id: number; | ||
number: number; | ||
title: string; | ||
labels: { | ||
name: string; | ||
color: string; | ||
}[]; | ||
state: string; | ||
comments: number; | ||
created_at: string; | ||
updated_at: string; | ||
closed_at?: string; | ||
}; | ||
|
||
const columns: ProColumns<GithubIssueItem>[] = [ | ||
{ | ||
dataIndex: 'index', | ||
valueType: 'indexBorder', | ||
width: 48, | ||
}, | ||
{ | ||
title: '标题', | ||
dataIndex: 'title', | ||
copyable: true, | ||
ellipsis: true, | ||
tip: '标题过长会自动收缩', | ||
formItemProps: { | ||
rules: [ | ||
{ | ||
required: true, | ||
message: '此项为必填项', | ||
}, | ||
], | ||
}, | ||
}, | ||
{ | ||
disable: true, | ||
title: '状态', | ||
dataIndex: 'state', | ||
filters: true, | ||
onFilter: true, | ||
ellipsis: true, | ||
valueType: 'select', | ||
valueEnum: { | ||
all: { text: '超长'.repeat(50) }, | ||
open: { | ||
text: '未解决', | ||
status: 'Error', | ||
}, | ||
closed: { | ||
text: '已解决', | ||
status: 'Success', | ||
disabled: true, | ||
}, | ||
processing: { | ||
text: '解决中', | ||
status: 'Processing', | ||
}, | ||
}, | ||
}, | ||
{ | ||
disable: true, | ||
title: '标签', | ||
dataIndex: 'labels', | ||
search: false, | ||
renderFormItem: (_, { defaultRender }) => { | ||
return defaultRender(_); | ||
}, | ||
render: (_, record) => ( | ||
<Space> | ||
{record.labels.map(({ name, color }) => ( | ||
<Tag color={color} key={name}> | ||
{name} | ||
</Tag> | ||
))} | ||
</Space> | ||
), | ||
}, | ||
{ | ||
title: '创建时间', | ||
key: 'showTime', | ||
dataIndex: 'created_at', | ||
valueType: 'date', | ||
sorter: true, | ||
hideInSearch: true, | ||
}, | ||
{ | ||
title: '创建时间', | ||
dataIndex: 'created_at', | ||
valueType: 'dateRange', | ||
hideInTable: true, | ||
search: { | ||
transform: (value) => { | ||
return { | ||
startTime: value[0], | ||
endTime: value[1], | ||
}; | ||
}, | ||
}, | ||
}, | ||
{ | ||
title: '操作', | ||
valueType: 'option', | ||
key: 'option', | ||
render: (text, record, _, action) => [ | ||
<a | ||
key="editable" | ||
onClick={() => { | ||
action?.startEditable?.(record.id); | ||
}} | ||
> | ||
编辑 | ||
</a>, | ||
<a href={record.url} target="_blank" rel="noopener noreferrer" key="view"> | ||
查看 | ||
</a>, | ||
<TableDropdown | ||
key="actionGroup" | ||
onSelect={() => action?.reload()} | ||
menus={[ | ||
{ key: 'copy', name: '复制' }, | ||
{ key: 'delete', name: '删除' }, | ||
]} | ||
/>, | ||
], | ||
}, | ||
]; | ||
|
||
export default () => { | ||
const actionRef = useRef<ActionType>(); | ||
const themeConfig = { | ||
token: { | ||
colorPrimary: 'red', | ||
borderRadius: 4, | ||
// TODO 可以验证下是否透明也行 | ||
colorBgElevated: 'white', | ||
}, | ||
algorithm: [theme.darkAlgorithm, theme.compactAlgorithm], | ||
}; | ||
return ( | ||
<ConfigProvider theme={themeConfig}> | ||
<ProTable<GithubIssueItem> | ||
columns={columns} | ||
actionRef={actionRef} | ||
cardBordered | ||
request={async (params = {}, sort, filter) => { | ||
console.log(sort, filter); | ||
return request<{ | ||
data: GithubIssueItem[]; | ||
}>('https://proapi.azurewebsites.net/github/issues', { | ||
params, | ||
}); | ||
}} | ||
editable={{ | ||
type: 'multiple', | ||
}} | ||
columnsState={{ | ||
persistenceKey: 'pro-table-singe-demos', | ||
persistenceType: 'localStorage', | ||
onChange(value) { | ||
console.log('value: ', value); | ||
}, | ||
}} | ||
rowKey="id" | ||
search={{ | ||
labelWidth: 'auto', | ||
}} | ||
options={{ | ||
setting: { | ||
listsHeight: 400, | ||
}, | ||
}} | ||
form={{ | ||
// 由于配置了 transform,提交的参与与定义的不同这里需要转化一下 | ||
syncToUrl: (values, type) => { | ||
if (type === 'get') { | ||
return { | ||
...values, | ||
created_at: [values.startTime, values.endTime], | ||
}; | ||
} | ||
return values; | ||
}, | ||
}} | ||
pagination={{ | ||
pageSize: 5, | ||
onChange: (page) => console.log(page), | ||
}} | ||
dateFormatter="string" | ||
headerTitle="高级表格" | ||
toolBarRender={() => [ | ||
<Button key="button" icon={<PlusOutlined />} type="primary"> | ||
新建 | ||
</Button>, | ||
<Dropdown | ||
key="menu" | ||
menu={{ | ||
items: [ | ||
{ | ||
label: '1st item', | ||
key: '1', | ||
}, | ||
{ | ||
label: '2nd item', | ||
key: '1', | ||
}, | ||
{ | ||
label: '3rd item', | ||
key: '1', | ||
}, | ||
], | ||
}} | ||
> | ||
<Button> | ||
<EllipsisOutlined /> | ||
</Button> | ||
</Dropdown>, | ||
]} | ||
/> | ||
</ConfigProvider> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.