Home / File/ drawer-sides.tsx — ui Source File

drawer-sides.tsx — ui Source File

Architecture documentation for drawer-sides.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.

File tsx DocumentationAtlas ContentSourcing 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  d38a92b6_0b5a_e990_f6d6_8e0ec70b2c6c["drawer-sides.tsx"]
  4b1d2128_46d9_46f0_b915_b6e1925b7876["button"]
  d38a92b6_0b5a_e990_f6d6_8e0ec70b2c6c --> 4b1d2128_46d9_46f0_b915_b6e1925b7876
  6e0d3850_8923_6c1a_58c9_baba0ca937aa["drawer"]
  d38a92b6_0b5a_e990_f6d6_8e0ec70b2c6c --> 6e0d3850_8923_6c1a_58c9_baba0ca937aa
  style d38a92b6_0b5a_e990_f6d6_8e0ec70b2c6c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { Button } from "@/examples/radix/ui/button"
import {
  Drawer,
  DrawerClose,
  DrawerContent,
  DrawerDescription,
  DrawerFooter,
  DrawerHeader,
  DrawerTitle,
  DrawerTrigger,
} from "@/examples/radix/ui/drawer"

const DRAWER_SIDES = ["top", "right", "bottom", "left"] as const

export function DrawerWithSides() {
  return (
    <div className="flex flex-wrap gap-2">
      {DRAWER_SIDES.map((side) => (
        <Drawer
          key={side}
          direction={
            side === "bottom" ? undefined : (side as "top" | "right" | "left")
          }
        >
          <DrawerTrigger asChild>
            <Button variant="outline" className="capitalize">
              {side}
            </Button>
          </DrawerTrigger>
          <DrawerContent className="data-[vaul-drawer-direction=bottom]:max-h-[50vh] data-[vaul-drawer-direction=top]:max-h-[50vh]">
            <DrawerHeader>
              <DrawerTitle>Move Goal</DrawerTitle>
              <DrawerDescription>
                Set your daily activity goal.
              </DrawerDescription>
            </DrawerHeader>
            <div className="no-scrollbar overflow-y-auto px-4">
              {Array.from({ length: 10 }).map((_, index) => (
                <p
                  key={index}
                  className="style-lyra:mb-2 style-lyra:leading-relaxed mb-4 leading-normal"
                >
                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed
                  do eiusmod tempor incididunt ut labore et dolore magna aliqua.
                  Ut enim ad minim veniam, quis nostrud exercitation ullamco
                  laboris nisi ut aliquip ex ea commodo consequat. Duis aute
                  irure dolor in reprehenderit in voluptate velit esse cillum
                  dolore eu fugiat nulla pariatur. Excepteur sint occaecat
                  cupidatat non proident, sunt in culpa qui officia deserunt
                  mollit anim id est laborum.
                </p>
              ))}
            </div>
            <DrawerFooter>
              <Button>Submit</Button>
              <DrawerClose asChild>
                <Button variant="outline">Cancel</Button>
              </DrawerClose>
            </DrawerFooter>
          </DrawerContent>
        </Drawer>
      ))}
    </div>
  )
}

Subdomains

Functions

Dependencies

  • button
  • drawer

Frequently Asked Questions

What does drawer-sides.tsx do?
drawer-sides.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, ContentSourcing subdomain.
What functions are defined in drawer-sides.tsx?
drawer-sides.tsx defines 1 function(s): DrawerWithSides.
What does drawer-sides.tsx depend on?
drawer-sides.tsx imports 2 module(s): button, drawer.
Where is drawer-sides.tsx in the architecture?
drawer-sides.tsx is located at apps/v4/examples/radix/drawer-sides.tsx (domain: DocumentationAtlas, subdomain: ContentSourcing, directory: apps/v4/examples/radix).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free