forked from github/plane
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
133 lines
4.1 KiB
TypeScript
133 lines
4.1 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import viewsService from "services/views.service";
|
|
import projectService from "services/project.service";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// ui
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
//icons
|
|
import { PlusIcon } from "components/icons";
|
|
// images
|
|
import emptyView from "public/empty-state/empty-view.svg";
|
|
// fetching keys
|
|
import { PROJECT_DETAILS, VIEWS_LIST } from "constants/fetch-keys";
|
|
// components
|
|
import { PrimaryButton, Loader, EmptyState } from "components/ui";
|
|
import { DeleteViewModal, CreateUpdateViewModal, SingleViewItem } from "components/views";
|
|
// types
|
|
import { IView } from "types";
|
|
import type { NextPage } from "next";
|
|
|
|
const ProjectViews: NextPage = () => {
|
|
const [createUpdateViewModal, setCreateUpdateViewModal] = useState(false);
|
|
const [selectedViewToUpdate, setSelectedViewToUpdate] = useState<IView | null>(null);
|
|
|
|
const [deleteViewModal, setDeleteViewModal] = useState(false);
|
|
const [selectedViewToDelete, setSelectedViewToDelete] = useState<IView | null>(null);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: activeProject } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: views } = useSWR(
|
|
workspaceSlug && projectId ? VIEWS_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => viewsService.getViews(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const handleEditView = (view: IView) => {
|
|
setSelectedViewToUpdate(view);
|
|
setCreateUpdateViewModal(true);
|
|
};
|
|
|
|
const handleDeleteView = (view: IView) => {
|
|
setSelectedViewToDelete(view);
|
|
setDeleteViewModal(true);
|
|
};
|
|
|
|
return (
|
|
<ProjectAuthorizationWrapper
|
|
meta={{
|
|
title: "Plane - Views",
|
|
}}
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title="Projects" link={`/${workspaceSlug}/projects`} />
|
|
<BreadcrumbItem title={`${activeProject?.name ?? "Project"} Views`} />
|
|
</Breadcrumbs>
|
|
}
|
|
right={
|
|
<div className="flex items-center gap-2">
|
|
<PrimaryButton
|
|
type="button"
|
|
className="flex items-center gap-2"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", { key: "v" });
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
<PlusIcon className="h-4 w-4" />
|
|
Create View
|
|
</PrimaryButton>
|
|
</div>
|
|
}
|
|
>
|
|
<CreateUpdateViewModal
|
|
isOpen={createUpdateViewModal}
|
|
handleClose={() => setCreateUpdateViewModal(false)}
|
|
data={selectedViewToUpdate}
|
|
/>
|
|
<DeleteViewModal
|
|
isOpen={deleteViewModal}
|
|
data={selectedViewToDelete}
|
|
setIsOpen={setDeleteViewModal}
|
|
/>
|
|
{views ? (
|
|
views.length > 0 ? (
|
|
<div className="space-y-5">
|
|
<h3 className="text-3xl font-semibold text-brand-base">Views</h3>
|
|
<div className="rounded-[10px] border border-brand-base">
|
|
{views.map((view) => (
|
|
<SingleViewItem
|
|
key={view.id}
|
|
view={view}
|
|
handleEditView={() => handleEditView(view)}
|
|
handleDeleteView={() => handleDeleteView(view)}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<EmptyState
|
|
type="view"
|
|
title="Create New View"
|
|
description="Views aid in saving your issues by applying various filters and grouping options."
|
|
imgURL={emptyView}
|
|
/>
|
|
)
|
|
) : (
|
|
<Loader className="space-y-3">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</Loader>
|
|
)}
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default ProjectViews;
|