import React from "react"; import { useRouter } from "next/router"; import useSWR, { mutate } from "swr"; // services import projectService from "services/project.service"; import trackEventServices, { MiscellaneousEventType } from "services/track-event.service"; // layouts import { ProjectAuthorizationWrapper } from "layouts/auth-layout"; // hooks import useToast from "hooks/use-toast"; // ui import { SecondaryButton, ToggleSwitch } from "components/ui"; import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs"; // icons import { ContrastIcon, PeopleGroupIcon, ViewListIcon } from "components/icons"; import { DocumentTextIcon } from "@heroicons/react/24/outline"; // types import { IProject } from "types"; import type { NextPage } from "next"; // fetch-keys import { PROJECTS_LIST, PROJECT_DETAILS } from "constants/fetch-keys"; import { SettingsHeader } from "components/project"; const featuresList = [ { title: "Cycles", description: "Cycles are enabled for all the projects in this workspace. Access them from the sidebar.", icon: , property: "cycle_view", }, { title: "Modules", description: "Modules are enabled for all the projects in this workspace. Access it from the sidebar.", icon: , property: "module_view", }, { title: "Views", description: "Views are enabled for all the projects in this workspace. Access it from the sidebar.", icon: , property: "issue_views_view", }, { title: "Pages", description: "Pages are enabled for all the projects in this workspace. Access it from the sidebar.", icon: , property: "page_view", }, ]; const getEventType = (feature: string, toggle: boolean): MiscellaneousEventType => { switch (feature) { case "Cycles": return toggle ? "TOGGLE_CYCLE_ON" : "TOGGLE_CYCLE_OFF"; case "Modules": return toggle ? "TOGGLE_MODULE_ON" : "TOGGLE_MODULE_OFF"; case "Views": return toggle ? "TOGGLE_VIEW_ON" : "TOGGLE_VIEW_OFF"; case "Pages": return toggle ? "TOGGLE_PAGES_ON" : "TOGGLE_PAGES_OFF"; default: return toggle ? "TOGGLE_PAGES_ON" : "TOGGLE_PAGES_OFF"; } }; const FeaturesSettings: NextPage = () => { const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { setToastAlert } = useToast(); const { data: projectDetails } = useSWR( workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null, workspaceSlug && projectId ? () => projectService.getProject(workspaceSlug as string, projectId as string) : null ); const handleSubmit = async (formData: Partial) => { if (!workspaceSlug || !projectId) return; mutate( PROJECT_DETAILS(projectId as string), (prevData) => ({ ...(prevData as IProject), ...formData }), false ); mutate( PROJECTS_LIST(workspaceSlug as string), (prevData) => prevData?.map((p) => { if (p.id === projectId) return { ...p, ...formData, }; return p; }), false ); await projectService .updateProject(workspaceSlug as string, projectId as string, formData) .then((res) => { mutate(PROJECT_DETAILS(projectId as string)); mutate(PROJECTS_LIST(workspaceSlug as string)); setToastAlert({ title: "Success!", type: "success", message: "Project features updated successfully.", }); }) .catch((err) => { console.error(err); }); }; return ( } >

Features

{featuresList.map((feature) => (
{feature.icon}

{feature.title}

{feature.description}

{ trackEventServices.trackMiscellaneousEvent( { workspaceId: (projectDetails?.workspace as any)?.id, workspaceSlug, projectId, projectIdentifier: projectDetails?.identifier, projectName: projectDetails?.name, }, !projectDetails?.[feature.property as keyof IProject] ? getEventType(feature.title, true) : getEventType(feature.title, false) ); handleSubmit({ [feature.property]: !projectDetails?.[feature.property as keyof IProject], }); }} size="lg" />
))}
); }; export default FeaturesSettings;