parent
74f89ae7cb
commit
e9bf7eabaf
@ -105,5 +105,7 @@ const lineByName = (name: string) => (
|
|||||||
lines.find(line => stations[line].has(name))
|
lines.find(line => stations[line].has(name))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const DEFAULT_LINE = 'Петроградская'
|
||||||
|
|
||||||
export type { Lines }
|
export type { Lines }
|
||||||
export { lines, stations, colors, lineNames, lineByName }
|
export { lines, stations, colors, lineNames, lineByName, DEFAULT_LINE }
|
||||||
|
@ -7,7 +7,7 @@ import { useNavigate } from 'react-router-dom'
|
|||||||
import { MapClickHandler, LocationMarker, CardLayout, LocateButton } from '../components'
|
import { MapClickHandler, LocationMarker, CardLayout, LocateButton } from '../components'
|
||||||
import { useAddAnnouncement } from '../hooks/api'
|
import { useAddAnnouncement } from '../hooks/api'
|
||||||
import { categories, categoryNames } from '../assets/category'
|
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 { fallbackError, gotResponse } from '../hooks/useFetch'
|
||||||
import { useOsmAddresses } from '../hooks/api'
|
import { useOsmAddresses } from '../hooks/api'
|
||||||
|
|
||||||
@ -126,10 +126,7 @@ function AddPage() {
|
|||||||
<Form.Label>
|
<Form.Label>
|
||||||
Станция метро
|
Станция метро
|
||||||
</Form.Label>
|
</Form.Label>
|
||||||
<Form.Select name='metro'>
|
<Form.Select name='metro' defaultValue={DEFAULT_LINE}>
|
||||||
<option value=''>
|
|
||||||
Укажите ближайщую станцию метро
|
|
||||||
</option>
|
|
||||||
{lines.map(
|
{lines.map(
|
||||||
line =>
|
line =>
|
||||||
<optgroup key={line} label={lineNames[line]}>
|
<optgroup key={line} label={lineNames[line]}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user