mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
112 lines
3.3 KiB
Plaintext
112 lines
3.3 KiB
Plaintext
---
|
|
import Icon from './Icon.astro'
|
|
import Avatar from './Avatar.astro'
|
|
import Flag from './Flag.astro'
|
|
import people from '@data/people.json'
|
|
import countries from '@data/countries.json'
|
|
|
|
interface Props {
|
|
right?: boolean
|
|
show?: boolean
|
|
arrow?: boolean
|
|
dark?: boolean
|
|
class?: string
|
|
check?: boolean
|
|
radio?: boolean
|
|
people?: boolean
|
|
flag?: boolean
|
|
header?: boolean
|
|
icons?: boolean
|
|
badge?: boolean
|
|
active?: boolean
|
|
disabled?: boolean
|
|
separated?: boolean
|
|
}
|
|
|
|
const { right, show, arrow, dark, class: className, check, radio, people: showPeople, flag: showFlags, header, icons, badge, active, disabled, separated } = Astro.props
|
|
|
|
const classes = ['dropdown-menu', right && 'dropdown-menu-end', show && 'dropdown-menu-demo', arrow && 'dropdown-menu-arrow', className]
|
|
|
|
const peopleItems = (people as { id: string; full_name: string }[]).slice(0, 5)
|
|
const countryItems = (countries as { name: string; flag: string }[]).slice(0, 5)
|
|
---
|
|
|
|
<div class:list={classes} data-bs-theme={dark ? 'dark' : undefined}>
|
|
{
|
|
check || radio ? (
|
|
[1, 2, 3].map((i) => (
|
|
<label class="dropdown-item">
|
|
<input class="form-check-input m-0 me-2" type={radio ? 'radio' : 'checkbox'} name={radio ? 'dropdown-menu-radio' : undefined} /> Option {i}
|
|
</label>
|
|
))
|
|
) : showPeople ? (
|
|
peopleItems.map((person) => (
|
|
<button type="button" class="dropdown-item">
|
|
<Avatar personId={Number(person.id)} size="xs" /> {person.full_name}
|
|
</button>
|
|
))
|
|
) : showFlags ? (
|
|
countryItems.map((country) => (
|
|
<button type="button" class="dropdown-item">
|
|
<Flag flag={country.flag} size="xs" /> {country.name}
|
|
</button>
|
|
))
|
|
) : (
|
|
<>
|
|
{header && <span class="dropdown-header">Dropdown header</span>}
|
|
<button type="button" class="dropdown-item">
|
|
{icons && (
|
|
<>
|
|
<Icon name="settings" class="dropdown-item-icon" />{' '}
|
|
</>
|
|
)}
|
|
Action
|
|
{badge && <span class="badge bg-primary text-primary-fg ms-auto">12</span>}
|
|
</button>
|
|
<button type="button" class="dropdown-item">
|
|
{icons && (
|
|
<>
|
|
<Icon name="edit" class="dropdown-item-icon" />{' '}
|
|
</>
|
|
)}
|
|
Another action
|
|
{badge && <span class="badge bg-green ms-auto" />}
|
|
</button>
|
|
{active && (
|
|
<button type="button" class="dropdown-item active">
|
|
{icons && (
|
|
<>
|
|
<Icon name="activity" class="dropdown-item-icon" />{' '}
|
|
</>
|
|
)}
|
|
Active action
|
|
</button>
|
|
)}
|
|
{disabled && (
|
|
<button type="button" class="dropdown-item disabled" disabled>
|
|
{icons && (
|
|
<>
|
|
<Icon name="user-x" class="dropdown-item-icon" />{' '}
|
|
</>
|
|
)}
|
|
Disabled action
|
|
</button>
|
|
)}
|
|
{separated && (
|
|
<>
|
|
<div class="dropdown-divider" />
|
|
<button type="button" class="dropdown-item">
|
|
{icons && (
|
|
<>
|
|
<Icon name="plus" class="dropdown-item-icon" />{' '}
|
|
</>
|
|
)}
|
|
Separated link
|
|
</button>
|
|
</>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
</div>
|