Compare commits

..

No commits in common. "1d35f2d433674e80a2ce9293cd2d68eb18a94640" and "23272b99a7257348e661abd85b41e8ac57bd9e41" have entirely different histories.

9 changed files with 66 additions and 264 deletions

View File

@ -28,12 +28,6 @@ export function Card(species, number, { spriteStyle = 'official', versionGroup,
const next = entry(species.id);
caughtBtn.setAttribute('aria-pressed', String(next.caught));
card.classList.toggle('is-caught', next.caught);
if (next.caught && !window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
caughtBtn.animate(
[{ transform: 'scale(1)' }, { transform: 'scale(1.4)' }, { transform: 'scale(1)' }],
{ duration: 260, easing: 'cubic-bezier(.34,1.4,.64,1)' },
);
}
},
});

View File

@ -37,25 +37,11 @@ export function ProgressRing() {
const value = el('span', { class: 'ring__value' });
const node = el('div', { class: 'ring' }, svg, el('div', { class: 'ring__label' }, value));
let first = true;
function update(stats) {
const draw = () => {
const { caught = 0, seen = 0, total = 1 } = stats;
const safeTotal = Math.max(total, 1);
caughtArc.setAttribute('stroke-dashoffset', String(CIRC * (1 - caught / safeTotal)));
seenArc.setAttribute(
'stroke-dashoffset',
String(CIRC * (1 - Math.max(seen, caught) / safeTotal)),
);
value.replaceChildren(String(caught), el('small', {}, `/${total}`));
};
// Defer the first draw a frame so the arc animates in from empty.
if (first) {
first = false;
requestAnimationFrame(draw);
} else {
draw();
}
function update({ caught = 0, seen = 0, total = 1 }) {
const safeTotal = Math.max(total, 1);
caughtArc.setAttribute('stroke-dashoffset', String(CIRC * (1 - caught / safeTotal)));
seenArc.setAttribute('stroke-dashoffset', String(CIRC * (1 - Math.max(seen, caught) / safeTotal)));
value.replaceChildren(String(caught), el('small', {}, `/${total}`));
}
return { node, update };

View File

@ -1,50 +0,0 @@
import { el } from '../lib/dom.js';
const bar = (w, h = 14) =>
el('span', { class: 'sk-bar', style: `width:${w};height:${h}px` });
const facts = () =>
el(
'div',
{ class: 'pfacts' },
...Array.from({ length: 6 }, () =>
el('div', { class: 'fact' }, bar('42px', 9), bar('72px', 15)),
),
);
/** Placeholder shown while a Pokémon detail page loads. */
export function detailSkeleton() {
return el(
'section',
{ class: 'view pdetail sk' },
el(
'div',
{ class: 'phero sk-hero' },
el('div', { class: 'phero__top' }, bar('72px', 34), bar('130px', 14), bar('34px', 34)),
el('div', { class: 'phero__head' }, bar('55%', 30)),
el('div', { class: 'sk-art' }),
),
el(
'div',
{ class: 'psheet' },
el(
'div',
{ class: 'psheet__tabs' },
...Array.from({ length: 5 }, () => bar('58px', 18)),
),
el('div', { class: 'ppanel' }, bar('92%'), bar('84%'), bar('66%'), facts()),
),
);
}
/** Placeholder for move / item detail pages. */
export function lookupSkeleton() {
return el(
'section',
{ class: 'view lookup sk' },
bar('84px', 16),
el('div', { class: 'sk-hero sk-hero--sm' }),
facts(),
el('div', { class: 'detail__section' }, bar('90px', 16), bar('96%'), bar('70%')),
);
}

View File

@ -13,7 +13,7 @@ applyTheme();
// Own the scroll position ourselves (views restore it deliberately).
if ('scrollRestoration' in history) history.scrollRestoration = 'manual';
// Navigation scroll memory is per-session — start a cold launch at the top.
ui.set({ feedScroll: 0, searchScroll: 0 });
ui.set({ feedScroll: 0, feedAnchor: '', searchScroll: 0 });
// React to preference changes. The dex feed updates itself in place, but the
// Pokémon detail page is built once per visit — rebuild it when the selected
@ -49,22 +49,6 @@ const updateSW = registerSW({
},
});
// --- Offline indicator -------------------------------------------------
const netPill = el('div', { class: 'netpill', role: 'status' }, 'Offline');
function syncNet() {
if (navigator.onLine) {
netPill.remove();
} else if (!netPill.isConnected) {
document.body.append(netPill);
}
}
window.addEventListener('offline', syncNet);
window.addEventListener('online', () => {
syncNet();
showToast('Back online.', 'Dismiss');
});
syncNet();
function showToast(message, actionLabel, onAction) {
const toast = el(
'div',

View File

@ -5,13 +5,12 @@ import { SearchView } from './views/SearchView.js';
import { SettingsView } from './views/SettingsView.js';
import { MoveDetail } from './views/MoveDetail.js';
import { ItemDetail } from './views/ItemDetail.js';
import { detailSkeleton, lookupSkeleton } from './components/skeletons.js';
const routes = [
{ pattern: /^#?\/?$/, view: () => DexGrid() },
{ pattern: /^#\/pokemon\/(\d+)$/, view: (m) => PokemonDetail(Number(m[1])), skeleton: detailSkeleton },
{ pattern: /^#\/move\/(\d+)$/, view: (m) => MoveDetail(Number(m[1])), skeleton: lookupSkeleton },
{ pattern: /^#\/item\/(\d+)$/, view: (m) => ItemDetail(Number(m[1])), skeleton: lookupSkeleton },
{ pattern: /^#\/pokemon\/(\d+)$/, view: (m) => PokemonDetail(Number(m[1])) },
{ pattern: /^#\/move\/(\d+)$/, view: (m) => MoveDetail(Number(m[1])) },
{ pattern: /^#\/item\/(\d+)$/, view: (m) => ItemDetail(Number(m[1])) },
{ pattern: /^#\/search$/, view: () => SearchView() },
{ pattern: /^#\/settings$/, view: () => SettingsView() },
];
@ -24,10 +23,6 @@ function resolve(hash) {
return { route: routes[0], match: [] };
}
const canAnimate = () =>
typeof document.startViewTransition === 'function' &&
!window.matchMedia('(prefers-reduced-motion: reduce)').matches;
let rerenderCurrent = null;
/** Re-run the active route (e.g. after the selected game changed). */
@ -38,38 +33,31 @@ export function rerender() {
export function initRouter(host) {
let current = null;
function mount(node, animate) {
if (current) current.dispatchEvent(new CustomEvent('view:teardown'));
current = node;
if (animate && canAnimate()) {
document.startViewTransition(() => host.replaceChildren(node));
} else {
host.replaceChildren(node);
}
}
async function render() {
const hash = location.hash || '#/';
const { route, match } = resolve(hash);
// Instant feedback: a shaped skeleton for detail pages, a light
// placeholder otherwise.
mount(
route.skeleton
? route.skeleton()
: el('div', { class: 'view view--loading' }, 'Loading…'),
false,
);
if (current) {
current.dispatchEvent(new CustomEvent('view:teardown'));
current.remove();
current = null;
}
const pending = el('div', { class: 'view view--loading' }, 'Loading…');
host.replaceChildren(pending);
// Views manage their own scroll: detail pages jump to the top, the feed
// and search restore where the user left off.
window.scrollTo(0, 0);
try {
const node = await route.view(match);
if ((location.hash || '#/') !== hash) return; // superseded
// Skeleton/placeholder -> content morphs via the View Transitions API.
mount(node, true);
// Guard against a fast second navigation while awaiting.
if ((location.hash || '#/') !== hash) return;
current = node;
host.replaceChildren(node);
} catch (err) {
console.error(err);
mount(
host.replaceChildren(
el(
'div',
{ class: 'view view--error' },
@ -77,7 +65,6 @@ export function initRouter(host) {
el('p', {}, err.message || String(err)),
el('a', { href: '#/', class: 'button' }, 'Back to the dex'),
),
false,
);
}
}

View File

@ -10,6 +10,7 @@ export const ui = createStore('pdx.ui', {
searchScroll: 0,
searchTab: 'pokemon',
feedScroll: 0,
feedAnchor: '',
sort: 'dex',
sortDesc: false,
filter: 'all',

View File

@ -408,12 +408,12 @@
color: inherit;
overflow: hidden;
background: linear-gradient(
170deg,
color-mix(in srgb, var(--type-main) 55%, var(--surface)) 0%,
color-mix(in srgb, var(--type-main) 26%, var(--surface)) 55%,
color-mix(in srgb, var(--type-main) 15%, var(--surface)) 100%
180deg,
color-mix(in srgb, var(--type-main) 30%, var(--surface)) 0%,
color-mix(in srgb, var(--type-main) 9%, var(--surface)) 52%,
var(--surface) 100%
);
border: 1px solid color-mix(in srgb, var(--type-main) 38%, var(--border));
border: 1px solid color-mix(in srgb, var(--type-main) 20%, var(--border));
box-shadow: var(--shadow);
content-visibility: auto;
contain-intrinsic-size: auto 250px;
@ -431,7 +431,7 @@
}
.card__ghost {
position: absolute;
top: 2px;
top: 10px;
right: 8px;
z-index: 0;
font-size: 3rem;
@ -444,7 +444,7 @@
}
.card__spot {
position: absolute;
top: 48px;
top: 14px;
left: 50%;
width: 128px;
height: 128px;
@ -460,15 +460,13 @@
.card__art {
position: relative;
z-index: 1;
flex: 1 1 auto;
min-height: 152px;
padding-top: 36px; /* drop the sprite clear of the ghost number */
display: grid;
place-items: center; /* centre the sprite in the space that's left */
width: 120px;
height: 120px;
margin-top: 10px; /* flex column grows the card — no overlap with the body */
}
.card__art .sprite {
width: 116px;
height: 116px;
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
}
@ -476,19 +474,21 @@
.card[data-sprite="game"] .card__art .sprite {
image-rendering: pixelated;
}
.card[data-sprite="game"] .card__art .sprite {
width: 92px;
height: 92px;
.card[data-sprite="game"] .card__art {
width: 96px;
height: 96px;
}
/* Gen 12 game sprites ship with an opaque white background show them as
a small framed tile rather than a box that swallows the card. */
.card[data-boxed] .card__art .sprite {
width: 74px;
height: 74px;
.card[data-boxed] .card__art {
width: 78px;
height: 78px;
padding: 5px;
border-radius: 12px;
background: #f7f7f5;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.14);
}
.card[data-boxed] .card__art .sprite {
filter: none;
}
.card__body {
@ -1718,110 +1718,3 @@
.gamecard--all.is-active {
border-style: solid;
}
/* ================= Motion: transitions, skeletons, indicators ======== */
.view:not(.sk):not(.view--loading) {
animation: viewIn 0.26s ease both;
}
@keyframes viewIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: none; }
}
::view-transition-old(root),
::view-transition-new(root) {
animation-duration: 0.26s;
}
/* ---- Skeletons ---------------------------------------------- */
.sk-bar {
display: block;
border-radius: 7px;
margin: 7px 0;
background-color: var(--surface-2);
background-image: linear-gradient(
100deg,
transparent 20%,
color-mix(in srgb, var(--text) 9%, transparent) 45%,
transparent 70%
);
background-size: 220% 100%;
background-repeat: no-repeat;
animation: shimmer 1.25s linear infinite;
}
@keyframes shimmer {
from { background-position: 220% 0; }
to { background-position: -120% 0; }
}
.sk-hero {
background: var(--surface-2);
border-radius: var(--radius-lg);
padding: 16px 20px 44px;
}
.sk-hero--sm {
min-height: 100px;
padding: 0;
}
.sk-art {
width: min(230px, 56vw);
height: min(230px, 56vw);
margin: 16px auto 0;
border-radius: 26px;
background: color-mix(in srgb, var(--text) 6%, var(--surface-2));
}
.sk .psheet {
margin-top: -28px;
}
.sk .psheet__tabs {
gap: 12px;
border: none;
}
.sk .ppanel .sk-bar {
margin: 12px 0;
}
.sk .pfacts .sk-bar {
margin: 3px 0;
}
/* ---- Online / offline indicator ------------------------------ */
.netpill {
position: fixed;
left: 50%;
bottom: calc(var(--nav-size) + env(safe-area-inset-bottom) + 12px);
transform: translateX(-50%);
z-index: 45;
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 999px;
font-size: 0.8rem;
font-weight: 600;
color: #fff;
background: #333842;
box-shadow: var(--shadow);
animation: viewIn 0.25s ease both;
}
.netpill::before {
content: "";
width: 7px;
height: 7px;
border-radius: 50%;
background: #ffb454;
}
@media (min-width: 1024px) {
.netpill {
bottom: 20px;
left: calc(50% + 110px);
}
}
@media (prefers-reduced-motion: reduce) {
.view:not(.sk):not(.view--loading),
.netpill {
animation: none;
}
.sk-bar {
animation: none;
}
}

View File

@ -71,6 +71,13 @@ export async function DexGrid() {
const snap = await loadSnapshot();
const grid = el('div', { class: 'grid' });
// Remember which card was opened so Back can land on it exactly.
grid.addEventListener('click', (e) => {
const card = e.target.closest('.card');
if (card && !e.target.closest('.card__caught')) {
ui.set({ feedAnchor: card.getAttribute('href') });
}
});
let query = '';
let filterKey = ui.get().filter || 'all';
let sortKey = ui.get().sort || 'dex';
@ -153,20 +160,26 @@ export async function DexGrid() {
// Changing the list order/contents makes the old scroll offset meaningless.
function resetScroll() {
ui.set({ feedScroll: 0 });
ui.set({ feedScroll: 0, feedAnchor: '' });
window.scrollTo(0, 0);
}
// Return to the saved scroll offset. Retry a few times — the grid's height
// isn't final until the webfont loads and off-screen cards settle — but
// stop once we've reached the target or the user starts scrolling.
// Prefer landing on the exact card that was opened — robust against the
// grid's estimated off-screen card heights and late header reflow (webfont
// load). Re-correct a few times unless the user has already scrolled away.
function restoreScroll() {
const y = ui.get().feedScroll || 0;
if (!y) return;
const anchor = ui.get().feedAnchor;
const target = anchor && grid.querySelector(`.card[href="${anchor}"]`);
if (!target) {
window.scrollTo(0, ui.get().feedScroll || 0);
return;
}
let applied = null;
const go = () => {
if (applied != null && Math.abs(window.scrollY - applied) > 8) return; // user moved
window.scrollTo(0, y);
const headH = document.querySelector('.feed-head')?.getBoundingClientRect().height || 0;
target.style.scrollMarginTop = `${Math.round(headH) + 16}px`;
target.scrollIntoView({ block: 'start' });
applied = Math.round(window.scrollY);
};
go();
@ -297,7 +310,7 @@ export async function DexGrid() {
const offSettings = settings.subscribe((s) => {
if (s.versionGroup !== mountedVG) {
mountedVG = s.versionGroup;
ui.set({ feedScroll: 0 });
ui.set({ feedScroll: 0, feedAnchor: '' });
}
rebuild();
});

View File

@ -135,12 +135,6 @@ export async function PokemonDetail(nationalId) {
onclick: () => {
toggle(nationalId, field);
syncTrack();
if (entry(nationalId)[field] && !window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
b.animate(
[{ transform: 'scale(1)' }, { transform: 'scale(1.12)' }, { transform: 'scale(1)' }],
{ duration: 240, easing: 'cubic-bezier(.34,1.4,.64,1)' },
);
}
},
});
b.append(label);