reviewed epic 9 stories

This commit is contained in:
Naser Mansour
2025-12-21 13:26:15 +02:00
parent 261a528578
commit 8431194c9a
11 changed files with 1651 additions and 251 deletions
@@ -3,6 +3,13 @@
## Epic Reference
**Epic 9:** Design & Branding Implementation
## Dependencies
- **Story 9.4** (Buttons): Button components must be styled before adding transitions
- **Story 9.5** (Forms): Form components must be complete for error shake animations
- **Story 9.6** (Cards): Card components must be styled before adding hover/lift effects
- **Story 9.7** (Navigation): Navigation must be complete for link transitions
- **Story 9.10** (Accessibility): Coordinates with `prefers-reduced-motion` requirements
## User Story
As a **user**,
I want **subtle, professional animations**,
@@ -38,6 +45,26 @@ So that **the interface feels polished and responsive**.
## Technical Notes
### Files to Create/Modify
| File | Action | Purpose |
|------|--------|---------|
| `resources/css/app.css` | Modify | Add animation utility classes and keyframes |
| `resources/views/components/skeleton.blade.php` | Create | Skeleton loader component |
| `resources/views/components/spinner.blade.php` | Create | Loading spinner component |
| `resources/views/components/toast.blade.php` | Create | Toast notification with slide-in animation |
| `resources/views/components/icons/checkmark.blade.php` | Create | Animated success checkmark SVG |
### Component Integration Points
- **Buttons** (`<flux:button>`): Add `transition-colors duration-150` to existing button styles
- **Cards**: Apply `.card-hover` class to interactive card components
- **Forms**: Use `.shake` class on form fields when validation fails (triggered via Alpine.js)
- **Livewire Loading**: Use `<x-spinner />` component with `wire:loading` directive
- **Toast Notifications**: Integrate with Livewire event dispatch for flash messages
### Animation CSS
```css
/* Base transitions */
.transition-default {
@@ -95,6 +122,29 @@ So that **the interface feels polished and responsive**.
.shake {
animation: shake 0.3s ease-in-out;
}
/* Reduced motion support - REQUIRED for accessibility */
@media (prefers-reduced-motion: reduce) {
.transition-default,
.transition-slow,
.card-hover,
.btn {
transition: none !important;
}
.skeleton {
animation: none !important;
}
.checkmark-animated path,
.shake {
animation: none !important;
}
.toast-enter-active {
transition: none !important;
}
}
```
```blade
@@ -117,6 +167,42 @@ So that **the interface feels polished and responsive**.
</div>
```
## Testing Requirements
### Testing Approach
- **Visual Inspection**: Manual browser testing for animation smoothness and timing
- **Pest Browser Tests**: Automated tests to verify animation classes are applied
- **Cross-Browser Testing**: Chrome, Firefox, Safari (animations can vary)
- **Reduced Motion Testing**: Verify animations disabled when preference is set
### Key Test Scenarios
| Scenario | Expected Result |
|----------|-----------------|
| Hover over button | Background color transitions smoothly (150ms) |
| Hover over card | Card lifts slightly with shadow increase (200ms) |
| Form validation fails | Input field shakes briefly |
| Content loading | Skeleton pulses until content loads |
| Action in progress | Spinner displays with `wire:loading` |
| Toast notification triggered | Toast slides in from right edge |
| `prefers-reduced-motion: reduce` enabled | All animations/transitions disabled |
### Pest Browser Test Example
```php
// tests/Browser/AnimationsTest.php
it('applies hover transition to buttons', function () {
visit('/login')
->assertPresent('button.transition-colors');
});
it('respects reduced motion preference', function () {
visit('/')
->withReducedMotion()
->assertStyleContains('.btn', 'transition', 'none');
});
```
## Definition of Done
- [ ] Button transitions work
- [ ] Card hover effects work
@@ -125,7 +211,8 @@ So that **the interface feels polished and responsive**.
- [ ] Toast animations work
- [ ] All animations subtle
- [ ] Reduced motion respected
- [ ] Tests pass
- [ ] Pest browser tests pass
- [ ] Cross-browser tested (Chrome, Firefox, Safari)
## Estimation
**Complexity:** Medium | **Effort:** 4 hours