forked from github/plane
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
136 lines
4.2 KiB
TypeScript
136 lines
4.2 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// 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 { user } = useUserAuth();
|
|
|
|
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
|
|
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}
|
|
user={user}
|
|
/>
|
|
<DeleteViewModal
|
|
isOpen={deleteViewModal}
|
|
data={selectedViewToDelete}
|
|
setIsOpen={setDeleteViewModal}
|
|
user={user}
|
|
/>
|
|
{views ? (
|
|
views.length > 0 ? (
|
|
<div className="space-y-5 p-8">
|
|
<h3 className="text-2xl font-semibold text-custom-text-100">Views</h3>
|
|
<div className="divide-y divide-custom-border-100 rounded-[10px] border border-custom-border-100">
|
|
{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 p-8">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</Loader>
|
|
)}
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default ProjectViews;
|