mirror of
https://github.com/mmahdium/portfolio.git
synced 2026-08-16 21:14:31 +03:30
Story Context Generation Complete: - 3-1: PDF Generation API Route context (8 ACs, Puppeteer interfaces) - 3-2: PDF Download Composable context (8 ACs, blob handling) - 3-3: Download Button Integration context (8 ACs, UButton binding) Each context includes: - Acceptance criteria mapping - Relevant code artifacts and snippets - Interface definitions - Constraints and dependencies - Test ideas per AC Status Updates: - All 3 stories: drafted → ready-for-dev Files Created: - docs/sprint-artifacts/3-1-create-pdf-generation-api-route.context.xml - docs/sprint-artifacts/3-2-create-pdf-download-composable.context.xml - docs/sprint-artifacts/3-3-connect-download-button-to-pdf-generation.context.xml Files Modified: - docs/sprint-artifacts/sprint-status.yaml - docs/sprint-artifacts/3-1-create-pdf-generation-api-route.md - docs/sprint-artifacts/3-2-create-pdf-download-composable.md - docs/sprint-artifacts/3-3-connect-download-button-to-pdf-generation.md Ready for: Dev Agent implementation
4.3 KiB
4.3 KiB
Story 3.3: Connect Download Button to PDF Generation
Status: ready-for-dev
Story
As a user, I want to click the download button and get my PDF, so that I can use my resume for job applications.
Acceptance Criteria
- AC1: Given I click the download button, when PDF generation starts, then the button shows loading spinner
- AC2: The button is disabled during PDF generation
- AC3: Given PDF generation succeeds, when the PDF is ready, then the browser downloads the file
- AC4: Downloaded filename is "Ali_Arghyani_Resume.pdf"
- AC5: Button returns to normal state after download completes
- AC6: Given PDF generation fails, when the error occurs, then a toast notification appears
- AC7: Button returns to normal state after error
- AC8: Button works correctly after error (can retry)
Tasks / Subtasks
-
Update ResumeDownloadButton component (AC: #1-#8)
- Import
useResumePdf()composable - Destructure
isGeneratinganddownloadPdf - Bind
:loading="isGenerating"to UButton - Bind
:disabled="isGenerating"to UButton - Bind
@click="downloadPdf"to UButton - Remove placeholder click handler
- Import
-
Test full download flow
- Click button, verify spinner appears
- Verify button is disabled during generation
- Verify PDF downloads with correct filename
- Verify button returns to normal after download
- Test error handling (disconnect network)
- Verify toast appears on error
- Verify button works after error (retry)
Dev Notes
Architecture Alignment
From Architecture Doc:
- Component:
app/components/resume/ResumeDownloadButton.vue - Uses
useResumePdf()composable - Uses Nuxt UI
UButtonwith loading state
From Tech Spec Epic 3:
- AC6, AC8 map to this story
- Final integration story for Epic 3
Learnings from Previous Stories
From Story 2.5 (Status: done)
- Download button already created with placeholder handler
- Print mode detection implemented via
isPrintModeprop - Button has correct styling and position
From Story 3.2 (Status: drafted)
useResumePdf()composable providesisGeneratinganddownloadPdf- Error handling with toast notifications
Implementation Notes
Current ResumeDownloadButton.vue (from Story 2.5):
<script setup lang="ts">
interface Props {
isPrintMode?: boolean
}
defineProps<Props>()
function handleDownload() {
console.log('Download PDF clicked')
}
</script>
<template>
<UButton
v-if="!isPrintMode"
icon="i-heroicons-arrow-down-tray"
size="lg"
color="primary"
class="fixed bottom-6 right-6 shadow-lg no-print z-50"
@click="handleDownload"
>
<span class="hidden sm:inline">Download PDF</span>
</UButton>
</template>
Updated ResumeDownloadButton.vue:
<script setup lang="ts">
interface Props {
isPrintMode?: boolean
}
defineProps<Props>()
const { isGenerating, downloadPdf } = useResumePdf()
</script>
<template>
<UButton
v-if="!isPrintMode"
icon="i-heroicons-arrow-down-tray"
size="lg"
color="primary"
:loading="isGenerating"
:disabled="isGenerating"
class="fixed bottom-6 right-6 shadow-lg no-print z-50"
@click="downloadPdf"
>
<span class="hidden sm:inline">Download PDF</span>
</UButton>
</template>
Testing Checklist
- Click button shows loading spinner
- Button is disabled during generation
- PDF downloads automatically
- Filename is "Ali_Arghyani_Resume.pdf"
- Button returns to normal after success
- Error shows toast notification
- Button returns to normal after error
- Can retry after error
- Print mode still hides button
References
- [Source: docs/architecture.md#Loading-State]
- [Source: docs/sprint-artifacts/tech-spec-epic-3.md#AC6-AC8]
- [Source: docs/sprint-artifacts/2-5-create-download-button-component.md]
Dev Agent Record
Context Reference
Agent Model Used
Debug Log References
Completion Notes List
File List
Change Log:
- 2025-12-01: Story drafted by SM agent (Bob)