73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
import Paper from '@mui/material/Paper';
|
|
import Box from '@mui/material/Box';
|
|
import Tabs from '@mui/material/Tabs';
|
|
import Tab from '@mui/material/Tab';
|
|
import React from 'react';
|
|
import TradingVolumeBar from './TradingVolumeBar';
|
|
import { makeStyles } from '@mui/styles';
|
|
import Grid from '@mui/material/Grid';
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
tradingVolumeBarBox: {
|
|
height: 400,
|
|
},
|
|
paper: {
|
|
margin: theme.spacing(2),
|
|
padding: theme.spacing(2),
|
|
},
|
|
}));
|
|
|
|
export default function TradingVolumePanel() {
|
|
const [period, setPeriod] = React.useState('day');
|
|
const [segment, setSegment] = React.useState('exchange');
|
|
const classes = useStyles();
|
|
const handlePeriodChange = (event, newValue) => {
|
|
setPeriod(newValue);
|
|
};
|
|
|
|
const handleSegmentChange = (event, newValue) => {
|
|
setSegment(newValue);
|
|
};
|
|
|
|
return (
|
|
<Paper className={classes.paper}>
|
|
<Typography variant="h4" gutterBottom>
|
|
Trading Volume
|
|
</Typography>
|
|
|
|
<Grid container spacing={0}>
|
|
<Grid item xs={12} md={6}>
|
|
<Tabs
|
|
value={period}
|
|
onChange={handlePeriodChange}
|
|
indicatorColor="primary"
|
|
textColor="primary"
|
|
>
|
|
<Tab label="Day" value={'day'} />
|
|
<Tab label="Month" value={'month'} />
|
|
<Tab label="Year" value={'year'} />
|
|
</Tabs>
|
|
</Grid>
|
|
<Grid item xs={12} md={6}>
|
|
<Grid container justifyContent={'flex-end'}>
|
|
<Tabs
|
|
value={segment}
|
|
onChange={handleSegmentChange}
|
|
indicatorColor="primary"
|
|
textColor="primary"
|
|
>
|
|
<Tab label="By Exchange" value={'exchange'} />
|
|
<Tab label="By Symbol" value={'symbol'} />
|
|
</Tabs>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Box className={classes.tradingVolumeBarBox}>
|
|
<TradingVolumeBar period={period} segment={segment} />
|
|
</Box>
|
|
</Paper>
|
|
);
|
|
}
|