forked from XiaoMi/hiui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cascader): 支持前缀后缀内容 (XiaoMi#2824)
* feat(cascader): 支持前置后置内容(XiaoMi#2821) * chore(cascader): 生成变更记录文件 * feat(check-cascader): 支持前置后置内容(XiaoMi#2821) * chore(check-cascader): 生成变更记录文件 --------- Co-authored-by: xiamiao <[email protected]>
- Loading branch information
1 parent
6e140e8
commit 5473ef4
Showing
8 changed files
with
142 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@hi-ui/hiui": patch | ||
--- | ||
|
||
feat(cascader): 支持前置后置内容 |
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,5 @@ | ||
--- | ||
"@hi-ui/hiui": patch | ||
--- | ||
|
||
feat(check-cascader): 支持前置后置内容 |
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,5 @@ | ||
--- | ||
"@hi-ui/check-cascader": minor | ||
--- | ||
|
||
feat: 支持前置后置内容 |
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,5 @@ | ||
--- | ||
"@hi-ui/cascader": minor | ||
--- | ||
|
||
feat: 支持前置后置内容 |
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,97 @@ | ||
import React from 'react' | ||
import CheckCascader from '../src' | ||
import { AppStoreOutlined, InfoCircleOutlined } from '@hi-ui/icons' | ||
/** | ||
* @title 前后内置元素 | ||
* @desc 将选择框与内置的其他元素组合使用 | ||
*/ | ||
export const Addon = () => { | ||
const [dataOnlyLeafCheckable] = React.useState(() => { | ||
const data = [ | ||
{ | ||
id: '手机', | ||
title: '手机t', | ||
children: [ | ||
{ | ||
id: '小米', | ||
title: '小米t', | ||
children: [ | ||
{ | ||
id: '小米3', | ||
title: '小米3t', | ||
}, | ||
{ | ||
id: '小米4', | ||
title: '小米4t', | ||
}, | ||
], | ||
}, | ||
{ | ||
id: '红米', | ||
title: '红米t', | ||
children: [ | ||
{ | ||
id: '红米3', | ||
title: '红米3t', | ||
}, | ||
{ | ||
id: '红米4', | ||
title: '红米4t', | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
id: '电视', | ||
title: '电视t', | ||
children: [ | ||
{ | ||
id: '小米电视4A', | ||
title: '小米电视4At', | ||
}, | ||
{ | ||
id: '小米电视4C', | ||
title: '小米电视4Ct', | ||
}, | ||
], | ||
}, | ||
] | ||
|
||
const getDataOnlyLeafCheckable = (data: any) => { | ||
return data.map((item: any) => { | ||
if (item.children) { | ||
item.checkable = item.checkable ?? false | ||
item.children = getDataOnlyLeafCheckable(item.children) | ||
} | ||
|
||
return item | ||
}) | ||
} | ||
|
||
const dataOnlyLeafCheckable = getDataOnlyLeafCheckable(data) | ||
|
||
return dataOnlyLeafCheckable | ||
}) | ||
|
||
return ( | ||
<> | ||
<h1>Addon</h1> | ||
<div className="cascader-basic__wrap"> | ||
<CheckCascader | ||
style={{ width: 240 }} | ||
searchable={false} | ||
// clearable | ||
placeholder="请选择品类" | ||
defaultValue={[['手机', '红米', '红米4']]} | ||
tagInputProps={{ wrap: true }} | ||
prefix={<AppStoreOutlined style={{ color: '#333' }} />} | ||
suffix={<InfoCircleOutlined style={{ color: '#333' }} />} | ||
changeOnSelect | ||
data={dataOnlyLeafCheckable} | ||
onChange={console.log} | ||
></CheckCascader> | ||
</div> | ||
</> | ||
) | ||
} |
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