Side Panel

Installation

Add the following Soul components

The side-panel component uses the button component. Make sure you have added it to your project.

Install the following dependencies

npm install @radix-ui/react-dialog clsx lucide-react

Copy and paste the following code into your project

primitives/side-panel/index.tsx

'use client';import * as Dialog from '@radix-ui/react-dialog';import { clsx } from 'clsx';import { X } from 'lucide-react';import { ReactNode } from 'react';import { Button } from '@/vibes/soul/primitives/button';export interface SidePanelProps {  title: string;  children: ReactNode;}/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { *   --side-panel-overlay-background: hsl(var(--primary)); *   --side-panel-background: hsl(var(--background)); *   --side-panel-title-text: hsl(var(--foreground)); *   --side-panel-title-font-family: var(--font-family-heading); *   --side-panel-content-font-family: var(--font-family-body); * } * ``` */function Content({ title, children }: SidePanelProps) {  return (    <Dialog.Portal>      <Dialog.Overlay className="fixed inset-0 z-30 bg-[var(--side-panel-overlay-background,hsl(var(--foreground)/50%))] @container">        <Dialog.Content          className={clsx(            'fixed inset-y-0 right-0 flex w-96 max-w-full flex-col bg-[var(--side-panel-background,hsl(var(--background)))] font-[family-name:var(--side-panel-content-font-family,var(--font-family-body))] transition duration-500 [animation-timing-function:cubic-bezier(0.25,1,0,1)] data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right',          )}          forceMount        >          <div className="flex items-center justify-between gap-2 px-6 pb-4 pt-4 @md:px-8 @md:pt-7">            <Dialog.Title asChild>              <h2 className="font-[family-name:var(--side-panel-title-font-family,var(--font-family-heading))] text-2xl font-medium text-[var(--side-panel-title-text,var(--error))] @lg:text-3xl">                {title}              </h2>            </Dialog.Title>            <Dialog.Close asChild>              <Button className="translate-x-3" shape="circle" size="small" variant="tertiary">                <X size={20} strokeWidth={1} />              </Button>            </Dialog.Close>          </div>          <div className="flex-1 overflow-y-auto px-6 pb-6 @md:px-8 @md:pb-8">{children}</div>        </Dialog.Content>      </Dialog.Overlay>    </Dialog.Portal>  );}const Root = Dialog.Root;const Trigger = Dialog.Trigger;export { Root, Trigger, Content };

Usage

import * as SidePanel from '@/vibes/soul/primitives/side-panel';function Usage() {  return (      <SidePanel.Root>          <SidePanel.Trigger asChild>              <button>Show Side Panel</button>          </SidePanel.Trigger>          <SidePanel.Content title="Content">              <p className="text-lg text-contrast-500">Put your content here!</p>          </SidePanel.Content>      </SidePanel.Root>  );}

API Reference

This component uses the Dialog component from Radix UI. Refer to the Radix UI Dialog documentation for more information.

SidePanelProps

PropTypeDefault
children*
ReactNode
title*
string

CSS Variables

This component supports various CSS variables for theming. Here's a comprehensive list.

:root {  --side-panel-overlay-background: hsl(var(--primary));  --side-panel-background: hsl(var(--background));  --side-panel-title-text: hsl(var(--foreground));  --side-panel-title-font-family: var(--font-family-heading);  --side-panel-content-font-family: var(--font-family-body);}