Home / File/ scroll-area-example.tsx — ui Source File

scroll-area-example.tsx — ui Source File

Architecture documentation for scroll-area-example.tsx, a tsx file in the ui codebase. 5 imports, 0 dependents.

File tsx ComponentRegistry UIPrimitives 5 imports 4 functions

Entity Profile

Dependency Diagram

graph LR
  a6c63604_98c4_7677_7324_5fd8bdb3dc64["scroll-area-example.tsx"]
  1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"]
  a6c63604_98c4_7677_7324_5fd8bdb3dc64 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2
  3eb36dd7_f51a_1431_02e2_7abafe315718["image"]
  a6c63604_98c4_7677_7324_5fd8bdb3dc64 --> 3eb36dd7_f51a_1431_02e2_7abafe315718
  f56be340_a522_c6f7_dec3_5906873d14c8["example"]
  a6c63604_98c4_7677_7324_5fd8bdb3dc64 --> f56be340_a522_c6f7_dec3_5906873d14c8
  0a04af5b_1aa2_e65d_46c7_394c6dd98152["scroll-area"]
  a6c63604_98c4_7677_7324_5fd8bdb3dc64 --> 0a04af5b_1aa2_e65d_46c7_394c6dd98152
  a3c00059_fa03_cf5e_4e2a_284c527e1995["separator"]
  a6c63604_98c4_7677_7324_5fd8bdb3dc64 --> a3c00059_fa03_cf5e_4e2a_284c527e1995
  style a6c63604_98c4_7677_7324_5fd8bdb3dc64 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import * as React from "react"
import Image from "next/image"

import {
  Example,
  ExampleWrapper,
} from "@/registry/bases/base/components/example"
import { ScrollArea, ScrollBar } from "@/registry/bases/base/ui/scroll-area"
import { Separator } from "@/registry/bases/base/ui/separator"

const tags = Array.from({ length: 50 }).map(
  (_, i, a) => `v1.2.0-beta.${a.length - i}`
)

const works = [
  {
    artist: "Ornella Binni",
    art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80",
  },
  {
    artist: "Tom Byrom",
    art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80",
  },
  {
    artist: "Vladimir Malyav",
    art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80",
  },
] as const

export default function ScrollAreaExample() {
  return (
    <ExampleWrapper>
      <ScrollAreaVertical />
      <ScrollAreaHorizontal />
    </ExampleWrapper>
  )
}

function ScrollAreaVertical() {
  return (
    <Example title="Vertical">
      <ScrollArea className="mx-auto h-72 w-48 rounded-md border">
        <div className="p-4">
          <h4 className="mb-4 text-sm leading-none font-medium">Tags</h4>
          {tags.map((tag) => (
            <React.Fragment key={tag}>
              <div className="text-sm">{tag}</div>
              <Separator className="my-2" />
            </React.Fragment>
          ))}
        </div>
      </ScrollArea>
    </Example>
  )
}

function ScrollAreaHorizontal() {
  return (
    <Example title="Horizontal">
      <ScrollArea className="mx-auto w-full max-w-96 rounded-md border p-4">
        <div className="flex gap-4">
          {works.map((artwork) => (
            <figure key={artwork.artist} className="shrink-0">
              <div className="overflow-hidden rounded-md">
                <Image
                  src={artwork.art}
                  alt={`Photo by ${artwork.artist}`}
                  className="aspect-[3/4] h-fit w-fit object-cover"
                  width={300}
                  height={400}
                />
              </div>
              <figcaption className="text-muted-foreground pt-2 text-xs">
                Photo by{" "}
                <span className="text-foreground font-semibold">
                  {artwork.artist}
                </span>
              </figcaption>
            </figure>
          ))}
        </div>
        <ScrollBar orientation="horizontal" />
      </ScrollArea>
    </Example>
  )
}

Subdomains

Dependencies

  • example
  • image
  • react
  • scroll-area
  • separator

Frequently Asked Questions

What does scroll-area-example.tsx do?
scroll-area-example.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, UIPrimitives subdomain.
What functions are defined in scroll-area-example.tsx?
scroll-area-example.tsx defines 4 function(s): ScrollAreaExample, ScrollAreaHorizontal, ScrollAreaVertical, tags.
What does scroll-area-example.tsx depend on?
scroll-area-example.tsx imports 5 module(s): example, image, react, scroll-area, separator.
Where is scroll-area-example.tsx in the architecture?
scroll-area-example.tsx is located at apps/v4/registry/bases/base/examples/scroll-area-example.tsx (domain: ComponentRegistry, subdomain: UIPrimitives, directory: apps/v4/registry/bases/base/examples).

Analyze Your Own Codebase

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

Try Supermodel Free