feat(videos): add search, video toggle, and fix links
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
This commit is contained in:
parent
1e554f553a
commit
4aefad1eff
2 changed files with 174 additions and 102 deletions
|
|
@ -31,7 +31,9 @@ def get_all_videos(
|
|||
Show.slug.label("show_slug"),
|
||||
Venue.name.label("venue_name"),
|
||||
Venue.city.label("venue_city"),
|
||||
Venue.state.label("venue_state")
|
||||
Venue.state.label("venue_state"),
|
||||
Performance.slug.label("performance_slug"),
|
||||
Venue.slug.label("venue_slug")
|
||||
)
|
||||
.join(Song, Performance.song_id == Song.id)
|
||||
.join(Show, Performance.show_id == Show.id)
|
||||
|
|
@ -57,7 +59,9 @@ def get_all_videos(
|
|||
"show_slug": r[7],
|
||||
"venue_name": r[8],
|
||||
"venue_city": r[9],
|
||||
"venue_state": r[10]
|
||||
"venue_state": r[10],
|
||||
"performance_slug": r[11],
|
||||
"venue_slug": r[12]
|
||||
}
|
||||
for r in perf_results
|
||||
]
|
||||
|
|
@ -71,7 +75,8 @@ def get_all_videos(
|
|||
Show.slug,
|
||||
Venue.name.label("venue_name"),
|
||||
Venue.city.label("venue_city"),
|
||||
Venue.state.label("venue_state")
|
||||
Venue.state.label("venue_state"),
|
||||
Venue.slug.label("venue_slug")
|
||||
)
|
||||
.join(Venue, Show.venue_id == Venue.id)
|
||||
.where(Show.youtube_link != None)
|
||||
|
|
@ -91,7 +96,8 @@ def get_all_videos(
|
|||
"show_slug": r[3],
|
||||
"venue_name": r[4],
|
||||
"venue_city": r[5],
|
||||
"venue_state": r[6]
|
||||
"venue_state": r[6],
|
||||
"venue_slug": r[7]
|
||||
}
|
||||
for r in show_results
|
||||
]
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ interface PerformanceVideo {
|
|||
venue_name: string
|
||||
venue_city: string
|
||||
venue_state: string | null
|
||||
performance_slug?: string
|
||||
venue_slug: string
|
||||
}
|
||||
|
||||
interface ShowVideo {
|
||||
|
|
@ -32,6 +34,7 @@ interface ShowVideo {
|
|||
venue_name: string
|
||||
venue_city: string
|
||||
venue_state: string | null
|
||||
venue_slug: string
|
||||
}
|
||||
|
||||
interface VideoStats {
|
||||
|
|
@ -46,6 +49,8 @@ export default function VideosPage() {
|
|||
const [stats, setStats] = useState<VideoStats | null>(null)
|
||||
const [loading, setLoading] = useState(true)
|
||||
const [activeTab, setActiveTab] = useState<"all" | "songs" | "shows">("all")
|
||||
const [searchQuery, setSearchQuery] = useState("")
|
||||
const [expandedVideoId, setExpandedVideoId] = useState<string | null>(null)
|
||||
|
||||
useEffect(() => {
|
||||
Promise.all([
|
||||
|
|
@ -66,6 +71,14 @@ export default function VideosPage() {
|
|||
return match ? match[1] : null
|
||||
}
|
||||
|
||||
const toggleVideo = (uniqueId: string) => {
|
||||
if (expandedVideoId === uniqueId) {
|
||||
setExpandedVideoId(null)
|
||||
} else {
|
||||
setExpandedVideoId(uniqueId)
|
||||
}
|
||||
}
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div className="container py-10 space-y-6">
|
||||
|
|
@ -79,14 +92,40 @@ export default function VideosPage() {
|
|||
)
|
||||
}
|
||||
|
||||
const filteredPerformances = activeTab === "shows" ? [] : performances
|
||||
const filteredShows = activeTab === "songs" ? [] : shows
|
||||
// Filter logic
|
||||
const query = searchQuery.toLowerCase()
|
||||
const filterVideo = (v: PerformanceVideo | ShowVideo) => {
|
||||
if (v.type === "full_show") {
|
||||
const show = v as ShowVideo
|
||||
return show.venue_name.toLowerCase().includes(query) ||
|
||||
show.venue_city.toLowerCase().includes(query) ||
|
||||
show.date.includes(query)
|
||||
} else {
|
||||
const perf = v as PerformanceVideo
|
||||
return perf.song_title.toLowerCase().includes(query) ||
|
||||
perf.venue_name.toLowerCase().includes(query) ||
|
||||
perf.venue_city.toLowerCase().includes(query) ||
|
||||
perf.date.includes(query)
|
||||
}
|
||||
}
|
||||
|
||||
// Combine and sort by date
|
||||
const allVideos = [
|
||||
...filteredPerformances.map(p => ({ ...p, sortDate: p.date })),
|
||||
...filteredShows.map(s => ({ ...s, sortDate: s.date, song_title: "Full Show" }))
|
||||
].sort((a, b) => new Date(b.sortDate).getTime() - new Date(a.sortDate).getTime())
|
||||
let allVideos = [
|
||||
...performances,
|
||||
...shows.map(s => ({ ...s, song_title: "Full Show" }))
|
||||
].sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime())
|
||||
|
||||
// Apply Tab Filter
|
||||
if (activeTab === "songs") {
|
||||
allVideos = allVideos.filter(v => v.type === "performance")
|
||||
} else if (activeTab === "shows") {
|
||||
allVideos = allVideos.filter(v => v.type === "full_show")
|
||||
}
|
||||
|
||||
// Apply Search Filter
|
||||
if (searchQuery) {
|
||||
allVideos = allVideos.filter(filterVideo)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="container py-10 space-y-8">
|
||||
|
|
@ -102,107 +141,134 @@ export default function VideosPage() {
|
|||
)}
|
||||
</div>
|
||||
|
||||
{/* Filter Tabs */}
|
||||
<div className="flex gap-2">
|
||||
<button
|
||||
onClick={() => setActiveTab("all")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "all"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
All Videos
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab("songs")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "songs"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
<Music className="h-4 w-4 inline mr-1" />
|
||||
Songs ({stats?.performance_videos})
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab("shows")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "shows"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
<Film className="h-4 w-4 inline mr-1" />
|
||||
Full Shows ({stats?.full_show_videos})
|
||||
</button>
|
||||
<div className="flex flex-col md:flex-row gap-4 justify-between items-start md:items-center">
|
||||
{/* Filter Tabs */}
|
||||
<div className="flex gap-2">
|
||||
<button
|
||||
onClick={() => setActiveTab("all")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "all"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
All
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab("songs")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "songs"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
Songs
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab("shows")}
|
||||
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors ${activeTab === "shows"
|
||||
? "bg-primary text-primary-foreground"
|
||||
: "bg-muted hover:bg-muted/80"
|
||||
}`}
|
||||
>
|
||||
Shows
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{/* Search Input */}
|
||||
<div className="w-full md:w-72">
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Search videos..."
|
||||
value={searchQuery}
|
||||
onChange={(e) => setSearchQuery(e.target.value)}
|
||||
className="flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Video List */}
|
||||
<Card>
|
||||
<CardContent className="p-0">
|
||||
<div className="divide-y">
|
||||
{allVideos.map((video, idx) => (
|
||||
<div
|
||||
key={`${video.type}-${video.id}-${idx}`}
|
||||
className="flex items-center gap-4 p-4 hover:bg-muted/50 transition-colors"
|
||||
>
|
||||
{/* YouTube Icon/Link */}
|
||||
<a
|
||||
href={video.youtube_link}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="shrink-0 text-red-600 hover:text-red-500 transition-colors"
|
||||
title="Watch on YouTube"
|
||||
>
|
||||
<Youtube className="h-6 w-6" />
|
||||
</a>
|
||||
{allVideos.map((video, idx) => {
|
||||
const uniqueId = `${video.type}-${video.id}`
|
||||
const isExpanded = expandedVideoId === uniqueId
|
||||
const videoId = extractVideoId(video.youtube_link)
|
||||
|
||||
{/* Content */}
|
||||
<div className="flex-1 min-w-0">
|
||||
<div className="flex items-center gap-2 flex-wrap">
|
||||
{video.type === "full_show" ? (
|
||||
<Link
|
||||
href={`/shows/${video.show_slug || video.id}`}
|
||||
className="font-medium hover:underline text-primary"
|
||||
>
|
||||
Full Show
|
||||
</Link>
|
||||
) : (
|
||||
<Link
|
||||
href={`/shows/${(video as PerformanceVideo).show_slug || (video as PerformanceVideo).show_id}`}
|
||||
className="font-medium hover:underline"
|
||||
>
|
||||
{(video as PerformanceVideo).song_title}
|
||||
</Link>
|
||||
)}
|
||||
<Badge variant={video.type === "full_show" ? "default" : "secondary"} className="text-xs">
|
||||
{video.type === "full_show" ? "Full Show" : "Song"}
|
||||
</Badge>
|
||||
</div>
|
||||
<div className="flex items-center gap-3 text-sm text-muted-foreground mt-1">
|
||||
<span className="flex items-center gap-1">
|
||||
<Calendar className="h-3 w-3" />
|
||||
{new Date(video.date).toLocaleDateString(undefined, {
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric"
|
||||
})}
|
||||
</span>
|
||||
<span className="flex items-center gap-1">
|
||||
<MapPin className="h-3 w-3" />
|
||||
{video.venue_name}, {video.venue_city}
|
||||
{video.venue_state && `, ${video.venue_state}`}
|
||||
</span>
|
||||
return (
|
||||
<div key={uniqueId} className="flex flex-col">
|
||||
<div className="flex items-center gap-4 p-4 hover:bg-muted/50 transition-colors">
|
||||
{/* Play Icon Trigger */}
|
||||
<button
|
||||
onClick={() => toggleVideo(uniqueId)}
|
||||
className="shrink-0 text-red-600 hover:text-red-500 transition-colors"
|
||||
title={isExpanded ? "Close video" : "Watch video"}
|
||||
>
|
||||
<Youtube className="h-6 w-6" />
|
||||
</button>
|
||||
|
||||
{/* Content */}
|
||||
<div className="flex-1 min-w-0">
|
||||
<div className="flex items-center gap-2 flex-wrap">
|
||||
{video.type === "full_show" ? (
|
||||
<Link
|
||||
href={`/shows/${video.show_slug}`}
|
||||
className="font-medium hover:underline text-primary text-lg"
|
||||
>
|
||||
Full Show
|
||||
</Link>
|
||||
) : (
|
||||
<Link
|
||||
href={`/performances/${(video as PerformanceVideo).performance_slug}`}
|
||||
className="font-medium hover:underline text-lg"
|
||||
>
|
||||
{(video as PerformanceVideo).song_title}
|
||||
</Link>
|
||||
)}
|
||||
</div>
|
||||
<div className="flex items-center gap-2 text-sm text-muted-foreground mt-1">
|
||||
<Link href={`/shows/${video.show_slug}`} className="flex items-center gap-1 hover:underline hover:text-foreground">
|
||||
<Calendar className="h-3 w-3" />
|
||||
{new Date(video.date).toLocaleDateString(undefined, {
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric"
|
||||
})}
|
||||
</Link>
|
||||
<span>•</span>
|
||||
<Link href={`/venues/${video.venue_slug}`} className="flex items-center gap-1 hover:underline hover:text-foreground">
|
||||
<MapPin className="h-3 w-3" />
|
||||
{video.venue_name}, {video.venue_city}
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Watch Button */}
|
||||
<button
|
||||
onClick={() => toggleVideo(uniqueId)}
|
||||
className="text-sm font-medium text-primary hover:underline shrink-0"
|
||||
>
|
||||
{isExpanded ? "Close video" : "Watch video"}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{/* Video Embed Accordion */}
|
||||
{isExpanded && videoId && (
|
||||
<div className="bg-black/5 p-4 border-t border-b">
|
||||
<div className="aspect-video w-full max-w-4xl mx-auto rounded-lg overflow-hidden shadow-xl">
|
||||
<iframe
|
||||
width="100%"
|
||||
height="100%"
|
||||
src={`https://www.youtube.com/embed/${videoId}?autoplay=1`}
|
||||
title="YouTube video player"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowFullScreen
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Show Link */}
|
||||
<Link
|
||||
href={`/shows/${video.show_slug || (video.type === "full_show" ? video.id : (video as PerformanceVideo).show_id)}`}
|
||||
className="text-sm text-muted-foreground hover:text-foreground transition-colors shrink-0"
|
||||
>
|
||||
View Show →
|
||||
</Link>
|
||||
</div>
|
||||
))}
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue