/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ // hoc/withDockItems.tsx import React from "react"; import { observer } from "mobx-react"; import { useParams } from "next/navigation"; import { PlaneNewIcon } from "@plane/propel/icons"; import type { AppSidebarItemData } from "@/components/sidebar/sidebar-item"; import { useWorkspacePaths } from "@/hooks/use-workspace-paths"; type WithDockItemsProps = { dockItems: (AppSidebarItemData & { shouldRender: boolean })[]; }; export function withDockItems
(WrappedComponent: React.ComponentType
) { const ComponentWithDockItems = observer(function ComponentWithDockItems(props: Omit
) {
const { workspaceSlug } = useParams();
const { isProjectsPath, isNotificationsPath } = useWorkspacePaths();
const dockItems: (AppSidebarItemData & { shouldRender: boolean })[] = [
{
label: "Projects",
icon: