- Infinite loop carousels for Similar Artworks & Trending rails
- Mouse wheel horizontal scrolling on both carousels
- Author avatar shown on hover in RailCard (similar + trending)
- Removed "View" badge from RailCard hover overlay
- Added `id` to Meilisearch filterable attributes
- Auto-prepend Scout prefix in meilisearch:configure-index command
- Added author name + avatar to Similar Artworks API response
- Added avatar_url to ArtworkListResource author object
- Added direct /art/{id}/{slug} URL to ArtworkListResource
- Fixed race condition: Similar Artworks no longer briefly shows trending items
- Fixed user_profiles eager load (user_id primary key, not id)
- Bumped /api/art/{id}/similar rate limit to 300/min
- Removed decorative heart icons from tag pills
- Moved ReactionBar under artwork description
75 lines
3.3 KiB
JavaScript
75 lines
3.3 KiB
JavaScript
import React from 'react'
|
|
|
|
const AVATAR_FALLBACK = 'https://files.skinbase.org/default/avatar_default.webp'
|
|
|
|
export default function HomeWelcomeRow({ user_data }) {
|
|
if (!user_data) return null
|
|
|
|
const { name, avatar, messages_unread, notifications_unread, url } = user_data
|
|
|
|
const firstName = name?.split(' ')[0] || name || 'there'
|
|
|
|
return (
|
|
<section className="border-b border-white/5 bg-nova-900/60 backdrop-blur-sm">
|
|
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-4">
|
|
<div className="flex flex-wrap items-center justify-between gap-3">
|
|
|
|
{/* Left: greeting */}
|
|
<div className="flex items-center gap-3">
|
|
<a href={url || '/profile'}>
|
|
<img
|
|
src={avatar || AVATAR_FALLBACK}
|
|
alt={name}
|
|
className="h-9 w-9 rounded-full object-cover ring-2 ring-white/10 hover:ring-accent/60 transition"
|
|
onError={(e) => { e.currentTarget.src = AVATAR_FALLBACK }}
|
|
/>
|
|
</a>
|
|
<div>
|
|
<p className="text-sm text-soft">Welcome back,</p>
|
|
<p className="text-sm font-semibold text-white leading-tight">{firstName}</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Right: action badges */}
|
|
<div className="flex items-center gap-2">
|
|
|
|
{messages_unread > 0 && (
|
|
<a
|
|
href="/messages"
|
|
className="inline-flex items-center gap-1.5 rounded-lg bg-nova-800 px-3 py-1.5 text-xs font-medium text-white ring-1 ring-white/10 hover:bg-nova-700 transition"
|
|
>
|
|
<svg className="h-3.5 w-3.5 text-accent shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
|
|
</svg>
|
|
{messages_unread} new
|
|
</a>
|
|
)}
|
|
|
|
{notifications_unread > 0 && (
|
|
<a
|
|
href="/notifications"
|
|
className="inline-flex items-center gap-1.5 rounded-lg bg-nova-800 px-3 py-1.5 text-xs font-medium text-white ring-1 ring-white/10 hover:bg-nova-700 transition"
|
|
>
|
|
<svg className="h-3.5 w-3.5 text-yellow-400 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
|
|
</svg>
|
|
{notifications_unread}
|
|
</a>
|
|
)}
|
|
|
|
<a
|
|
href="/upload"
|
|
className="inline-flex items-center gap-1.5 rounded-lg bg-accent px-3 py-1.5 text-xs font-semibold text-white shadow hover:brightness-110 transition"
|
|
>
|
|
<svg className="h-3.5 w-3.5 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2.5}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
|
|
</svg>
|
|
Upload
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|