-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d356d2
commit 514ed0d
Showing
1 changed file
with
152 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
import * as React from 'react'; | ||
import { deepmerge } from '@mui/utils'; | ||
import { DataGridPro, GRID_CHECKBOX_SELECTION_FIELD, GridToolbar } from '@mui/x-data-grid-pro'; | ||
import { useDemoData } from '@mui/x-data-grid-generator'; | ||
import { experimental_extendTheme as extendMuiTheme, styled } from '@mui/material/styles'; | ||
import { CssVarsProvider, extendTheme as extendJoyTheme, useColorScheme } from '@mui/joy/styles'; | ||
import Button from '@mui/joy/Button'; | ||
import IconButton from '@mui/joy/IconButton'; | ||
import Checkbox from '@mui/joy/Checkbox'; | ||
import FormControl from '@mui/joy/FormControl'; | ||
import FormLabel from '@mui/joy/FormLabel'; | ||
import Input from '@mui/joy/Input'; | ||
import Select from '@mui/joy/Select'; | ||
import DarkMode from '@mui/icons-material/DarkMode'; | ||
import LightMode from '@mui/icons-material/LightMode'; | ||
import { BaseTextFieldSlotProps } from '@mui/x-data-grid'; | ||
|
||
const muiTheme = extendMuiTheme(); | ||
const joyTheme = extendJoyTheme({ | ||
cssVarPrefix: 'mui', | ||
}); | ||
const theme = deepmerge(joyTheme, muiTheme); | ||
|
||
const StyledBox = styled('div')({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
height: 600, | ||
width: '100%', | ||
marginTop: '4rem', | ||
'& .MuiFormGroup-options': { | ||
alignItems: 'center', | ||
paddingBottom: theme.spacing(1), | ||
'& > div': { | ||
minWidth: 100, | ||
margin: theme.spacing(2), | ||
marginLeft: 0, | ||
}, | ||
}, | ||
}); | ||
|
||
const ModeToggle = () => { | ||
const { mode, setMode } = useColorScheme(); | ||
const [mounted, setMounted] = React.useState(false); | ||
React.useEffect(() => { | ||
setMounted(true); | ||
}, []); | ||
if (!mounted) { | ||
return null; | ||
} | ||
return ( | ||
<IconButton | ||
onClick={() => setMode(mode === 'dark' ? 'light' : 'dark')} | ||
sx={{ position: 'fixed', top: '1rem', right: '1rem' }} | ||
> | ||
{mode === 'dark' ? <DarkMode /> : <LightMode />} | ||
</IconButton> | ||
); | ||
}; | ||
|
||
const TextFieldAdapter = React.forwardRef<any, BaseTextFieldSlotProps>( | ||
( | ||
{ | ||
label, | ||
children, | ||
fullWidth, | ||
id, | ||
type, | ||
InputLabelProps, | ||
InputProps, | ||
// SelectProps, | ||
inputRef, | ||
onChange, | ||
placeholder, | ||
select, | ||
value, | ||
variant = 'outlined', | ||
}, | ||
ref, | ||
) => { | ||
const variantMapping = { | ||
standard: 'soft', | ||
outlined: 'outlined', | ||
} as const; | ||
return ( | ||
<FormControl id={id} ref={ref}> | ||
{label && <FormLabel {...InputLabelProps}>{label}</FormLabel>} | ||
{select ? ( | ||
// @ts-ignore | ||
<Select componentsProps={{ button: { ref: inputRef } }} value={value} onChange={onChange}> | ||
{children} | ||
</Select> | ||
) : ( | ||
<Input | ||
variant={variantMapping[variant]} | ||
placeholder={placeholder} | ||
type={type} | ||
fullWidth={fullWidth} | ||
startDecorator={InputProps?.startAdornment} | ||
endDecorator={InputProps?.endAdornment} | ||
componentsProps={{ | ||
input: { | ||
ref: inputRef, | ||
}, | ||
}} | ||
value={value} | ||
onChange={onChange} | ||
/> | ||
)} | ||
</FormControl> | ||
); | ||
}, | ||
); | ||
|
||
export default function Playground() { | ||
const { loading, data } = useDemoData({ | ||
dataSet: 'Commodity', | ||
rowLength: 100, | ||
maxColumns: 40, | ||
editable: true, | ||
}); | ||
return ( | ||
<CssVarsProvider theme={theme}> | ||
<ModeToggle /> | ||
<StyledBox> | ||
<DataGridPro | ||
{...data} | ||
components={{ | ||
Toolbar: GridToolbar, | ||
BaseCheckbox: Checkbox, | ||
BaseTextField: TextFieldAdapter, | ||
BaseButton: Button, | ||
}} | ||
componentsProps={{ | ||
toolbar: { showQuickFilter: true }, | ||
baseButton: { | ||
variant: 'plain', | ||
size: 'sm', | ||
}, | ||
}} | ||
loading={loading} | ||
checkboxSelection | ||
disableSelectionOnClick | ||
rowThreshold={0} | ||
initialState={{ | ||
...data.initialState, | ||
pinnedColumns: { left: [GRID_CHECKBOX_SELECTION_FIELD, 'desk'] }, | ||
}} | ||
/> | ||
</StyledBox> | ||
</CssVarsProvider> | ||
); | ||
} |