--- import BaseLayout from '@/layouts/BaseLayout.astro'; import ShortestPathsGraph from '@/components/ShortestPathsGraph.astro'; import { getDriverNames } from '@/db/getDriverNames'; import { getShortestPaths } from '@/db/getShortestPaths'; const source = Astro.url.searchParams.get('source')?.trim() || ''; const dest = Astro.url.searchParams.get('dest')?.trim() || ''; const noEmptyParams = source !== '' && dest !== ''; const paramsNotEqual = source !== dest; let driverNames: string[] = []; let graphProps: Awaited> = { nodes: [], edges: [], numPaths: 0, degsOfSeparation: 0 }; try { driverNames = await getDriverNames(); if (noEmptyParams && paramsNotEqual) graphProps = await getShortestPaths(source, dest); } catch (error) { return Astro.redirect('/error'); } ---

Six Degrees of Formula 1

Find out who's the sport's Kevin Bacon

Get all the shortest paths from/to:

{driverNames.map((name) =>
{ noEmptyParams && (paramsNotEqual ? ( ) : ( "There's nothing wrong with the inputs, except they're identical." )) }