refactor(dashboard): the chart component is now cleaned up and easier to extend
This commit is contained in:
43
apps/dashboard/src/components/report-chart/shortcut.tsx
Normal file
43
apps/dashboard/src/components/report-chart/shortcut.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import { ReportChart } from '.';
|
||||
import type { ReportChartProps } from './context';
|
||||
|
||||
type ChartRootShortcutProps = Omit<ReportChartProps, 'report'> & {
|
||||
projectId: ReportChartProps['report']['projectId'];
|
||||
range?: ReportChartProps['report']['range'];
|
||||
previous?: ReportChartProps['report']['previous'];
|
||||
chartType?: ReportChartProps['report']['chartType'];
|
||||
interval?: ReportChartProps['report']['interval'];
|
||||
events: ReportChartProps['report']['events'];
|
||||
breakdowns?: ReportChartProps['report']['breakdowns'];
|
||||
lineType?: ReportChartProps['report']['lineType'];
|
||||
};
|
||||
|
||||
export const ReportChartShortcut = ({
|
||||
projectId,
|
||||
range = '7d',
|
||||
previous = false,
|
||||
chartType = 'linear',
|
||||
interval = 'day',
|
||||
events,
|
||||
breakdowns,
|
||||
lineType = 'monotone',
|
||||
options,
|
||||
}: ChartRootShortcutProps) => {
|
||||
return (
|
||||
<ReportChart
|
||||
report={{
|
||||
name: 'Shortcut',
|
||||
projectId,
|
||||
range,
|
||||
breakdowns: breakdowns ?? [],
|
||||
previous,
|
||||
chartType,
|
||||
interval,
|
||||
events,
|
||||
lineType,
|
||||
metric: 'sum',
|
||||
}}
|
||||
options={options ?? {}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user