diff --git a/front/src/assets/metro.ts b/front/src/assets/metro.ts index 940713e..f87425a 100644 --- a/front/src/assets/metro.ts +++ b/front/src/assets/metro.ts @@ -105,5 +105,7 @@ const lineByName = (name: string) => ( lines.find(line => stations[line].has(name)) ) +const DEFAULT_LINE = 'Петроградская' + export type { Lines } -export { lines, stations, colors, lineNames, lineByName } +export { lines, stations, colors, lineNames, lineByName, DEFAULT_LINE } diff --git a/front/src/pages/AddPage.tsx b/front/src/pages/AddPage.tsx index ec49ada..0bdec32 100644 --- a/front/src/pages/AddPage.tsx +++ b/front/src/pages/AddPage.tsx @@ -7,7 +7,7 @@ import { useNavigate } from 'react-router-dom' import { MapClickHandler, LocationMarker, CardLayout, LocateButton } from '../components' import { useAddAnnouncement } from '../hooks/api' import { categories, categoryNames } from '../assets/category' -import { stations, lines, lineNames } from '../assets/metro' +import { stations, lines, lineNames, DEFAULT_LINE } from '../assets/metro' import { fallbackError, gotResponse } from '../hooks/useFetch' import { useOsmAddresses } from '../hooks/api' @@ -126,10 +126,7 @@ function AddPage() { Станция метро - - + {lines.map( line =>