mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e1e9a5ed96
* dev: Helpers * dev: views * dev: Chart views Month, Year and Day * dev: Chart Workflow updates * update: scroll functionality implementation * update: data vaidation * update: date renders and issue filter in the month view * update: new date render month view * update: scroll enabled left in chart * update: Item render from the date it created. * update: width implementation in chat view * dev: chart render functionality in the gantt chart * update: month view fix * dev: chart render issues resolved * update: fixed allchat views * update: updated week view default values * update: integrated chart view in issues * update: grabble and sidebar logic impleemntation and integrated gantt in issues * update: Preview gantt chart in month view * fix: mutation in gantt chart after creating a new issue * chore: cycles and modules list gantt chart * update: Ui changes on gantt view * fix: gantt chart height, chore: remove link from issue --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
51 lines
2.0 KiB
TypeScript
51 lines
2.0 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-brand-base">
|
|
{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-brand-base">
|
|
<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-brand-base">
|
|
{_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-brand-base`
|
|
}`}
|
|
>
|
|
<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>
|
|
</>
|
|
);
|
|
};
|