refactor: 예능 상세 페이지 썸네일/정보 분리 레이아웃

- 가로 flex → 세로 분리 (썸네일 카드 + 정보 카드)
- 썸네일: object-contain으로 원본 비율 유지, max-h 제한
- 기본 이미지: 카테고리 색상 배경 + Tv 아이콘
- 제목이 길어져도 레이아웃 깨지지 않음
- PC/모바일 모두 적용

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-04-05 14:03:48 +09:00
parent 2a1849f608
commit de3adc0ad6
2 changed files with 138 additions and 148 deletions

View file

@ -484,89 +484,83 @@ function MobileVarietySection({ schedule }) {
const hasThumbnail = !!schedule.thumbnailUrl; const hasThumbnail = !!schedule.thumbnailUrl;
const hasReplayUrl = !!schedule.replayUrl; const hasReplayUrl = !!schedule.replayUrl;
const isYoutubeReplay = hasReplayUrl && /youtu\.?be/i.test(schedule.replayUrl); const isYoutubeReplay = hasReplayUrl && /youtu\.?be/i.test(schedule.replayUrl);
const categoryColor = schedule.category?.color || '#06b6d4';
return ( return (
<div className="bg-white rounded-xl overflow-hidden shadow-sm"> <div className="space-y-3">
<div className="flex"> {/* 썸네일 카드 */}
{/* 썸네일 */} <div className="bg-white rounded-xl overflow-hidden shadow-sm flex items-center justify-center">
<div className="flex-shrink-0 w-28"> {hasThumbnail ? (
{hasThumbnail ? ( <img
<img src={schedule.thumbnailUrl}
src={schedule.thumbnailUrl} alt={schedule.title}
alt={schedule.title} className="max-h-[300px] object-contain"
className="w-full h-full object-cover" />
/> ) : (
) : ( <div
<div className="w-full h-36 flex items-center justify-center"
className="w-full h-full flex items-center justify-center" style={{ backgroundColor: `${categoryColor}10` }}
style={{ backgroundColor: `${schedule.category?.color || '#06b6d4'}15` }} >
<Tv size={36} style={{ color: categoryColor }} strokeWidth={1.5} />
</div>
)}
</div>
{/* 정보 카드 */}
<div className="bg-white rounded-xl shadow-sm p-4">
{/* 방송사 + 날짜 */}
<div className="flex items-center gap-2 mb-2">
{schedule.broadcaster && (
<span
className="inline-flex items-center gap-1 px-2 py-0.5 text-xs font-semibold rounded-md"
style={{ backgroundColor: `${categoryColor}15`, color: categoryColor }}
> >
<Tv size={32} style={{ color: schedule.category?.color || '#06b6d4' }} strokeWidth={1.5} /> <Tv size={10} />
</div> {schedule.broadcaster}
</span>
)} )}
<span className="text-xs text-gray-400">
{formatFullDate(schedule.date)}
{schedule.time && ` · ${formatTime(schedule.time)}`}
</span>
</div> </div>
{/* 콘텐츠 */} {/* 제목 */}
<div className="flex-1 p-4 flex flex-col justify-between"> <h1 className="font-bold text-gray-900 text-base leading-snug mb-3">
{/* 상단 */} {decodeHtmlEntities(schedule.title)}
<div> </h1>
{/* 방송사 + 날짜 */}
<div className="flex items-center gap-2 mb-2"> {/* 멤버 */}
{schedule.broadcaster && ( {members.length > 0 && (
<span <div className="flex flex-wrap gap-1.5 mb-3">
className="inline-flex items-center gap-1 px-2 py-0.5 text-xs font-semibold rounded-md" {isFullGroup ? (
style={{ <span className="px-2.5 py-0.5 bg-primary/10 text-primary text-xs font-medium rounded-full">
backgroundColor: `${schedule.category?.color || '#06b6d4'}15`, 프로미스나인
color: schedule.category?.color || '#06b6d4',
}}
>
<Tv size={10} />
{schedule.broadcaster}
</span>
)}
<span className="text-xs text-gray-400">
{formatFullDate(schedule.date)}
</span> </span>
</div> ) : (
members.map((member) => (
{/* 제목 */} <span key={member.id} className="px-2.5 py-0.5 bg-primary/10 text-primary text-xs font-medium rounded-full">
<h1 className="font-bold text-gray-900 text-base leading-snug mb-3"> {member.name}
{decodeHtmlEntities(schedule.title)} </span>
</h1> ))
{/* 멤버 */}
{members.length > 0 && (
<div className="flex flex-wrap gap-1.5">
{isFullGroup ? (
<span className="px-2.5 py-0.5 bg-primary/10 text-primary text-xs font-medium rounded-full">
프로미스나인
</span>
) : (
members.map((member) => (
<span key={member.id} className="px-2.5 py-0.5 bg-primary/10 text-primary text-xs font-medium rounded-full">
{member.name}
</span>
))
)}
</div>
)} )}
</div> </div>
)}
{/* 다시보기 */} {/* 다시보기 */}
{hasReplayUrl && ( {hasReplayUrl && (
<div className="mt-3"> <div className="pt-3 border-t border-gray-100">
<a <a
href={schedule.replayUrl} href={schedule.replayUrl}
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="inline-flex items-center gap-1.5 px-3 py-1.5 bg-gray-900 text-white text-xs font-medium rounded-full" className="inline-flex items-center gap-1.5 px-3 py-1.5 bg-gray-900 text-white text-xs font-medium rounded-full"
> >
{isYoutubeReplay ? <Play size={12} fill="currentColor" /> : <ExternalLink size={12} />} {isYoutubeReplay ? <Play size={12} fill="currentColor" /> : <ExternalLink size={12} />}
다시보기 다시보기
</a> </a>
</div> </div>
)} )}
</div>
</div> </div>
</div> </div>
); );

View file

@ -10,87 +10,83 @@ function VarietySection({ schedule }) {
const hasThumbnail = !!schedule.thumbnailUrl; const hasThumbnail = !!schedule.thumbnailUrl;
const hasReplayUrl = !!schedule.replayUrl; const hasReplayUrl = !!schedule.replayUrl;
const isYoutubeReplay = hasReplayUrl && /youtu\.?be/i.test(schedule.replayUrl); const isYoutubeReplay = hasReplayUrl && /youtu\.?be/i.test(schedule.replayUrl);
const categoryColor = schedule.category?.color || '#06b6d4';
return ( return (
<div className="bg-white rounded-2xl overflow-hidden shadow-sm border border-gray-100"> <div className="space-y-4">
<div className="flex"> {/* 썸네일 카드 */}
{/* 왼쪽: 썸네일 */} <div className="bg-white rounded-2xl overflow-hidden shadow-sm border border-gray-100 flex items-center justify-center">
<div className="flex-shrink-0 w-44"> {hasThumbnail ? (
{hasThumbnail ? ( <img
<img src={schedule.thumbnailUrl}
src={schedule.thumbnailUrl} alt={schedule.title}
alt={schedule.title} className="max-h-[400px] object-contain"
className="w-full h-full object-cover" />
/> ) : (
) : ( <div
<div className="w-full h-48 flex items-center justify-center"
className="w-full h-full flex items-center justify-center" style={{ backgroundColor: `${categoryColor}10` }}
style={{ backgroundColor: `${schedule.category?.color || '#06b6d4'}15` }} >
> <Tv size={48} style={{ color: categoryColor }} strokeWidth={1.5} />
<Tv size={40} style={{ color: schedule.category?.color || '#06b6d4' }} strokeWidth={1.5} />
</div>
)}
</div>
{/* 오른쪽: 콘텐츠 */}
<div className="flex-1 p-5 flex flex-col justify-between">
{/* 방송사 + 날짜 */}
<div className="flex items-center gap-2.5 mb-3">
{schedule.broadcaster && (
<span
className="inline-flex items-center gap-1.5 px-2.5 py-1 text-sm font-semibold rounded-md"
style={{
backgroundColor: `${schedule.category?.color || '#06b6d4'}15`,
color: schedule.category?.color || '#06b6d4',
}}
>
<Tv size={13} />
{schedule.broadcaster}
</span>
)}
<span className="text-sm text-gray-400">
{formatFullDate(schedule.date)}
{schedule.time && ` · ${formatTime(schedule.time)}`}
</span>
</div> </div>
)}
</div>
{/* 제목 */} {/* 정보 카드 */}
<h1 className="text-xl font-bold text-gray-900 leading-snug mb-4"> <div className="bg-white rounded-2xl shadow-sm border border-gray-100 p-6">
{decodeHtmlEntities(schedule.title)} {/* 방송사 + 날짜 */}
</h1> <div className="flex items-center gap-2.5 mb-3">
{schedule.broadcaster && (
{/* 멤버 */} <span
{members.length > 0 && ( className="inline-flex items-center gap-1.5 px-2.5 py-1 text-sm font-semibold rounded-md"
<div className="flex flex-wrap gap-2"> style={{ backgroundColor: `${categoryColor}15`, color: categoryColor }}
{isFullGroup ? ( >
<span className="px-3 py-1 bg-primary/10 text-primary text-sm font-medium rounded-full"> <Tv size={13} />
프로미스나인 {schedule.broadcaster}
</span> </span>
) : (
members.map((member) => (
<span key={member.id} className="px-3 py-1 bg-primary/10 text-primary text-sm font-medium rounded-full">
{member.name}
</span>
))
)}
</div>
)}
{/* 다시보기 (하단 고정) */}
{hasReplayUrl && (
<div className="mt-auto pt-2">
<a
href={schedule.replayUrl}
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-1.5 px-4 py-2 bg-gray-900 hover:bg-black text-white text-sm font-medium rounded-full transition-colors"
>
{isYoutubeReplay ? <Play size={14} fill="currentColor" /> : <ExternalLink size={14} />}
다시보기
</a>
</div>
)} )}
<span className="text-sm text-gray-400">
{formatFullDate(schedule.date)}
{schedule.time && ` · ${formatTime(schedule.time)}`}
</span>
</div> </div>
{/* 제목 */}
<h1 className="text-xl font-bold text-gray-900 leading-snug mb-4">
{decodeHtmlEntities(schedule.title)}
</h1>
{/* 멤버 */}
{members.length > 0 && (
<div className="flex flex-wrap gap-2 mb-4">
{isFullGroup ? (
<span className="px-3 py-1 bg-primary/10 text-primary text-sm font-medium rounded-full">
프로미스나인
</span>
) : (
members.map((member) => (
<span key={member.id} className="px-3 py-1 bg-primary/10 text-primary text-sm font-medium rounded-full">
{member.name}
</span>
))
)}
</div>
)}
{/* 다시보기 */}
{hasReplayUrl && (
<div className="pt-4 border-t border-gray-100">
<a
href={schedule.replayUrl}
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-1.5 px-4 py-2 bg-gray-900 hover:bg-black text-white text-sm font-medium rounded-full transition-colors"
>
{isYoutubeReplay ? <Play size={14} fill="currentColor" /> : <ExternalLink size={14} />}
다시보기
</a>
</div>
)}
</div> </div>
</div> </div>
); );