chore: remove all node_modules directories from repo
This commit is contained in:
@@ -267,6 +267,24 @@ export const Icons = {
|
||||
<path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"/>
|
||||
</svg>
|
||||
),
|
||||
spinner: (
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M12 2a10 10 0 0 1 10 10" opacity="0.3"/>
|
||||
</svg>
|
||||
),
|
||||
alert: (
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
|
||||
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3.05h16.94a2 2 0 0 0 1.71-3.05L13.71 3.86a2 2 0 0 0-3.42 0z"/>
|
||||
<line x1="12" y1="9" x2="12" y2="13"/>
|
||||
<line x1="12" y1="17" x2="12.01" y2="17"/>
|
||||
</svg>
|
||||
),
|
||||
checkmark: (
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
|
||||
<polyline points="20 6 9 17 4 12"/>
|
||||
</svg>
|
||||
),
|
||||
}
|
||||
|
||||
// Icon component wrapper
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
$(cat Icons.jsx | sed '/^ refresh: (/,/^ ),$/a\
|
||||
\ spinner: (\
|
||||
\ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">\
|
||||
\ <circle cx="12" cy="12" r="10"/>\
|
||||
\ <path d="M12 2a10 10 0 0 1 10 10" opacity="0.3"/>\
|
||||
\ </svg>\
|
||||
\ ),\
|
||||
\ alert: (\
|
||||
\ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">\
|
||||
\ <path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3.05h16.94a2 2 0 0 0 1.71-3.05L13.71 3.86a2 2 0 0 0-3.42 0z"/>\
|
||||
\ <line x1="12" y1="9" x2="12" y2="13"/>\
|
||||
\ <line x1="12" y1="17" x2="12.01" y2="17"/>\
|
||||
\ </svg>\
|
||||
\ ),\
|
||||
\ checkmark: (\
|
||||
\ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">\
|
||||
\ <polyline points="20 6 9 17 4 12"/>\
|
||||
\ </svg>\
|
||||
\ ),')</EOFTEMP
|
||||
@@ -405,6 +405,98 @@
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
/* Sync Status Indicator - Saving State */
|
||||
.sync-status.saving {
|
||||
background: #cfe8fc;
|
||||
color: #004085;
|
||||
animation: pulse 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
/* Spinner animation for saving state */
|
||||
.icon-spinner {
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
/* Save Timeout Warning Banner */
|
||||
.timeout-banner {
|
||||
background: #fff3cd;
|
||||
border-bottom: 1px solid #ffeaa7;
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
color: #856404;
|
||||
font-size: 0.95rem;
|
||||
animation: slideDown 0.3s ease-out;
|
||||
}
|
||||
|
||||
/* Toast Notification Container */
|
||||
.toast {
|
||||
position: fixed;
|
||||
bottom: 1rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 1rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
font-weight: 500;
|
||||
z-index: 2000;
|
||||
animation: slideUp 0.3s ease-out;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
max-width: 90vw;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
background: #d4edda;
|
||||
color: #155724;
|
||||
}
|
||||
|
||||
.toast-error {
|
||||
background: #f8d7da;
|
||||
color: #721c24;
|
||||
}
|
||||
|
||||
@keyframes slideUp {
|
||||
from {
|
||||
transform: translateX(-50%) translateY(100%);
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
transform: translateX(-50%) translateY(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile adjustments for toast */
|
||||
@media (max-width: 600px) {
|
||||
.toast {
|
||||
bottom: 2rem;
|
||||
left: 1rem;
|
||||
right: 1rem;
|
||||
transform: none;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.timeout-banner {
|
||||
font-size: 0.9rem;
|
||||
padding: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Mobile/Tablet Adjustments */
|
||||
@media (max-width: 600px) {
|
||||
.page-header {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { useState } from 'react'
|
||||
import { useState, useRef, useEffect } from 'react'
|
||||
import { Icon } from '../components/Icons'
|
||||
import ExercisePicker from '../components/ExercisePicker'
|
||||
import { useDraftWorkout } from '../hooks/useDraftWorkout'
|
||||
@@ -16,8 +16,38 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
const [draftPromptShown, setDraftPromptShown] = useState(false)
|
||||
const [retryCount, setRetryCount] = useState(0)
|
||||
const [lastSavePayload, setLastSavePayload] = useState(null)
|
||||
|
||||
// Timeout and toast state
|
||||
const [saveTimeout, setSaveTimeout] = useState(false)
|
||||
const [toast, setToast] = useState(null) // { type, message }
|
||||
const saveStartTimeRef = useRef(null)
|
||||
const saveTimeoutRef = useRef(null)
|
||||
const toastTimeoutRef = useRef(null)
|
||||
|
||||
// Show draft recovery prompt on first render
|
||||
|
||||
// Cleanup timeouts on unmount
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
if (saveTimeoutRef.current) clearTimeout(saveTimeoutRef.current)
|
||||
if (toastTimeoutRef.current) clearTimeout(toastTimeoutRef.current)
|
||||
}
|
||||
}, [])
|
||||
|
||||
// Show and auto-hide toast notifications
|
||||
useEffect(() => {
|
||||
if (!toast) return
|
||||
|
||||
if (toastTimeoutRef.current) clearTimeout(toastTimeoutRef.current)
|
||||
toastTimeoutRef.current = setTimeout(() => {
|
||||
setToast(null)
|
||||
}, 3000)
|
||||
|
||||
return () => {
|
||||
if (toastTimeoutRef.current) clearTimeout(toastTimeoutRef.current)
|
||||
}
|
||||
}, [toast])
|
||||
|
||||
// Show draft recovery prompt on first render
|
||||
const handleRecoverDraft = () => {
|
||||
if (hasDraft && !draftPromptShown) {
|
||||
setDraftPromptShown(true)
|
||||
@@ -107,8 +137,19 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
setSaving(true)
|
||||
setSyncStatus('saving')
|
||||
setError(null)
|
||||
setSaveTimeout(false)
|
||||
setToast(null)
|
||||
setRetryCount(prev => prev + 1)
|
||||
|
||||
// Track save start time for timeout warning
|
||||
saveStartTimeRef.current = Date.now()
|
||||
|
||||
// Set timeout warning at 8 seconds
|
||||
if (saveTimeoutRef.current) clearTimeout(saveTimeoutRef.current)
|
||||
saveTimeoutRef.current = setTimeout(() => {
|
||||
setSaveTimeout(true)
|
||||
}, 8000)
|
||||
|
||||
try {
|
||||
// Format for API
|
||||
const payload = {
|
||||
@@ -126,28 +167,41 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
// Call the save callback
|
||||
await onSave(workout.id, payload)
|
||||
|
||||
// Clear timeout warning
|
||||
if (saveTimeoutRef.current) clearTimeout(saveTimeoutRef.current)
|
||||
setSaveTimeout(false)
|
||||
|
||||
// Success: clear draft and show confirmation
|
||||
clearDraft()
|
||||
setSyncStatus('saved')
|
||||
setRetryCount(0) // Reset retry count on success
|
||||
|
||||
// Show success toast
|
||||
setToast({ type: 'success', message: 'Sparat!' })
|
||||
|
||||
// Log success
|
||||
console.log('Workout saved successfully', {
|
||||
workoutId: workout.id,
|
||||
exerciseCount: exercises.length,
|
||||
retryCount
|
||||
retryCount,
|
||||
duration: Date.now() - saveStartTimeRef.current
|
||||
})
|
||||
|
||||
// Reset status after 2 seconds
|
||||
setTimeout(() => setSyncStatus('idle'), 2000)
|
||||
} catch (err) {
|
||||
// Clear timeout warning
|
||||
if (saveTimeoutRef.current) clearTimeout(saveTimeoutRef.current)
|
||||
setSaveTimeout(false)
|
||||
|
||||
// Log error with context for debugging
|
||||
console.error('Failed to save workout:', {
|
||||
error: err,
|
||||
workoutId: workout.id,
|
||||
exerciseCount: exercises.length,
|
||||
retryCount,
|
||||
payload: lastSavePayload
|
||||
payload: lastSavePayload,
|
||||
duration: Date.now() - saveStartTimeRef.current
|
||||
})
|
||||
|
||||
// Determine error message based on error type
|
||||
@@ -155,6 +209,9 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
setError(errorMessage)
|
||||
setSyncStatus('error')
|
||||
|
||||
// Show error toast
|
||||
setToast({ type: 'error', message: 'Fel vid sparning' })
|
||||
|
||||
// Keep draft on error so user doesn't lose work
|
||||
// (useDraftWorkout already auto-saves, so no action needed here)
|
||||
} finally {
|
||||
@@ -216,6 +273,11 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
</button>
|
||||
<h1>Redigera pass</h1>
|
||||
<div className="save-header-group">
|
||||
{syncStatus === 'saving' && (
|
||||
<span className="sync-status saving">
|
||||
<Icon name="spinner" size={16} className="icon-spinner" /> Sparar...
|
||||
</span>
|
||||
)}
|
||||
{syncStatus === 'saved' && (
|
||||
<span className="sync-status saved">
|
||||
<Icon name="checkmark" size={16} /> Sparat
|
||||
@@ -230,13 +292,9 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
className="save-header-btn"
|
||||
onClick={handleSave}
|
||||
disabled={saving}
|
||||
title={saving ? 'Sparar...' : 'Spara ändringar'}
|
||||
>
|
||||
{syncStatus === 'saving' && (
|
||||
<>
|
||||
<Icon name="spinner" size={16} /> Sparar...
|
||||
</>
|
||||
)}
|
||||
{syncStatus !== 'saving' && 'Spara'}
|
||||
{syncStatus === 'saving' ? 'Sparar...' : 'Spara'}
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
@@ -263,6 +321,23 @@ export default function WorkoutEditPage({ workout, onBack, onSave }) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Save Timeout Warning */}
|
||||
{saveTimeout && (
|
||||
<div className="timeout-banner">
|
||||
<Icon name="alert" size={18} />
|
||||
<span>Sparningen tar längre än vanligt. Kontrollera din anslutning.</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Toast Notifications */}
|
||||
{toast && (
|
||||
<div className={`toast toast-${toast.type}`}>
|
||||
{toast.type === 'success' && <Icon name="checkmark" size={16} />}
|
||||
{toast.type === 'error' && <Icon name="alert" size={16} />}
|
||||
<span>{toast.message}</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<main className="edit-main">
|
||||
<div className="workout-meta-card">
|
||||
<h2>{workout.name}</h2>
|
||||
|
||||
Reference in New Issue
Block a user