main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
1003 bytes
|
Line | |
---|
1 | import { memo, forwardRef } from 'react';
|
---|
2 | // @mui
|
---|
3 | import Box from '@mui/material/Box';
|
---|
4 | //
|
---|
5 | import { StyledRootScrollbar, StyledScrollbar } from './styles';
|
---|
6 | import { ScrollbarProps } from './types';
|
---|
7 |
|
---|
8 | // ----------------------------------------------------------------------
|
---|
9 |
|
---|
10 | const Scrollbar = forwardRef<HTMLDivElement, ScrollbarProps>(({ children, sx, ...other }, ref) => {
|
---|
11 | const userAgent = typeof navigator === 'undefined' ? 'SSR' : navigator.userAgent;
|
---|
12 |
|
---|
13 | const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(userAgent);
|
---|
14 |
|
---|
15 | if (isMobile) {
|
---|
16 | return (
|
---|
17 | <Box ref={ref} sx={{ overflow: 'auto', ...sx }} {...other}>
|
---|
18 | {children}
|
---|
19 | </Box>
|
---|
20 | );
|
---|
21 | }
|
---|
22 |
|
---|
23 | return (
|
---|
24 | <StyledRootScrollbar>
|
---|
25 | <StyledScrollbar
|
---|
26 | scrollableNodeProps={{
|
---|
27 | ref,
|
---|
28 | }}
|
---|
29 | clickOnTrack={false}
|
---|
30 | sx={sx}
|
---|
31 | {...other}
|
---|
32 | >
|
---|
33 | {children}
|
---|
34 | </StyledScrollbar>
|
---|
35 | </StyledRootScrollbar>
|
---|
36 | );
|
---|
37 | });
|
---|
38 |
|
---|
39 | export default memo(Scrollbar);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.