Skip to content

Commit a05da80

Browse files
coding-iceafc163iceweb1999
authored
feat: support extra option (#734)
Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: iceweb1999 <1999iceweb@polyhedra.network>
1 parent d386b34 commit a05da80

File tree

7 files changed

+55
-4
lines changed

7 files changed

+55
-4
lines changed

assets/index.less

+11
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@
9999
color: #777 !important;
100100
}
101101
}
102+
103+
&-item {
104+
display: flex;
105+
align-items: center;
106+
107+
.@{menuPrefixCls}-extra {
108+
margin-left: auto;
109+
font-size: 14px;
110+
}
111+
}
112+
102113
&-item-divider {
103114
height: 1px;
104115
margin: 1px 0;

docs/examples/items.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export default () => (
1111
// MenuItem
1212
label: 'Top Menu Item',
1313
key: 'top',
14+
extra: '⌘B',
1415
},
1516
{
1617
// MenuGroup

src/Menu.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ const Menu = React.forwardRef<MenuRef, MenuProps>((props, ref) => {
248248
measureChildList: React.ReactElement[],
249249
] = React.useMemo(
250250
() => [
251-
parseItems(children, items, EMPTY_LIST, _internalComponents),
252-
parseItems(children, items, EMPTY_LIST, {}),
251+
parseItems(children, items, EMPTY_LIST, _internalComponents, prefixCls),
252+
parseItems(children, items, EMPTY_LIST, {}, prefixCls),
253253
],
254254
[children, items, _internalComponents],
255255
);

src/interface.ts

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ export interface MenuItemType extends ItemSharedProps {
4949

5050
itemIcon?: RenderIconType;
5151

52+
extra?: React.ReactNode;
53+
5254
key: React.Key;
5355

5456
// >>>>> Active

src/utils/nodeUtil.tsx

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { parseChildren } from './commonUtil';
99
function convertItemsToNodes(
1010
list: ItemType[],
1111
components: Required<Components>,
12+
prefixCls?: string,
1213
) {
1314
const {
1415
item: MergedMenuItem,
@@ -20,7 +21,7 @@ function convertItemsToNodes(
2021
return (list || [])
2122
.map((opt, index) => {
2223
if (opt && typeof opt === 'object') {
23-
const { label, children, key, type, ...restProps } = opt as any;
24+
const { label, children, key, type, extra, ...restProps } = opt as any;
2425
const mergedKey = key ?? `tmp-${index}`;
2526

2627
// MenuItemGroup & SubMenuItem
@@ -50,6 +51,9 @@ function convertItemsToNodes(
5051
return (
5152
<MergedMenuItem key={mergedKey} {...restProps}>
5253
{label}
54+
{(!!extra || extra === 0) && (
55+
<span className={`${prefixCls}-extra`}>{extra}</span>
56+
)}
5357
</MergedMenuItem>
5458
);
5559
}
@@ -64,6 +68,7 @@ export function parseItems(
6468
items: ItemType[] | undefined,
6569
keyPath: string[],
6670
components: Components,
71+
prefixCls?: string,
6772
) {
6873
let childNodes = children;
6974

@@ -76,7 +81,7 @@ export function parseItems(
7681
};
7782

7883
if (items) {
79-
childNodes = convertItemsToNodes(items, mergedComponents);
84+
childNodes = convertItemsToNodes(items, mergedComponents, prefixCls);
8085
}
8186

8287
return parseChildren(childNodes, keyPath);

tests/MenuItem.spec.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -190,5 +190,21 @@ describe('MenuItem', () => {
190190

191191
expect(container.querySelector('li')).toMatchSnapshot();
192192
});
193+
194+
it('should set extra to option', () => {
195+
const { container } = render(
196+
<Menu
197+
items={[
198+
{
199+
label: 'Top Menu Item',
200+
key: 'top',
201+
extra: '⌘B',
202+
},
203+
]}
204+
/>,
205+
);
206+
207+
expect(container.querySelector('li')).toMatchSnapshot();
208+
});
193209
});
194210
});

tests/__snapshots__/MenuItem.spec.tsx.snap

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3+
exports[`MenuItem overwrite default role should set extra to option 1`] = `
4+
<li
5+
class="rc-menu-item"
6+
data-menu-id="rc-menu-uuid-test-top"
7+
role="menuitem"
8+
tabindex="-1"
9+
>
10+
Top Menu Item
11+
<span
12+
class="rc-menu-extra"
13+
>
14+
⌘B
15+
</span>
16+
</li>
17+
`;
18+
319
exports[`MenuItem overwrite default role should set role to listitem 1`] = `
420
<li
521
class="rc-menu-item"

0 commit comments

Comments
 (0)