44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
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'];
|
|
series: ReportChartProps['report']['series'];
|
|
breakdowns?: ReportChartProps['report']['breakdowns'];
|
|
lineType?: ReportChartProps['report']['lineType'];
|
|
};
|
|
|
|
export const ReportChartShortcut = ({
|
|
projectId,
|
|
range = '7d',
|
|
previous = false,
|
|
chartType = 'linear',
|
|
interval = 'day',
|
|
series,
|
|
breakdowns,
|
|
lineType = 'monotone',
|
|
options,
|
|
}: ChartRootShortcutProps) => {
|
|
return (
|
|
<ReportChart
|
|
report={{
|
|
name: 'Shortcut',
|
|
projectId,
|
|
range,
|
|
breakdowns: breakdowns ?? [],
|
|
previous,
|
|
chartType,
|
|
interval,
|
|
series,
|
|
lineType,
|
|
metric: 'sum',
|
|
}}
|
|
options={options ?? {}}
|
|
/>
|
|
);
|
|
};
|