Home / Function/ DrawerWithSides() — ui Function Reference

DrawerWithSides() — ui Function Reference

Architecture documentation for the DrawerWithSides() function in drawer-sides.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  f834190f_c7db_20a0_ba43_187b57168dfa["DrawerWithSides()"]
  fab34b3e_7bc7_c076_e474_321d58d7275e["drawer-sides.tsx"]
  f834190f_c7db_20a0_ba43_187b57168dfa -->|defined in| fab34b3e_7bc7_c076_e474_321d58d7275e
  style f834190f_c7db_20a0_ba43_187b57168dfa fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/base/drawer-sides.tsx lines 15–62

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="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

Frequently Asked Questions

What does DrawerWithSides() do?
DrawerWithSides() is a function in the ui codebase, defined in apps/v4/examples/base/drawer-sides.tsx.
Where is DrawerWithSides() defined?
DrawerWithSides() is defined in apps/v4/examples/base/drawer-sides.tsx at line 15.

Analyze Your Own Codebase

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

Try Supermodel Free