mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
145 lines
4.5 KiB
TypeScript
145 lines
4.5 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/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-200 rounded-[10px] border border-custom-border-200">
|
|
{views.map((view) => (
|
|
<SingleViewItem
|
|
key={view.id}
|
|
view={view}
|
|
handleEditView={() => handleEditView(view)}
|
|
handleDeleteView={() => handleDeleteView(view)}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<EmptyState
|
|
title="Get focused with views"
|
|
description="Views aid in saving your issues by applying various filters and grouping options."
|
|
image={emptyView}
|
|
primaryButton={{
|
|
icon: <PlusIcon className="h-4 w-4" />,
|
|
text: "New View",
|
|
onClick: () => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "v",
|
|
});
|
|
document.dispatchEvent(e);
|
|
},
|
|
}}
|
|
/>
|
|
)
|
|
) : (
|
|
<Loader className="space-y-3 p-8">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</Loader>
|
|
)}
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default ProjectViews;
|