feat: prefer Six Flags regular waits, show Fast Lane at 0, mark outages on chart
Three usability fixes after a day of using the ride detail page. 1. Six Flags is now the primary source for regular wait times. SF's /wait-times endpoint reports regular waits alongside Fast Lane, and it updates more promptly than Queue-Times around park-open. The sampler and the live /rides + ride-history routes all prefer SF's regularWaittime when its createdDateTime is non-empty; Queue-Times remains the fallback and the authoritative isOpen source. 2. The today chart's Fast Lane line now stays visible when its value is 0 (walk-on). Y-axis bottom padding ensures the line sits clearly above the X-axis frame instead of being clipped against it. The tooltip shows "walk-on" instead of "0 min" for that case. 3. Outages are now explicit on the chart instead of just being gaps. computeOutages walks today's samples to find contiguous closed runs and numbers them chronologically. Each outage renders as a translucent pink ReferenceArea with a "#N" label. The custom tooltip detects when the cursor is over an outage span and shows "Outage #N — Hh Mm" (e.g. "Outage #2 — 1h 28m") in place of the wait/Fast Lane rows. Includes a seed-test-samples.ts dev script for eyeballing the chart with synthetic outage data. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -58,6 +58,8 @@ interface FastLaneEntry {
|
||||
norm: string;
|
||||
compact: string;
|
||||
isFastLane: boolean;
|
||||
/** Current regular wait in minutes from Six Flags; null when the endpoint has no data. */
|
||||
regularMinutes: number | null;
|
||||
/** Current Fast Lane wait in minutes; null when the endpoint has no data. */
|
||||
fastLaneMinutes: number | null;
|
||||
}
|
||||
@@ -83,6 +85,9 @@ export function parseWaitTimes(json: WTResponse): FastLaneResult | null {
|
||||
norm,
|
||||
compact: norm.replace(/\s/g, ""),
|
||||
isFastLane: Boolean(d.isFastLane),
|
||||
regularMinutes: d.regularWaittime?.createdDateTime
|
||||
? d.regularWaittime.waitTime
|
||||
: null,
|
||||
fastLaneMinutes: d.fastlaneWaittime?.createdDateTime
|
||||
? d.fastlaneWaittime.waitTime
|
||||
: null,
|
||||
@@ -123,16 +128,18 @@ export async function fetchFastLaneWaits(
|
||||
}
|
||||
|
||||
/**
|
||||
* Find the Fast Lane data for a ride by name. Mirrors the isCoasterMatch
|
||||
* strategy (exact normalized → compact ≥5 → prefix ≥5 with conjunction guard)
|
||||
* so Queue-Times and Six Flags name conventions line up.
|
||||
* Find the Six Flags wait-times row for a ride by name. Mirrors the
|
||||
* isCoasterMatch strategy (exact normalized → compact ≥5 → prefix ≥5 with
|
||||
* conjunction guard) so Queue-Times and Six Flags name conventions line up.
|
||||
*
|
||||
* Returns the matched ride's Fast Lane info, or null when no ride matches.
|
||||
* Returns both the regular and Fast Lane wait when a match exists, or null
|
||||
* when no ride matches. (Function name is historical — it originally only
|
||||
* exposed Fast Lane data.)
|
||||
*/
|
||||
export function lookupFastLane(
|
||||
rideName: string,
|
||||
result: FastLaneResult,
|
||||
): { hasFastLane: boolean; fastLaneMinutes: number | null } | null {
|
||||
): { hasFastLane: boolean; fastLaneMinutes: number | null; regularMinutes: number | null } | null {
|
||||
const norm = normalizeForMatch(rideName);
|
||||
const compact = norm.replace(/\s/g, "");
|
||||
|
||||
@@ -159,5 +166,9 @@ export function lookupFastLane(
|
||||
}
|
||||
|
||||
if (!match) return null;
|
||||
return { hasFastLane: match.isFastLane, fastLaneMinutes: match.fastLaneMinutes };
|
||||
return {
|
||||
hasFastLane: match.isFastLane,
|
||||
fastLaneMinutes: match.fastLaneMinutes,
|
||||
regularMinutes: match.regularMinutes,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user