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

Meenu market scroll section #679

Merged
19 changes: 18 additions & 1 deletion src/javascript/app/pages/trade/markets/markets-dropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,22 @@ export const MarketsDropdown = () => {
closeMarketDropdown();
};

useEffect(() => {
if (isMounted && itemsContainer.current) {

const container = itemsContainer.current;
const selectedElement = container.querySelector('.market-item-selected');
if (selectedElement) {
const offsetTop = selectedElement.offsetTop - container.offsetTop;
container.scrollTo({
top : offsetTop,
behavior: 'auto',
});
}

}
}, [isMounted]);

return (
<div className='quill-market-dropdown-container'>
<div className='quill-market-dropdown-search-container'>
Expand Down Expand Up @@ -244,7 +260,7 @@ export const MarketsDropdown = () => {
{Object.keys(markets).map((ik) => {
const market = markets[ik];
const { submarkets } = market;

const sortedSubmarketKeys = Object.keys(submarkets).sort((a, b) => {
if (a === 'major_pairs') return -1;
if (b === 'major_pairs') return 1;
Expand Down Expand Up @@ -273,6 +289,7 @@ export const MarketsDropdown = () => {
onClick={() => handleUnderlyingClick(yk)}
label={display}
selected={isSelected}
className={isSelected && 'market-item-selected'}
size='md'
/>
);
Expand Down
Loading