Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #6124 : Dropdown navigation like PrimeVue #6430

Merged
23 changes: 19 additions & 4 deletions components/lib/dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,22 @@ export const Dropdown = React.memo(
when: overlayVisibleState
});

function flatOptions(options) {
melloware marked this conversation as resolved.
Show resolved Hide resolved
return (options || []).reduce((result, option, index) => {
result.push({ optionGroup: option, group: true, index, code: option.code, label: option.label });

const optionGroupChildren = getOptionGroupChildren(option);

optionGroupChildren && optionGroupChildren.forEach((o) => result.push(o));

return result;
}, []);
}

const getVisibleOptions = () => {

const options = props.optionGroupLabel ? flatOptions(props.options) : props.options

if (hasFilter && !isLazy) {
const filterValue = filterState.trim().toLocaleLowerCase(props.filterLocale);
const searchFields = props.filterBy ? props.filterBy.split(',') : [props.optionLabel || 'label'];
Expand All @@ -73,13 +88,13 @@ export const Dropdown = React.memo(
}
}

return filteredGroups;
return flatOptions(filteredGroups);
}

return FilterService.filter(props.options, searchFields, filterValue, props.filterMatchMode, props.filterLocale);
return FilterService.filter(options, searchFields, filterValue, props.filterMatchMode, props.filterLocale);
}

return props.options;
return options;
};

const onFirstHiddenFocus = (event) => {
Expand Down Expand Up @@ -1284,4 +1299,4 @@ export const Dropdown = React.memo(
})
);

Dropdown.displayName = 'Dropdown';
Dropdown.displayName = 'Dropdown';
46 changes: 6 additions & 40 deletions components/lib/dropdown/DropdownPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,36 +76,6 @@ export const DropdownPanel = React.memo(
}
};

const createGroupChildren = (optionGroup, style) => {
const groupChildren = props.getOptionGroupChildren(optionGroup);

return groupChildren.map((option, j) => {
const optionLabel = props.getOptionLabel(option);
const optionKey = j + '_' + props.getOptionRenderKey(option);
const disabled = props.isOptionDisabled(option);

return (
<DropdownItem
key={optionKey}
index={j}
focusedOptionIndex={props.focusedOptionIndex}
label={optionLabel}
option={option}
style={style}
template={props.itemTemplate}
selected={props.isSelected(option)}
highlightOnSelect={props.highlightOnSelect}
disabled={disabled}
onClick={props.onOptionClick}
onMouseMove={changeFocusedItemOnHover}
ptm={ptm}
cx={cx}
checkmark={props.checkmark}
/>
);
});
};

const createEmptyMessage = (emptyMessage, isFilter) => {
const message = ObjectUtils.getJSXElement(emptyMessage, props) || localeOption(isFilter ? 'emptyFilterMessage' : 'emptyMessage');
const emptyMessageProps = mergeProps(
Expand All @@ -123,10 +93,9 @@ export const DropdownPanel = React.memo(

style = { ...style, ...option.style };

if (props.optionGroupLabel) {
if (option.group && props.optionGroupLabel) {
const { optionGroupLabel } = props;
const groupContent = props.optionGroupTemplate ? ObjectUtils.getJSXElement(props.optionGroupTemplate, option, index) : props.getOptionGroupLabel(option);
const groupChildrenContent = createGroupChildren(option, style);
const key = index + '_' + props.getOptionGroupRenderKey(option);
const itemGroupProps = mergeProps(
{
Expand All @@ -144,17 +113,14 @@ export const DropdownPanel = React.memo(
);

return (
<React.Fragment key={key}>
<li {...itemGroupProps}>
<li key={key} {...itemGroupProps}>
<span {...itemGroupLabelProps}>{groupContent}</span>
</li>
{groupChildrenContent}
</React.Fragment>
);
</li>
)

}

const optionLabel = props.getOptionLabel(option);
const optionKey = index + '_' + props.getOptionRenderKey(option);
melloware marked this conversation as resolved.
Show resolved Hide resolved
const optionLabel = props.getOptionLabel(option);
const disabled = props.isOptionDisabled(option);

return (
Expand Down
Loading