SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
2.8 KB · 26 lines typescript
Raw Blame History
1/** Real, trimmed slices of live Wright pages (captured 2026-09-08) shared by the wright and lama unit tests. */23/** https://www.wright20.com/auctions/2026/08/design — 3 of 199 items (two sold, one unsold `result: false`). */4export const SESSION_JSON = {5  component: 'SessionIndexPage',6  props: {7    auctions: { '1467': { id: 1467, title: 'Design', date: '2026-08-13T16:00:00.000000Z', auction_house: 1 } },8    sessions: { '2884': { fd_key: 2884, alias: '/auctions/2026/08/design', title: 'Design', start_date: 1786636800, sale_status: 'POSTSALE', show_results: 1, results_are_preliminary: 0, archive_auction: 1, timezone: 'America/Chicago' } },9    items: {10      '413032': { id: 413032, fd_key: 413032, alias: 'auctions/2026/08/design/100', artist_name: 'After Alexander Calder', name: 'Turquoise tapestry', lot_number: 100, estimate_low: 15000, estimate_high: 20000, result: 57600, bid_count: 14, primary_index_image: 'https://www.wright20.com/items/index/220/100_1_design_august_2026_after_alexander_calder_turquoise_tapestry__wright_auction.jpg?t=1785522868', location: 'Los Angeles', is_record_result: 0, buy_now: 0, starting_bid: '10000' },11      '415958': { id: 415958, fd_key: 415958, alias: 'auctions/2026/08/design/101', artist_name: 'Kenny Scharf', name: 'Object to Enjoy', lot_number: 101, estimate_low: 1000, estimate_high: 1500, result: 2816, bid_count: 11, primary_index_image: 'https://www.wright20.com/items/index/220/101_1_design_august_2026_kenny_scharf_object_to_enjoy__wright_auction.jpg?t=1785425385', location: 'Chicago', is_record_result: 0, buy_now: 0, starting_bid: '100' },12      '412274': { id: 412274, fd_key: 412274, alias: 'auctions/2026/08/design/110', artist_name: 'After Joan Miró', name: 'Montage low-pile carpet', lot_number: 110, estimate_low: 2000, estimate_high: 3000, result: false, bid_count: 0, primary_index_image: 'https://www.wright20.com/items/index/220/110_1_design_august_2026_after_joan_miro_montage_low_pile_carpet__wright_auction.jpg?t=1785425345', location: 'Lambertville', is_record_result: 0, buy_now: 0, starting_bid: '1500' },13    },14    session: { fd_key: 2884, results_are_preliminary: 0, archive_auction: true, sale_status: 'POSTSALE' },15  },16};1718/** https://www.wright20.com/auctions/2026/08/design/info — the module → item → session slice we read. */19export const INFO_JSON = { component: 'x', props: { modules: [{ data: { item: { session: { ended_at: '2026-08-13T18:58:44.000000Z', style: { show_results_with_premium: 1 } } } } }] } };2021/** Re-encode a page object exactly as the site does (Inertia `data-page` attribute, entity-escaped). */22export function asInertiaHtml(page: unknown): string {23  const enc = JSON.stringify(page).replace(/&/g, '&amp;').replace(/"/g, '&quot;');24  return `<!doctype html><html><body><div id="app" data-page="${enc}"></div></body></html>`;25}26