Componentform0.81 KB gzipZero dependencies

Conditional Fields

Inputs by ticket type.

Preview

Live Preview

No extra fields needed.

Installation

Tokens guide →

Add to your project via CLI (zero dependencies, code you own):

npx bigbullui add conditional-fields

Or install the full npm package:

npm install bigbullui
import { ConditionalFields } from "@/components/ui/conditional-fields";

<ConditionalFields />

Usage guidance

Use Conditional Fields when a ticket stub surface needs Inputs by ticket type. Keep props minimal and prefer composition with sibling stubs.

Avoid Conditional Fields for long form flows or dense data grids where a dedicated layout block fits better.

Source code

conditional-fields.tsx

Zero dependencies (only React + utils). Copy and paste directly into your project:

"use client";

import * as React from "react";
import { cn } from "./lib/utils";

export interface ConditionalFieldsProps extends React.HTMLAttributes<HTMLDivElement> {
  onModeChange?: (mode: string) => void;
}

/** Conditional fields: extra inputs appear based on ticket type. */
export function ConditionalFields({ onModeChange, className, ...props }: ConditionalFieldsProps) {
  const [mode, setMode] = React.useState("general");
  return (
    <div className={cn("w-full max-w-sm space-y-2.5 rounded-lg border-2 border-foreground bg-card p-4", className)} {...props}>
      <label htmlFor="cf-type" className="font-mono text-[10px] uppercase tracking-widest text-muted-foreground">
        Ticket type
      </label>
      <select
        id="cf-type"
        value={mode}
        onChange={(e) => {
          setMode(e.target.value);
          onModeChange?.(e.target.value);
        }}
        className="w-full rounded-md border-2 border-dashed border-border bg-background px-2.5 py-2 text-xs font-bold focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
      >
        <option value="general">General admission</option>
        <option value="vip">VIP box</option>
        <option value="group">Group booking</option>
      </select>
      {mode === "vip" && (
        <div>
          <label htmlFor="cf-lounge" className="font-mono text-[10px] uppercase tracking-widest text-accent">Lounge choice</label>
          <input id="cf-lounge" placeholder="North lounge" className="mt-1 w-full rounded-md border border-border bg-background px-2.5 py-2 text-xs focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" />
        </div>
      )}
      {mode === "group" && (
        <div>
          <label htmlFor="cf-size" className="font-mono text-[10px] uppercase tracking-widest text-accent">Group size</label>
          <input id="cf-size" type="number" min={2} defaultValue={4} className="mt-1 w-full rounded-md border border-border bg-background px-2.5 py-2 font-mono text-xs focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" />
        </div>
      )}
      {mode === "general" && (
        <p className="rounded-md border border-dashed border-border px-2.5 py-2 font-mono text-[11px] text-muted-foreground">No extra fields needed.</p>
      )}
    </div>
  );
}