hensei-web/src/lib/features/database/characters/sections/CharacterTaxonomySection.svelte
Justin Edmund e1ba34048a improve import form components
- fix Select reactivity with external value changes
- add series/promotions to taxonomy sections
- add onDataChange callbacks to uncap sections
- add game CDN image helpers for batch imports
- expand suggestion type definitions
2025-12-14 19:35:20 -08:00

221 lines
7.1 KiB
Svelte

<svelte:options runes={true} />
<script lang="ts">
import type { CharacterSuggestions } from '$lib/api/adapters/entity.adapter'
import DetailsContainer from '$lib/components/ui/DetailsContainer.svelte'
import DetailItem from '$lib/components/ui/DetailItem.svelte'
import SuggestionDetailItem from '$lib/components/ui/SuggestionDetailItem.svelte'
import MultiSelect from '$lib/components/ui/MultiSelect.svelte'
import ElementLabel from '$lib/components/labels/ElementLabel.svelte'
import ProficiencyLabel from '$lib/components/labels/ProficiencyLabel.svelte'
import { getElementLabel, getElementOptions } from '$lib/utils/element'
import { getRaceLabel, getRaceOptions } from '$lib/utils/race'
import { getGenderLabel, getGenderOptions } from '$lib/utils/gender'
import { getProficiencyOptions } from '$lib/utils/proficiency'
import {
CharacterSeason,
CharacterSeries,
CHARACTER_SEASON_NAMES,
CHARACTER_SERIES_NAMES,
PROMOTION_NAMES,
getSeasonName,
getSeriesNames,
getPromotionNames
} from '$lib/types/enums'
type ElementName = 'wind' | 'fire' | 'water' | 'earth' | 'dark' | 'light'
interface Props {
character: any
editMode?: boolean
editData?: any
// Suggestion support for batch import
suggestions?: CharacterSuggestions
dismissedSuggestions?: Set<string>
onAcceptSuggestion?: (field: string, value: any) => void
onDismissSuggestion?: (field: string) => void
}
let {
character,
editMode = false,
editData = $bindable(),
suggestions,
dismissedSuggestions,
onAcceptSuggestion,
onDismissSuggestion
}: Props = $props()
const elementOptions = getElementOptions()
const raceOptions = getRaceOptions()
const genderOptions = getGenderOptions()
const proficiencyOptions = getProficiencyOptions()
// Season options (nullable, so include a "None" option)
const seasonOptions = [
{ value: 0, label: 'None' },
...Object.entries(CHARACTER_SEASON_NAMES).map(([value, label]) => ({
value: Number(value),
label
}))
]
// Series options for multiselect
const seriesOptions = Object.entries(CHARACTER_SERIES_NAMES).map(([value, label]) => ({
value: Number(value),
label
}))
// Promotion options for multiselect
const promotionOptions = Object.entries(PROMOTION_NAMES).map(([value, label]) => ({
value: Number(value),
label
}))
// Get element name for checkbox theming
const elementName = $derived.by((): ElementName | undefined => {
const el = editMode ? editData?.element : character?.element
const label = getElementLabel(el)
return label !== '—' && label !== 'Null' ? (label.toLowerCase() as ElementName) : undefined
})
// Format series for display
function formatSeriesDisplay(series: number[]): string {
if (!series || series.length === 0) return '—'
return getSeriesNames(series).join(', ')
}
// Format promotions for display
function formatPromotionsDisplay(promotions: number[]): string {
if (!promotions || promotions.length === 0) return '—'
return getPromotionNames(promotions).join(', ')
}
</script>
<DetailsContainer title="Details">
{#if editMode}
<SuggestionDetailItem
label="Element"
bind:value={editData.element}
editable={true}
type="select"
options={elementOptions}
suggestion={suggestions?.element}
dismissedSuggestion={dismissedSuggestions?.has('element')}
onAcceptSuggestion={() => onAcceptSuggestion?.('element', suggestions?.element)}
onDismissSuggestion={() => onDismissSuggestion?.('element')}
/>
<SuggestionDetailItem
label="Race 1"
bind:value={editData.race1}
editable={true}
type="select"
options={raceOptions}
suggestion={suggestions?.race1}
dismissedSuggestion={dismissedSuggestions?.has('race1')}
onAcceptSuggestion={() => onAcceptSuggestion?.('race1', suggestions?.race1)}
onDismissSuggestion={() => onDismissSuggestion?.('race1')}
/>
<SuggestionDetailItem
label="Race 2"
bind:value={editData.race2}
editable={true}
type="select"
options={raceOptions}
suggestion={suggestions?.race2}
dismissedSuggestion={dismissedSuggestions?.has('race2')}
onAcceptSuggestion={() => onAcceptSuggestion?.('race2', suggestions?.race2)}
onDismissSuggestion={() => onDismissSuggestion?.('race2')}
/>
<SuggestionDetailItem
label="Gender"
bind:value={editData.gender}
editable={true}
type="select"
options={genderOptions}
suggestion={suggestions?.gender}
dismissedSuggestion={dismissedSuggestions?.has('gender')}
onAcceptSuggestion={() => onAcceptSuggestion?.('gender', suggestions?.gender)}
onDismissSuggestion={() => onDismissSuggestion?.('gender')}
/>
<SuggestionDetailItem
label="Proficiency 1"
bind:value={editData.proficiency1}
editable={true}
type="select"
options={proficiencyOptions}
suggestion={suggestions?.proficiency1}
dismissedSuggestion={dismissedSuggestions?.has('proficiency1')}
onAcceptSuggestion={() => onAcceptSuggestion?.('proficiency1', suggestions?.proficiency1)}
onDismissSuggestion={() => onDismissSuggestion?.('proficiency1')}
/>
<SuggestionDetailItem
label="Proficiency 2"
bind:value={editData.proficiency2}
editable={true}
type="select"
options={proficiencyOptions}
suggestion={suggestions?.proficiency2}
dismissedSuggestion={dismissedSuggestions?.has('proficiency2')}
onAcceptSuggestion={() => onAcceptSuggestion?.('proficiency2', suggestions?.proficiency2)}
onDismissSuggestion={() => onDismissSuggestion?.('proficiency2')}
/>
<DetailItem
label="Season"
bind:value={editData.season}
editable={true}
type="select"
options={seasonOptions}
/>
<DetailItem
label="Series"
bind:value={editData.series}
editable={true}
type="multiselect"
options={seriesOptions}
element={elementName}
/>
<DetailItem
label="Gacha Available"
sublabel="Can be pulled from gacha"
bind:value={editData.gacha_available}
editable={true}
type="checkbox"
element={elementName}
/>
<DetailItem
label="Promotions"
sublabel="Gacha pools where this character appears"
editable={true}
>
<MultiSelect
size="medium"
options={promotionOptions}
bind:value={editData.promotions}
placeholder="Select promotions"
contained
/>
</DetailItem>
{:else}
<DetailItem label="Element">
<ElementLabel element={character.element} size="medium" />
</DetailItem>
<DetailItem label="Race 1" value={getRaceLabel(character.race?.[0])} />
<DetailItem label="Race 2" value={getRaceLabel(character.race?.[1])} />
<DetailItem label="Gender" value={getGenderLabel(character.gender)} />
<DetailItem label="Proficiency 1">
<ProficiencyLabel proficiency={character.proficiency?.[0] ?? 0} size="medium" />
</DetailItem>
<DetailItem label="Proficiency 2">
<ProficiencyLabel proficiency={character.proficiency?.[1] ?? 0} size="medium" />
</DetailItem>
<DetailItem label="Season" value={getSeasonName(character.season) || '—'} />
<DetailItem label="Series" value={formatSeriesDisplay(character.series)} />
<DetailItem label="Gacha Available" value={character.gachaAvailable ? 'Yes' : 'No'} />
<DetailItem
label="Promotions"
sublabel="Gacha pools where this character appears"
value={formatPromotionsDisplay(character.promotions)}
/>
{/if}
</DetailsContainer>