/*
CARDS — renders poster cards, rows (carousels) and grids.
Items can come straight from the API ({tmdb_id, type, name, year, poster})
or from storage records; normalizeItem() handles both.
*/
(function () {
'use strict';
const { escapeHtml: esc, tmdbResize, formatSeconds } = SR.util;
function normalizeItem(r) {
return {
tmdbId: r.tmdb_id != null ? r.tmdb_id : r.tmdbId,
type: r.type,
season: r.season,
episode: r.episode,
name: r.name || r.title || '',
year: r.year || '',
poster: r.poster || r.poster_url || '',
backdrop: r.backdrop || r.backdrop_url || '',
rating: r.rating || (r.vote_average ? Number(r.vote_average).toFixed(1) : ''),
overview: r.overview || '',
};
}
function watchHref(item) {
const p = new URLSearchParams();
p.set('id', item.tmdbId);
p.set('type', item.type);
if (item.type === 'tv') {
if (item.season != null) p.set('s', item.season);
if (item.episode != null) p.set('e', item.episode);
}
return `watch.html?${p.toString()}`;
}
function card(item, opts = {}) {
const el = document.createElement('a');
el.className = 'card';
el.href = opts.href || watchHref(item);
const poster = tmdbResize(item.poster, 'w342');
const progress =
opts.progress != null
? ``
: '';
const meta =
item.meta ||
(item.year
? `${item.year} · ${item.type === 'tv' ? 'TV' : 'Movie'}`
: item.type === 'tv'
? 'TV'
: 'Movie');
const metaHtml = item.metaHtml || ``;
el.innerHTML = `
${poster ? `` : '?'}
${progress}
${esc(item.name)}
`;
return el;
}
function row(title, items) {
const section = document.createElement('section');
section.className = 'row';
section.innerHTML = `
${esc(hint)}
` : ''}`; return el; } // "Continue watching" row: latest record per show, with progress bar function continueRow() { const recs = SR.storage.latestPerShow(); if (!recs.length) return null; const items = recs.map((r) => ({ tmdbId: r.tmdbId, type: r.type, season: r.season, episode: r.episode, name: r.show || r.title || '', poster: r.poster || '', meta: r.type === 'tv' ? `S${r.season} · E${r.episode} · ${formatSeconds(Math.max(0, r.d - r.t))} left` : `Movie · ${formatSeconds(Math.max(0, r.d - r.t))} left`, metaHtml: r.type === 'tv' ? `S${r.season} · E${r.episode}·` : ``, progress: r.d ? r.t / r.d : 0, })); return row('Continue watching', items); } function heroCarousel(items) { const data = (items || []).filter((item) => item && item.backdrop && item.name); if (!data.length) return null; const section = document.createElement('section'); section.className = 'hero'; section.setAttribute('aria-roledescription', 'carousel'); section.setAttribute('aria-label', 'Featured titles'); const wrap = document.createElement('div'); wrap.className = 'hero__slides'; const slideEls = []; for (let i = 0; i < data.length; i += 1) { const item = data[i]; const slide = document.createElement('article'); slide.className = i === 0 ? 'hero__slide is-active' : 'hero__slide'; slide.setAttribute('role', 'group'); slide.setAttribute('aria-roledescription', 'slide'); slide.setAttribute('aria-label', `${i + 1} of ${data.length}: ${item.name}`); const typeLabel = item.type === 'tv' ? 'TV' : 'Movie'; const metaBits = [ item.rating ? `` : '', item.year ? `${esc(item.year)}` : '', `${esc(typeLabel)}`, ] .filter(Boolean) .join('·'); slide.innerHTML = `