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

feat:Using the showScrollBar property of the List component #1121

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@rc-component/trigger": "^2.1.1",
"classnames": "2.x",
"rc-motion": "^2.0.1",
"rc-overflow": "^1.3.1",
"rc-overflow": "^1.4.0",
"rc-util": "^5.16.1",
"rc-virtual-list": "^3.5.2"
},
Expand Down
6 changes: 4 additions & 2 deletions src/BaseSelect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export type CustomTagProps = {
onClose: (event?: React.MouseEvent<HTMLElement, MouseEvent>) => void;
closable: boolean;
isMaxTag: boolean;
index: number;
};

export interface BaseSelectRef {
Expand Down Expand Up @@ -135,7 +136,7 @@ export interface BaseSelectProps extends BaseSelectPrivateProps, React.AriaAttri
tagRender?: (props: CustomTagProps) => React.ReactElement;
direction?: 'ltr' | 'rtl';
maxLength?: number;

showScrollBar?: boolean | 'optional';
// MISC
tabIndex?: number;
autoFocus?: boolean;
Expand Down Expand Up @@ -222,7 +223,7 @@ const BaseSelect = React.forwardRef<BaseSelectRef, BaseSelectProps>((props, ref)
tagRender,
direction,
omitDomProps,

showScrollBar = 'optional',
// Value
displayValues,
onDisplayValuesChange,
Expand Down Expand Up @@ -685,6 +686,7 @@ const BaseSelect = React.forwardRef<BaseSelectRef, BaseSelectProps>((props, ref)
showSearch: mergedShowSearch,
multiple,
toggleOpen: onToggleOpen,
showScrollBar,
}),
[props, notFoundContent, triggerOpen, mergedOpen, id, mergedShowSearch, multiple, onToggleOpen],
);
Expand Down
2 changes: 2 additions & 0 deletions src/OptionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const OptionList: React.ForwardRefRenderFunction<RefOptionListProps, {}> = (_, r
toggleOpen,
notFoundContent,
onPopupScroll,
showScrollBar,
} = useBaseProps();
const {
maxCount,
Expand Down Expand Up @@ -325,6 +326,7 @@ const OptionList: React.ForwardRefRenderFunction<RefOptionListProps, {}> = (_, r
virtual={virtual}
direction={direction}
innerProps={virtual ? null : a11yProps}
showScrollBar={showScrollBar}
>
{(item, itemIndex) => {
const { group, groupOption, data, label, value } = item;
Expand Down
14 changes: 12 additions & 2 deletions src/Selector/MultipleSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ const SelectSelector: React.FC<SelectorProps> = (props) => {
closable?: boolean,
onClose?: React.MouseEventHandler,
isMaxTag?: boolean,
info?: { index: number },
) => {
const onMouseDown = (e: React.MouseEvent) => {
onPreventMouseDown(e);
Expand All @@ -141,6 +142,7 @@ const SelectSelector: React.FC<SelectorProps> = (props) => {
{tagRender({
label: content,
value,
index: info?.index,
disabled: itemDisabled,
closable,
onClose,
Expand All @@ -150,7 +152,7 @@ const SelectSelector: React.FC<SelectorProps> = (props) => {
);
};

const renderItem = (valueItem: DisplayValueType) => {
const renderItem = (valueItem: DisplayValueType, info: { index: number }) => {
const { disabled: itemDisabled, label, value } = valueItem;
const closable = !disabled && !itemDisabled;

Expand All @@ -173,7 +175,15 @@ const SelectSelector: React.FC<SelectorProps> = (props) => {
};

return typeof tagRender === 'function'
? customizeRenderSelector(value, displayLabel, itemDisabled, closable, onClose)
? customizeRenderSelector(
value,
displayLabel,
itemDisabled,
closable,
onClose,
undefined,
info,
)
: defaultRenderSelector(valueItem, displayLabel, itemDisabled, closable, onClose);
};

Expand Down
1 change: 1 addition & 0 deletions src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export interface DisplayValueType {
label?: React.ReactNode;
title?: React.ReactNode;
disabled?: boolean;
index?: number;
}

export type RenderNode = React.ReactNode | ((props: any) => React.ReactNode);
Expand Down
85 changes: 85 additions & 0 deletions tests/ListScrollBar.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
import React from 'react';
import { render, waitFor } from '@testing-library/react';
import { spyElementPrototypes } from './utils/domHook';
import Select from '../src';

jest.mock('../src/utils/platformUtil');
// Mock VirtualList
jest.mock('rc-virtual-list', () => {
const OriReact = jest.requireActual('react');
const OriList = jest.requireActual('rc-virtual-list').default;

return OriReact.forwardRef((props, ref) => {
const oriRef = OriReact.useRef();

OriReact.useImperativeHandle(ref, () => ({
...oriRef.current,
scrollTo: (arg) => {
global.scrollToArgs = arg;
oriRef.current.scrollTo(arg);
},
}));

return <OriList {...props} ref={oriRef} />;
});
});

describe('List.Scroll', () => {
let mockElement;
let boundingRect = {
top: 0,
bottom: 0,
width: 100,
height: 50,
};

beforeAll(() => {
// Mock the required properties
mockElement = spyElementPrototypes(HTMLElement, {
offsetHeight: {
get: () => 100, // Ensure this indicates there is enough height for content
},
clientHeight: {
get: () => 50, // This is typically the visible height
},
getBoundingClientRect: () => boundingRect, // Setup for the bounding rectangle
offsetParent: {
get: () => document.body,
},
});
});

afterAll(() => {
mockElement.mockRestore();
});

beforeEach(() => {
boundingRect = {
top: 0,
bottom: 0,
width: 100,
height: 50,
};
jest.useFakeTimers();
});

afterEach(() => {
jest.useRealTimers();
});

it('should show scrollbar when showScrollBar is true', async () => {
const options = Array.from({ length: 10 }, (_, index) => ({
label: `${index + 1}`,
value: `${index + 1}`,
}));

// Render the Select component with a scrollbar
const { container } = render(<Select open showScrollBar options={options} />);

// Wait for the scrollbar to appear
await waitFor(() => {
const scrollbarElement = container.querySelector('.rc-virtual-list-scrollbar-visible');
expect(scrollbarElement).not.toBeNull();
});
});
});
22 changes: 22 additions & 0 deletions tests/Tags.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import removeSelectedTest from './shared/removeSelectedTest';
import maxTagRenderTest from './shared/maxTagRenderTest';
import throwOptionValue from './shared/throwOptionValue';
import { injectRunAllTimers, findSelection, expectOpen, toggleOpen, keyDown } from './utils/common';
import type { CustomTagProps } from '@/BaseSelect';

describe('Select.Tags', () => {
injectRunAllTimers(jest);
Expand Down Expand Up @@ -301,6 +302,27 @@ describe('Select.Tags', () => {
expectOpen(container, false);
});

it('tagRender props have index', () => {
const tagRender = (props: CustomTagProps) => {
const { index: tagIndex, label } = props;
return <div className={`${label}-${tagIndex}-test`}>{label}</div>;
};
const values = ['light', 'dark'];
const { container } = render(
<Select
mode="tags"
value={values}
tagRender={tagRender}
options={[{ value: 'light' }, { value: 'dark' }]}
/>,
);
values.forEach((value, index) => {
const expectedText = `.${value}-${index}-test`;
const nodes = container.querySelectorAll(expectedText);
expect(nodes).toHaveLength(1);
});
});

it('disabled', () => {
const tagRender = jest.fn();
render(
Expand Down
61 changes: 61 additions & 0 deletions tests/utils/domHook.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/* eslint-disable no-param-reassign */
const NO_EXIST = { __NOT_EXIST: true };

export function spyElementPrototypes(Element, properties) {
const propNames = Object.keys(properties);
const originDescriptors = {};

propNames.forEach((propName) => {
const originDescriptor = Object.getOwnPropertyDescriptor(Element.prototype, propName);
originDescriptors[propName] = originDescriptor || NO_EXIST;

const spyProp = properties[propName];

if (typeof spyProp === 'function') {
// If is a function
Element.prototype[propName] = function spyFunc(...args) {
return spyProp.call(this, originDescriptor, ...args);
};
} else {
// Otherwise tread as a property
Object.defineProperty(Element.prototype, propName, {
...spyProp,
set(value) {
if (spyProp.set) {
return spyProp.set.call(this, originDescriptor, value);
}
return originDescriptor.set(value);
},
get() {
if (spyProp.get) {
return spyProp.get.call(this, originDescriptor);
}
return originDescriptor.get();
},
configurable: true,
});
}
});

return {
mockRestore() {
propNames.forEach((propName) => {
const originDescriptor = originDescriptors[propName];
if (originDescriptor === NO_EXIST) {
delete Element.prototype[propName];
} else if (typeof originDescriptor === 'function') {
Element.prototype[propName] = originDescriptor;
} else {
Object.defineProperty(Element.prototype, propName, originDescriptor);
}
});
},
};
}

export function spyElementPrototype(Element, propName, property) {
return spyElementPrototypes(Element, {
[propName]: property,
});
}
/* eslint-enable no-param-reassign */