mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-21 00:11:27 -07:00
100 lines
3.8 KiB
TypeScript
100 lines
3.8 KiB
TypeScript
import { AnimeCoverImage } from './AnimeCoverImage';
|
|
import type { AnimeDetailData, AnilistEntry } from '../../types/stats';
|
|
|
|
interface AnimeHeaderProps {
|
|
detail: AnimeDetailData['detail'];
|
|
anilistEntries: AnilistEntry[];
|
|
onChangeAnilist?: () => void;
|
|
}
|
|
|
|
function AnilistButton({ entry }: { entry: AnilistEntry }) {
|
|
const label =
|
|
entry.season != null
|
|
? `Season ${entry.season}`
|
|
: (entry.titleEnglish ?? entry.titleRomaji ?? 'AniList');
|
|
|
|
return (
|
|
<a
|
|
href={`https://anilist.co/anime/${entry.anilistId}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 px-2 py-1 text-xs rounded bg-ctp-surface1 text-ctp-blue hover:bg-ctp-surface2 hover:text-ctp-sapphire transition-colors"
|
|
>
|
|
{label}
|
|
<span className="text-[10px]">{'\u2197'}</span>
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export function AnimeHeader({ detail, anilistEntries, onChangeAnilist }: AnimeHeaderProps) {
|
|
const altTitles = [detail.titleRomaji, detail.titleEnglish, detail.titleNative].filter(
|
|
(t): t is string => t != null && t !== detail.canonicalTitle,
|
|
);
|
|
const uniqueAltTitles = [...new Set(altTitles)];
|
|
|
|
const hasMultipleEntries = anilistEntries.length > 1;
|
|
|
|
return (
|
|
<div className="flex gap-4">
|
|
<AnimeCoverImage
|
|
animeId={detail.animeId}
|
|
title={detail.canonicalTitle}
|
|
className="w-32 h-44 rounded-lg shrink-0"
|
|
/>
|
|
<div className="flex-1 min-w-0">
|
|
<h2 className="text-lg font-bold text-ctp-text truncate">{detail.canonicalTitle}</h2>
|
|
{uniqueAltTitles.length > 0 && (
|
|
<div className="text-xs text-ctp-overlay2 mt-0.5 truncate">
|
|
{uniqueAltTitles.join(' · ')}
|
|
</div>
|
|
)}
|
|
<div className="text-sm text-ctp-subtext0 mt-2">
|
|
{detail.episodeCount} episode{detail.episodeCount !== 1 ? 's' : ''}
|
|
</div>
|
|
<div className="flex flex-wrap gap-1.5 mt-2">
|
|
{anilistEntries.length > 0 ? (
|
|
hasMultipleEntries ? (
|
|
anilistEntries.map((entry) => <AnilistButton key={entry.anilistId} entry={entry} />)
|
|
) : (
|
|
<a
|
|
href={`https://anilist.co/anime/${anilistEntries[0]!.anilistId}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 px-2 py-1 text-xs rounded bg-ctp-surface1 text-ctp-blue hover:bg-ctp-surface2 hover:text-ctp-sapphire transition-colors"
|
|
>
|
|
View on AniList <span className="text-[10px]">{'\u2197'}</span>
|
|
</a>
|
|
)
|
|
) : detail.anilistId ? (
|
|
<a
|
|
href={`https://anilist.co/anime/${detail.anilistId}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 px-2 py-1 text-xs rounded bg-ctp-surface1 text-ctp-blue hover:bg-ctp-surface2 hover:text-ctp-sapphire transition-colors"
|
|
>
|
|
View on AniList <span className="text-[10px]">{'\u2197'}</span>
|
|
</a>
|
|
) : null}
|
|
{onChangeAnilist && (
|
|
<button
|
|
type="button"
|
|
onClick={onChangeAnilist}
|
|
title="Search AniList and manually select the correct anime entry"
|
|
className="inline-flex items-center gap-1 px-2 py-1 text-xs rounded bg-ctp-surface1 text-ctp-overlay2 hover:bg-ctp-surface2 hover:text-ctp-subtext0 transition-colors"
|
|
>
|
|
{anilistEntries.length > 0 || detail.anilistId
|
|
? 'Change AniList Entry'
|
|
: 'Link to AniList'}
|
|
</button>
|
|
)}
|
|
</div>
|
|
{detail.description && (
|
|
<p className="text-xs text-ctp-subtext0 mt-3 line-clamp-3 leading-relaxed">
|
|
{detail.description}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|