mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4c2cb2368a
* chore: store various shades of accent color * refactor: custom theme selector * refactor: custom theme selector * chore: update custom theme input labels * fix: color generator function logic * fix: accent color preloaded data * chore: new theming structure * chore: update shades calculation logic * refactor: variable names * chore: update color scheming * chore: new color scheming * refactor: themes folder structure * chore: update classnames to the new ones * chore: update static colors * chore: sidebar link colors * chore: placeholder color * chore: update border classnames
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
import { FC } from "react";
|
|
// context
|
|
import { useChart } from "../hooks";
|
|
|
|
export const QuarterChartView: FC<any> = () => {
|
|
const { currentView, currentViewData, renderView, dispatch, allViews } = useChart();
|
|
|
|
return (
|
|
<>
|
|
<div className="absolute flex h-full flex-grow divide-x divide-custom-border-100">
|
|
{renderView &&
|
|
renderView.length > 0 &&
|
|
renderView.map((_itemRoot: any, _idxRoot: any) => (
|
|
<div key={`title-${_idxRoot}`} className="relative flex flex-col">
|
|
<div className="relative border-b border-custom-border-100">
|
|
<div className="sticky left-0 inline-flex whitespace-nowrap px-2 py-1 text-sm font-medium capitalize">
|
|
{_itemRoot?.title}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex h-full w-full divide-x divide-custom-border-100">
|
|
{_itemRoot.children &&
|
|
_itemRoot.children.length > 0 &&
|
|
_itemRoot.children.map((_item: any, _idx: any) => (
|
|
<div
|
|
key={`sub-title-${_idxRoot}-${_idx}`}
|
|
className="relative flex h-full flex-col overflow-hidden whitespace-nowrap"
|
|
style={{ width: `${currentViewData.data.width}px` }}
|
|
>
|
|
<div
|
|
className={`flex-shrink-0 border-b py-1 text-center text-sm capitalize font-medium ${
|
|
_item?.today ? `text-red-500 border-red-500` : `border-custom-border-100`
|
|
}`}
|
|
>
|
|
<div>{_item.title}</div>
|
|
</div>
|
|
<div className={`relative h-full w-full flex-1 flex justify-center`}>
|
|
{_item?.today && (
|
|
<div className="absolute top-0 bottom-0 border border-red-500"> </div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|