- new CharacterImagesSection component - download button with progress polling - force re-download option - status display with progress bar
322 lines
9.2 KiB
Svelte
322 lines
9.2 KiB
Svelte
<svelte:options runes={true} />
|
|
|
|
<script lang="ts">
|
|
// SvelteKit imports
|
|
import { goto } from '$app/navigation'
|
|
|
|
// TanStack Query
|
|
import { createQuery } from '@tanstack/svelte-query'
|
|
import { entityQueries } from '$lib/api/queries/entity.queries'
|
|
import { entityAdapter } from '$lib/api/adapters/entity.adapter'
|
|
import { withInitialData } from '$lib/query/ssr'
|
|
|
|
// Components
|
|
import DetailScaffold from '$lib/features/database/detail/DetailScaffold.svelte'
|
|
import CharacterMetadataSection from '$lib/features/database/characters/sections/CharacterMetadataSection.svelte'
|
|
import CharacterUncapSection from '$lib/features/database/characters/sections/CharacterUncapSection.svelte'
|
|
import CharacterTaxonomySection from '$lib/features/database/characters/sections/CharacterTaxonomySection.svelte'
|
|
import CharacterStatsSection from '$lib/features/database/characters/sections/CharacterStatsSection.svelte'
|
|
import CharacterImagesSection from '$lib/features/database/characters/sections/CharacterImagesSection.svelte'
|
|
import DetailsContainer from '$lib/components/ui/DetailsContainer.svelte'
|
|
import { getCharacterImage } from '$lib/utils/images'
|
|
|
|
// Types
|
|
import type { PageData } from './$types'
|
|
|
|
let { data }: { data: PageData } = $props()
|
|
|
|
// Use TanStack Query with SSR initial data
|
|
const characterQuery = createQuery(() => ({
|
|
...entityQueries.character(data.character?.id ?? ''),
|
|
...withInitialData(data.character)
|
|
}))
|
|
|
|
// Get character from query
|
|
const character = $derived(characterQuery.data)
|
|
const userRole = $derived(data.role || 0)
|
|
const canEdit = $derived(userRole >= 7)
|
|
|
|
// Edit mode state
|
|
let editMode = $state(false)
|
|
|
|
// Query for related characters (same character_id)
|
|
const relatedQuery = createQuery(() => ({
|
|
queryKey: ['characters', 'related', character?.id],
|
|
queryFn: async () => {
|
|
if (!character?.id) return []
|
|
return entityAdapter.getRelatedCharacters(character.id)
|
|
},
|
|
enabled: !!character?.characterId && !editMode
|
|
}))
|
|
|
|
let isSaving = $state(false)
|
|
let saveError = $state<string | null>(null)
|
|
let saveSuccess = $state(false)
|
|
|
|
// Editable fields - create reactive state for each field
|
|
let editData = $state({
|
|
name: character?.name || '',
|
|
granblueId: character?.granblueId || '',
|
|
characterId: character?.characterId ?? (null as number | null),
|
|
rarity: character?.rarity || 1,
|
|
element: character?.element || 0,
|
|
race1: character?.race?.[0] ?? null,
|
|
race2: character?.race?.[1] ?? null,
|
|
gender: character?.gender || 0,
|
|
proficiency1: character?.proficiency?.[0] || 0,
|
|
proficiency2: character?.proficiency?.[1] || 0,
|
|
minHp: character?.hp?.minHp || 0,
|
|
maxHp: character?.hp?.maxHp || 0,
|
|
maxHpFlb: character?.hp?.maxHpFlb || 0,
|
|
minAtk: character?.atk?.minAtk || 0,
|
|
maxAtk: character?.atk?.maxAtk || 0,
|
|
maxAtkFlb: character?.atk?.maxAtkFlb || 0,
|
|
flb: character?.uncap?.flb || false,
|
|
ulb: character?.uncap?.ulb || false,
|
|
transcendence: character?.uncap?.transcendence || false,
|
|
special: character?.special || false
|
|
})
|
|
|
|
// Reset edit data when character changes
|
|
$effect(() => {
|
|
if (character) {
|
|
editData = {
|
|
name: character.name || '',
|
|
granblueId: character.granblueId || '',
|
|
characterId: character.characterId ?? null,
|
|
rarity: character.rarity || 1,
|
|
element: character.element || 0,
|
|
race1: character.race?.[0] ?? null,
|
|
race2: character.race?.[1] ?? null,
|
|
gender: character.gender || 0,
|
|
proficiency1: character.proficiency?.[0] || 0,
|
|
proficiency2: character.proficiency?.[1] || 0,
|
|
minHp: character.hp?.minHp || 0,
|
|
maxHp: character.hp?.maxHp || 0,
|
|
maxHpFlb: character.hp?.maxHpFlb || 0,
|
|
minAtk: character.atk?.minAtk || 0,
|
|
maxAtk: character.atk?.maxAtk || 0,
|
|
maxAtkFlb: character.atk?.maxAtkFlb || 0,
|
|
flb: character.uncap?.flb || false,
|
|
ulb: character.uncap?.ulb || false,
|
|
transcendence: character.uncap?.transcendence || false,
|
|
special: character.special || false
|
|
}
|
|
}
|
|
})
|
|
|
|
function toggleEditMode() {
|
|
editMode = !editMode
|
|
saveError = null
|
|
saveSuccess = false
|
|
|
|
// Reset data when canceling
|
|
if (!editMode && character) {
|
|
editData = {
|
|
name: character.name || '',
|
|
granblueId: character.granblueId || '',
|
|
characterId: character.characterId ?? null,
|
|
rarity: character.rarity || 1,
|
|
element: character.element || 0,
|
|
race1: character.race?.[0] ?? null,
|
|
race2: character.race?.[1] ?? null,
|
|
gender: character.gender || 0,
|
|
proficiency1: character.proficiency?.[0] || 0,
|
|
proficiency2: character.proficiency?.[1] || 0,
|
|
minHp: character.hp?.minHp || 0,
|
|
maxHp: character.hp?.maxHp || 0,
|
|
maxHpFlb: character.hp?.maxHpFlb || 0,
|
|
minAtk: character.atk?.minAtk || 0,
|
|
maxAtk: character.atk?.maxAtk || 0,
|
|
maxAtkFlb: character.atk?.maxAtkFlb || 0,
|
|
flb: character.uncap?.flb || false,
|
|
ulb: character.uncap?.ulb || false,
|
|
transcendence: character.uncap?.transcendence || false,
|
|
special: character.special || false
|
|
}
|
|
}
|
|
}
|
|
|
|
async function saveChanges() {
|
|
isSaving = true
|
|
saveError = null
|
|
saveSuccess = false
|
|
|
|
try {
|
|
// Prepare the data for API (convert to snake_case)
|
|
const payload = {
|
|
name: editData.name,
|
|
granblue_id: editData.granblueId,
|
|
character_id: editData.characterId,
|
|
rarity: editData.rarity,
|
|
element: editData.element,
|
|
race: [editData.race1, editData.race2].filter((r) => r !== null && r !== undefined),
|
|
gender: editData.gender,
|
|
proficiency: [editData.proficiency1, editData.proficiency2],
|
|
hp: {
|
|
min_hp: editData.minHp,
|
|
max_hp: editData.maxHp,
|
|
max_hp_flb: editData.maxHpFlb
|
|
},
|
|
atk: {
|
|
min_atk: editData.minAtk,
|
|
max_atk: editData.maxAtk,
|
|
max_atk_flb: editData.maxAtkFlb
|
|
},
|
|
uncap: {
|
|
flb: editData.flb,
|
|
ulb: editData.ulb,
|
|
transcendence: editData.transcendence
|
|
},
|
|
special: editData.special
|
|
}
|
|
|
|
// TODO: When backend endpoint is ready, make the API call here
|
|
// const response = await fetch(`/api/v1/characters/${character.id}`, {
|
|
// method: 'PUT',
|
|
// headers: { 'Content-Type': 'application/json' },
|
|
// body: JSON.stringify(payload)
|
|
// })
|
|
|
|
// For now, just simulate success
|
|
await new Promise((resolve) => setTimeout(resolve, 1000))
|
|
|
|
saveSuccess = true
|
|
editMode = false
|
|
|
|
// Show success message for 3 seconds
|
|
setTimeout(() => {
|
|
saveSuccess = false
|
|
}, 3000)
|
|
} catch (error) {
|
|
saveError = 'Failed to save changes. Please try again.'
|
|
console.error('Save error:', error)
|
|
} finally {
|
|
isSaving = false
|
|
}
|
|
}
|
|
|
|
// Helper function for character grid image
|
|
function getCharacterGridImage(character: any): string {
|
|
return getCharacterImage(character?.granblueId, 'grid', '01')
|
|
}
|
|
</script>
|
|
|
|
<div>
|
|
{#if character}
|
|
<DetailScaffold
|
|
type="character"
|
|
item={character}
|
|
image={getCharacterGridImage(character)}
|
|
showEdit={canEdit}
|
|
{editMode}
|
|
{isSaving}
|
|
{saveSuccess}
|
|
{saveError}
|
|
onEdit={toggleEditMode}
|
|
onSave={saveChanges}
|
|
onCancel={toggleEditMode}
|
|
>
|
|
<section class="details">
|
|
<CharacterMetadataSection {character} {editMode} bind:editData />
|
|
<CharacterUncapSection {character} {editMode} bind:editData />
|
|
<CharacterTaxonomySection {character} {editMode} bind:editData />
|
|
<CharacterStatsSection {character} {editMode} bind:editData />
|
|
|
|
{#if character?.id && character?.granblueId}
|
|
<CharacterImagesSection
|
|
characterId={character.id}
|
|
granblueId={character.granblueId}
|
|
{canEdit}
|
|
/>
|
|
{/if}
|
|
|
|
{#if !editMode && relatedQuery.data?.length}
|
|
<DetailsContainer title="Related Units">
|
|
<div class="related-units">
|
|
{#each relatedQuery.data as related}
|
|
<a href="/database/characters/{related.id}" class="related-unit">
|
|
<img
|
|
src={getCharacterImage(related.granblueId, 'grid', '01')}
|
|
alt={related.name.en}
|
|
class="related-image"
|
|
/>
|
|
<span class="related-name">{related.name.en}</span>
|
|
</a>
|
|
{/each}
|
|
</div>
|
|
</DetailsContainer>
|
|
{/if}
|
|
</section>
|
|
</DetailScaffold>
|
|
{:else}
|
|
<div class="not-found">
|
|
<h2>Character Not Found</h2>
|
|
<p>The character you're looking for could not be found.</p>
|
|
<button onclick={() => goto('/database/characters')}>Back to Characters</button>
|
|
</div>
|
|
{/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;
|
|
|
|
.not-found {
|
|
text-align: center;
|
|
padding: spacing.$unit * 4;
|
|
|
|
button {
|
|
background: #007bff;
|
|
color: white;
|
|
border: none;
|
|
padding: spacing.$unit * 0.5 spacing.$unit;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
margin-top: spacing.$unit;
|
|
|
|
&:hover {
|
|
background: #0056b3;
|
|
}
|
|
}
|
|
}
|
|
|
|
.details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.related-units {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: spacing.$unit-2x;
|
|
padding: spacing.$unit-2x;
|
|
}
|
|
|
|
.related-unit {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
color: colors.$grey-30;
|
|
|
|
&:hover .related-image {
|
|
transform: scale(1.05);
|
|
}
|
|
}
|
|
|
|
.related-image {
|
|
width: 128px;
|
|
height: auto;
|
|
border-radius: layout.$item-corner;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.related-name {
|
|
margin-top: spacing.$unit;
|
|
font-size: typography.$font-small;
|
|
text-align: center;
|
|
}
|
|
</style>
|