feat: add hidden flag to specials
This commit is contained in:
@@ -12,6 +12,7 @@ interface Special {
|
||||
launchDate?: string;
|
||||
endDate?: string;
|
||||
curator?: string;
|
||||
hidden?: boolean;
|
||||
_count?: {
|
||||
songs: number;
|
||||
};
|
||||
@@ -88,6 +89,7 @@ export default function AdminPage() {
|
||||
const [newSpecialLaunchDate, setNewSpecialLaunchDate] = useState('');
|
||||
const [newSpecialEndDate, setNewSpecialEndDate] = useState('');
|
||||
const [newSpecialCurator, setNewSpecialCurator] = useState('');
|
||||
const [newSpecialHidden, setNewSpecialHidden] = useState(false);
|
||||
|
||||
const [editingSpecialId, setEditingSpecialId] = useState<number | null>(null);
|
||||
const [editSpecialName, setEditSpecialName] = useState('');
|
||||
@@ -97,6 +99,7 @@ export default function AdminPage() {
|
||||
const [editSpecialLaunchDate, setEditSpecialLaunchDate] = useState('');
|
||||
const [editSpecialEndDate, setEditSpecialEndDate] = useState('');
|
||||
const [editSpecialCurator, setEditSpecialCurator] = useState('');
|
||||
const [editSpecialHidden, setEditSpecialHidden] = useState(false);
|
||||
|
||||
// News state
|
||||
const [news, setNews] = useState<News[]>([]);
|
||||
@@ -268,6 +271,7 @@ export default function AdminPage() {
|
||||
launchDate: newSpecialLaunchDate || null,
|
||||
endDate: newSpecialEndDate || null,
|
||||
curator: newSpecialCurator || null,
|
||||
hidden: newSpecialHidden,
|
||||
}),
|
||||
});
|
||||
if (res.ok) {
|
||||
@@ -278,6 +282,7 @@ export default function AdminPage() {
|
||||
setNewSpecialLaunchDate('');
|
||||
setNewSpecialEndDate('');
|
||||
setNewSpecialCurator('');
|
||||
setNewSpecialHidden(false);
|
||||
fetchSpecials();
|
||||
} else {
|
||||
alert('Failed to create special');
|
||||
@@ -363,6 +368,7 @@ export default function AdminPage() {
|
||||
setEditSpecialLaunchDate(special.launchDate ? new Date(special.launchDate).toISOString().split('T')[0] : '');
|
||||
setEditSpecialEndDate(special.endDate ? new Date(special.endDate).toISOString().split('T')[0] : '');
|
||||
setEditSpecialCurator(special.curator || '');
|
||||
setEditSpecialHidden(special.hidden || false);
|
||||
};
|
||||
|
||||
const saveEditedSpecial = async () => {
|
||||
@@ -379,6 +385,7 @@ export default function AdminPage() {
|
||||
launchDate: editSpecialLaunchDate || null,
|
||||
endDate: editSpecialEndDate || null,
|
||||
curator: editSpecialCurator || null,
|
||||
hidden: editSpecialHidden,
|
||||
}),
|
||||
});
|
||||
if (res.ok) {
|
||||
@@ -632,6 +639,15 @@ export default function AdminPage() {
|
||||
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
||||
<label style={{ fontSize: '0.75rem', color: '#666' }}>Curator</label>
|
||||
<input type="text" placeholder="Curator name" value={newSpecialCurator} onChange={e => setNewSpecialCurator(e.target.value)} className="form-input" />
|
||||
<label style={{ display: 'flex', alignItems: 'center', gap: '0.25rem', fontSize: '0.875rem', cursor: 'pointer', marginTop: '0.5rem' }}>
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={newSpecialHidden}
|
||||
onChange={e => setNewSpecialHidden(e.target.checked)}
|
||||
style={{ width: '1rem', height: '1rem' }}
|
||||
/>
|
||||
Hidden Special (not in navigation)
|
||||
</label>
|
||||
</div>
|
||||
<button type="submit" className="btn-primary" style={{ height: '38px' }}>Add Special</button>
|
||||
</div>
|
||||
@@ -651,7 +667,7 @@ export default function AdminPage() {
|
||||
}}
|
||||
>
|
||||
<span>
|
||||
{special.name} ({special._count?.songs || 0})
|
||||
{special.hidden && <span title="Hidden from navigation">👁️🗨️</span>} {special.name} ({special._count?.songs || 0})
|
||||
</span>
|
||||
{special.subtitle && (
|
||||
<span
|
||||
@@ -711,6 +727,15 @@ export default function AdminPage() {
|
||||
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
||||
<label style={{ fontSize: '0.75rem', color: '#666' }}>Curator</label>
|
||||
<input type="text" value={editSpecialCurator} onChange={e => setEditSpecialCurator(e.target.value)} className="form-input" />
|
||||
<label style={{ display: 'flex', alignItems: 'center', gap: '0.25rem', fontSize: '0.875rem', cursor: 'pointer', marginTop: '0.5rem' }}>
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={editSpecialHidden}
|
||||
onChange={e => setEditSpecialHidden(e.target.checked)}
|
||||
style={{ width: '1rem', height: '1rem' }}
|
||||
/>
|
||||
Hidden Special
|
||||
</label>
|
||||
</div>
|
||||
<button onClick={saveEditedSpecial} className="btn-primary" style={{ height: '38px' }}>Save</button>
|
||||
<button onClick={() => setEditingSpecialId(null)} className="btn-secondary" style={{ height: '38px' }}>Cancel</button>
|
||||
|
||||
Reference in New Issue
Block a user