forked from github/plane
d7928f853d
* chore: global bar graph component * chore: global pie graph component * chore: global line graph component * chore: removed unnecessary file * chore: refactored global chart components to accept all props * chore: global calendar graph component added * chore: global scatter plot graph component
35 lines
1020 B
TypeScript
35 lines
1020 B
TypeScript
// nivo
|
|
import { ResponsiveCalendar, CalendarSvgProps } from "@nivo/calendar";
|
|
// types
|
|
import { TGraph } from "./types";
|
|
// constants
|
|
import { CHARTS_THEME, DEFAULT_MARGIN } from "constants/graph";
|
|
|
|
export const CalendarGraph: React.FC<TGraph & Omit<CalendarSvgProps, "height" | "width">> = ({
|
|
height = "400px",
|
|
width = "100%",
|
|
margin,
|
|
theme,
|
|
...rest
|
|
}) => (
|
|
<div style={{ height, width }}>
|
|
<ResponsiveCalendar
|
|
margin={margin ?? DEFAULT_MARGIN}
|
|
colors={
|
|
rest.colors ?? [
|
|
"rgba(var(--color-accent), 0.2)",
|
|
"rgba(var(--color-accent), 0.4)",
|
|
"rgba(var(--color-accent), 0.8)",
|
|
"rgba(var(--color-accent), 1)",
|
|
]
|
|
}
|
|
emptyColor={rest.emptyColor ?? "rgb(var(--color-bg-surface-2))"}
|
|
dayBorderColor={rest.dayBorderColor ?? "transparent"}
|
|
daySpacing={rest.daySpacing ?? 5}
|
|
monthBorderColor={rest.monthBorderColor ?? "rgb(var(--color-bg-base))"}
|
|
theme={theme ?? CHARTS_THEME}
|
|
{...rest}
|
|
/>
|
|
</div>
|
|
);
|