Dropdown

The Dropdown component offers a flexible and customizable way to display a list of links or actions in a compact, toggle-able menu. It's perfect for navigation menus, settings, or any context where you want to provide users with multiple options in a clean, organized format.

About

The Dropdown component allows you to create a menu that can be expanded or collapsed by clicking or hovering over a trigger element. It supports various customization options such as alignment, animation styles, animation speeds, and trigger events. Each item within the Dropdown can be linked to different actions or URLs, making it a versatile tool for enhancing user interaction in your application.

Example

To use the Dropdown component in your project, you first need to import it along with the DropdownItem component. Here's how you can set up the Dropdown in your Svelte component.

Here’s a simple example of how to implement the Dropdown component. It includes a label and multiple DropdownItem components, which represent the individual links or actions within the dropdown.

Svelte
<script>
  import { Dropdown, DropdownItem } from "theui-svelte";
</script>

<Dropdown label="Dropdown">
  <DropdownItem url="/">Link 1</DropdownItem>
  <DropdownItem url="/">Link 2</DropdownItem>
  <DropdownItem url="/">Link 3</DropdownItem>
</Dropdown>

In this example, the Dropdown is triggered by a label ("Dropdown"), and it contains three items, each with a URL and text.

Alignment

The align prop in the Dropdown component controls the alignment of the dropdown menu relative to its trigger. You can choose between two options:

  • start: Aligns the dropdown to the start (left) of the trigger element.
  • end: Aligns the dropdown to the end (right) of the trigger element. This is the default alignment.
Svelte
<!-- Align dropdown to the start (left) of the trigger -->
<Dropdown align="start"> ... </Dropdown>

<!-- Default alignment (align to the right of the trigger) -->
<Dropdown align="end"> ... </Dropdown>

Custom Dropdown Trigger

The label prop allows you to set a custom label for the dropdown trigger. You can either use a text or HTML string or define a custom trigger element using the snippet block.

  • label as props: Directly set the trigger label as a prop.
  • label as snippet: Define a custom trigger with any HTML or component structure.
Svelte
<!-- Dropdown label by prop -->
<Dropdown label="Dropdown text label"> ... </Dropdown>

<!-- Custom dropdown label by Snippet -->
<Dropdown>
  {#snippet label()}
    <span class="...">Dropdown snippet label</span>
  {/snippet}
</Dropdown>

Item Types

The DropdownItem component supports four native types for consistent UI: link, button, header, and divider. The type of each item is controlled by the type prop, which defaults to link. The type prop can be set to 'link' | 'divider' | 'header' | 'button'.

  • link: The default type, renders a standard hyperlink.
  • button: Renders a clickable button within the dropdown.
  • header: Creates a non-clickable header to separate sections.
  • divider: Adds a visual divider to separate items.

You can also add custom items, but these four types are provided natively for a consistent UI experience.

Svelte
<Dropdown label="Dropdown">
  <!-- Header item -->
  <DropdownItem type="header">Section Header</DropdownItem>
  <!-- Link item (default) -->
  <DropdownItem url="/">Link 1</DropdownItem>
  <DropdownItem url="/">Link 2</DropdownItem>
  <!-- Divider item -->
  <DropdownItem type="divider" />
  <!-- Button item -->
  <DropdownItem type="button">Button 1</DropdownItem>
</Dropdown>

This setup ensures your dropdown maintains a uniform appearance and functionality across different types of items.

Active State

The active prop in the DropdownItem component is used to indicate whether the item is currently active. This prop accepts a boolean value and defaults to false. When set to true, the item will appear highlighted to show it is active.

Svelte
<Dropdown label="Dropdown">
  <DropdownItem url="/"></DropdownItem> Link>
  <DropdownItem url="/" active={true}>Active Link</DropdownItem>
  <DropdownItem url="/">Link</DropdownItem>
</Dropdown>

Using the active prop helps visually distinguish the selected or currently active item within the dropdown.

Custom Item

The DropdownItem component also supports fully custom content, allowing you to create items beyond the predefined types. By using custom markup within DropdownItem, you can design complex or unique dropdown items to fit your specific needs.

Svelte
<Dropdown label="Custom Dropdown" size="md">
  <DropdownItem url="/" class="hover:bg-brand-primary-500 ... flex-wrap">
    <div class="w-full text-start">
      <p class="font-bold">Svelte 5 Component</p>
      Kickstart your ... ecosystem.
    </div>
  </DropdownItem>
</Dropdown>

This approach offers full flexibility, enabling you to craft dropdown items with custom content and styling, perfect for tailored user interfaces.

Animation

The animate prop lets you control the speed of the dropdown's animation. You can choose from various options like slower for a very slow animation, slow for a slightly slower effect, medium for the default speed, fast for quicker animations, and faster for the fastest effect. If you prefer to disable the animation altogether, you can set the prop to false.

  • slide-left: The dropdown slides in from the left.
  • slide-up: The default animation, sliding in from the bottom.
  • slide-right: Slides in from the right.
  • slide-down: Slides in from the top.
  • fade: A smooth fade-in animation.
  • zoom-in: The dropdown zooms in from a smaller size.
  • zoom-out: The dropdown zooms out from a larger size.
Svelte
<Dropdown animation="slide-left"> ... </Dropdown>
<Dropdown animation="slide-up"> ... </Dropdown>  <!-- Default -->
<Dropdown animation="slide-right"> ... </Dropdown>
<Dropdown animation="slide-down"> ... </Dropdown>
<Dropdown animation="fade"> ... </Dropdown>
<Dropdown animation="zoom-in"> ... </Dropdown>
<Dropdown animation="zoom-out"> ... </Dropdown>

These animation options help create a more engaging and visually appealing dropdown experience.

Animation Speed

Svelte
<Dropdown animate="slower"> ... </Dropdown>
<Dropdown animate="slow"> ... </Dropdown>
<Dropdown animate="medium"> ... </Dropdown>
<Dropdown animation="fast"> ... </Dropdown>
<Dropdown animation="faster"> ... </Dropdown>
<Dropdown animation={false}> ... </Dropdown>

This allows you to tailor the dropdown's animation speed to fit your design needs and improve user interaction.

Close on Outside Click

The closeOnBlur prop controls whether the dropdown closes when it loses focus. By default, it is set to true, meaning the dropdown will close when you click outside of it. Setting it to false will keep the dropdown open even when it loses focus.

Svelte
<!-- Keep the dropdown open on blur -->
<Dropdown closeOnBlur={false}> ... </Dropdown>

<!-- Default behavior: Close dropdown on blur -->
<Dropdown closeOnBlur={true}> ... </Dropdown>

Customization

The Dropdown component provides several props to customize the appearance of the dropdown items and container. These props allow you to apply custom classes for different elements, giving you full control over the styling.

  • containerClasses: Custom classes for the outer dropdown container.
  • dropdownClasses: Customizes the dropdown content area.
  • linkClasses: Sets custom classes for regular dropdown links.
  • activeLinkClasses: Applies custom classes to the active dropdown item.
  • dividerClasses: Customizes the appearance of divider items.
  • headerClasses: Adds custom styling to header items within the dropdown.
Svelte
<Dropdown
  label="Customized Dropdown"
  containerClasses="border-4 rounded-lg"
  dropdownClasses="shadow-lg bg-green-50"
  linkClasses="text-green-500 hover:bg-green-100"
  activeLinkClasses="text-white bg-green-500"
  dividerClasses="border-b-2 border-green-200"
  headerClasses="text-green-600 text-xs"
>
  <DropdownItem url="/">Link 1</DropdownItem>
  <DropdownItem type="header">Section Header</DropdownItem>
  <DropdownItem type="divider" />
  <DropdownItem url="/" active={true}>Link 2</DropdownItem>
</Dropdown>

These props enable you to tailor the dropdown's look and feel, ensuring it aligns with your design preferences and project requirements.

Configuration