232 lines
5.6 KiB
Svelte
232 lines
5.6 KiB
Svelte
<svelte:options runes={true} />
|
|
|
|
<script lang="ts">
|
|
import type { Snippet } from 'svelte'
|
|
import Input from './Input.svelte'
|
|
import Select from './Select.svelte'
|
|
import Checkbox from './checkbox/Checkbox.svelte'
|
|
import DatePicker from './DatePicker.svelte'
|
|
import SuggestionBadge from './SuggestionBadge.svelte'
|
|
|
|
interface SelectOption {
|
|
value: string | number
|
|
label: string
|
|
disabled?: boolean
|
|
}
|
|
|
|
let {
|
|
label,
|
|
sublabel,
|
|
value = $bindable(),
|
|
children,
|
|
editable = false,
|
|
type = 'text',
|
|
options,
|
|
placeholder,
|
|
element,
|
|
onchange,
|
|
width,
|
|
// Suggestion props
|
|
suggestion,
|
|
suggestionLabel,
|
|
dismissedSuggestion = false,
|
|
onAcceptSuggestion,
|
|
onDismissSuggestion
|
|
}: {
|
|
label: string
|
|
/** Secondary label displayed below the main label */
|
|
sublabel?: string
|
|
value?: string | number | boolean | null | undefined
|
|
children?: Snippet
|
|
editable?: boolean
|
|
type?: 'text' | 'number' | 'select' | 'checkbox' | 'date'
|
|
options?: SelectOption[]
|
|
placeholder?: string
|
|
element?: 'wind' | 'fire' | 'water' | 'earth' | 'dark' | 'light'
|
|
/** Callback for checkbox type when value changes */
|
|
onchange?: (checked: boolean) => void
|
|
/** Custom width for the input field (e.g., '320px') */
|
|
width?: string
|
|
// Suggestion props
|
|
/** The suggested value from wiki */
|
|
suggestion?: string | number | boolean | null | undefined
|
|
/** Label for the suggestion tooltip */
|
|
suggestionLabel?: string
|
|
/** Whether the suggestion has been dismissed */
|
|
dismissedSuggestion?: boolean
|
|
/** Callback when user accepts the suggestion */
|
|
onAcceptSuggestion?: () => void
|
|
/** Callback when user dismisses the suggestion */
|
|
onDismissSuggestion?: () => void
|
|
} = $props()
|
|
|
|
// For checkbox type, derive the checked state from value
|
|
const checkboxValue = $derived(type === 'checkbox' ? Boolean(value) : false)
|
|
|
|
// Handle checkbox change and call onchange if provided
|
|
function handleCheckboxChange(checked: boolean) {
|
|
value = checked as any
|
|
onchange?.(checked)
|
|
}
|
|
|
|
// Show suggestion badge when:
|
|
// 1. We have a suggestion
|
|
// 2. The suggestion hasn't been dismissed
|
|
// 3. The current value is different from the suggestion (or value is empty)
|
|
const showSuggestion = $derived(
|
|
suggestion !== undefined &&
|
|
suggestion !== null &&
|
|
!dismissedSuggestion &&
|
|
(value === undefined || value === null || value === '' || value !== suggestion)
|
|
)
|
|
|
|
// Format suggestion for display in badge
|
|
const formattedSuggestion = $derived(() => {
|
|
if (type === 'select' && options && suggestion !== undefined && suggestion !== null) {
|
|
const opt = options.find((o) => o.value === suggestion)
|
|
return opt?.label ?? suggestion
|
|
}
|
|
return suggestion
|
|
})
|
|
</script>
|
|
|
|
<div class="detail-item" class:editable class:hasChildren={!!children}>
|
|
<div class="label-container">
|
|
<div class="label-row">
|
|
<span class="label">{label}</span>
|
|
{#if editable && showSuggestion}
|
|
<SuggestionBadge
|
|
suggestion={formattedSuggestion()}
|
|
label={suggestionLabel || label}
|
|
dismissed={dismissedSuggestion}
|
|
onAccept={onAcceptSuggestion}
|
|
onDismiss={onDismissSuggestion}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
{#if sublabel}
|
|
<span class="sublabel">{sublabel}</span>
|
|
{/if}
|
|
</div>
|
|
{#if editable}
|
|
<div class="edit-value" style:--custom-width={width}>
|
|
{#if type === 'select' && options}
|
|
<Select
|
|
bind:value={value as string | number | undefined}
|
|
{options}
|
|
{placeholder}
|
|
size="medium"
|
|
contained
|
|
/>
|
|
{:else if type === 'checkbox'}
|
|
<Checkbox
|
|
checked={checkboxValue}
|
|
onCheckedChange={handleCheckboxChange}
|
|
contained
|
|
{element}
|
|
/>
|
|
{:else if type === 'number'}
|
|
<Input
|
|
bind:value
|
|
type="number"
|
|
variant="number"
|
|
contained={true}
|
|
{placeholder}
|
|
alignRight={true}
|
|
/>
|
|
{:else if type === 'date'}
|
|
<DatePicker bind:value={value as string | null} contained={true} {placeholder} />
|
|
{:else}
|
|
<Input bind:value type="text" contained={true} {placeholder} alignRight={false} />
|
|
{/if}
|
|
</div>
|
|
{:else if children}
|
|
<div class="value" class:edit-value={editable}>
|
|
{@render children()}
|
|
</div>
|
|
{:else}
|
|
<span class="value">{value || '—'}</span>
|
|
{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@use '$src/themes/colors' as colors;
|
|
@use '$src/themes/layout' as layout;
|
|
@use '$src/themes/spacing' as spacing;
|
|
@use '$src/themes/typography' as typography;
|
|
|
|
.detail-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: spacing.$unit 0;
|
|
border-radius: layout.$item-corner;
|
|
font-size: typography.$font-regular;
|
|
min-height: calc(spacing.$unit * 5);
|
|
|
|
&:not(.editable) {
|
|
padding: spacing.$unit;
|
|
margin: 0 calc(spacing.$unit * -1);
|
|
}
|
|
|
|
&:hover:not(.editable):not(.hasChildren) {
|
|
background: colors.$grey-90;
|
|
}
|
|
|
|
&.editable:focus-within,
|
|
&.hasChildren:focus-within {
|
|
background: var(--input-bg-hover);
|
|
}
|
|
|
|
&.editable,
|
|
&.hasChildren {
|
|
background: var(--input-bg);
|
|
}
|
|
|
|
.label-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
margin-right: spacing.$unit-2x;
|
|
gap: spacing.$unit-fourth;
|
|
}
|
|
|
|
.label-row {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.label {
|
|
font-weight: typography.$medium;
|
|
color: colors.$grey-50;
|
|
}
|
|
|
|
.sublabel {
|
|
font-size: typography.$font-small;
|
|
color: colors.$grey-60;
|
|
font-weight: typography.$normal;
|
|
}
|
|
|
|
.value {
|
|
color: colors.$grey-30;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.edit-value {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-grow: 0;
|
|
justify-content: flex-end;
|
|
|
|
:global(.input),
|
|
:global(.select) {
|
|
width: var(--custom-width, 240px);
|
|
}
|
|
|
|
:global(.input.number) {
|
|
width: var(--custom-width, 120px);
|
|
}
|
|
}
|
|
}
|
|
</style>
|