plane/web/components/onboarding/tour/sidebar.tsx
sriram veeraghanta fa8ae6b8ce chore: optimizations and file name changes (#2845)
* fix: deepsource antipatterns

* fix: deepsource exclude file patterns

* chore: file name changes and removed unwanted variables

* fix: changing version number for editor
2023-12-07 19:59:35 +05:30

64 lines
1.5 KiB
TypeScript

// icons
import { ContrastIcon, DiceIcon, LayersIcon, PhotoFilterIcon } from "@plane/ui";
import { FileText } from "lucide-react";
// types
import { TTourSteps } from "./root";
const sidebarOptions: {
key: TTourSteps;
Icon: any;
}[] = [
{
key: "issues",
Icon: LayersIcon,
},
{
key: "cycles",
Icon: ContrastIcon,
},
{
key: "modules",
Icon: DiceIcon,
},
{
key: "views",
Icon: PhotoFilterIcon,
},
{
key: "pages",
Icon: FileText,
},
];
type Props = {
step: TTourSteps;
setStep: React.Dispatch<React.SetStateAction<TTourSteps>>;
};
export const TourSidebar: React.FC<Props> = ({ step, setStep }) => (
<div className="hidden lg:block col-span-3 p-8 bg-custom-background-90">
<h3 className="font-medium text-lg">
Let{"'"}s get started!
<br />
Get more out of Plane.
</h3>
<div className="mt-8 space-y-5">
{sidebarOptions.map((option) => (
<h5
key={option.key}
className={`pr-2 py-0.5 pl-3 flex items-center gap-2 capitalize font-medium text-sm border-l-[3px] cursor-pointer ${
step === option.key
? "text-custom-primary-100 border-custom-primary-100"
: "text-custom-text-200 border-transparent"
}`}
onClick={() => setStep(option.key)}
role="button"
>
<option.Icon className="h-4 w-4" aria-hidden="true" />
{option.key}
</h5>
))}
</div>
</div>
);