Switched category data struct from Map to object
Moved lineByName function
This commit is contained in:
parent
6a0c4c9dac
commit
9437c44054
@ -1,41 +1,40 @@
|
|||||||
import { isLiteralUnion } from "../utils/types"
|
import { isLiteralUnion } from "../utils/types"
|
||||||
|
|
||||||
const categories = ["PORRIDGE", "conspects", "milk", "bred", "wathing", "cloth",
|
const categories = ["PORRIDGE", "conspects", "milk", "bred", "wathing", "cloth",
|
||||||
"fruits_vegatables", "soup", "dinner", "conserves", "pens", "other_things"] as const
|
"fruits_vegatables", "soup", "dinner", "conserves", "pens", "other_things"] as const
|
||||||
type Category = typeof categories[number]
|
type Category = typeof categories[number]
|
||||||
|
|
||||||
const isCategory = (obj: unknown): obj is Category => isLiteralUnion(obj, categories)
|
const isCategory = (obj: unknown): obj is Category => isLiteralUnion(obj, categories)
|
||||||
|
|
||||||
const categoryGraphics = new Map<Category, string>([
|
const categoryGraphics: Record<Category, string> = {
|
||||||
["PORRIDGE", "static/PORRIDGE.jpg"],
|
"PORRIDGE": "static/PORRIDGE.jpg",
|
||||||
["conspects", "static/conspects.jpg"],
|
"conspects": "static/conspects.jpg",
|
||||||
["milk", "static/milk.jpg"],
|
"milk": "static/milk.jpg",
|
||||||
["bred", "static/bred.jpg"],
|
"bred": "static/bred.jpg",
|
||||||
["wathing", "static/wathing.jpg"],
|
"wathing": "static/wathing.jpg",
|
||||||
["cloth", "static/cloth.jpg"],
|
"cloth": "static/cloth.jpg",
|
||||||
["fruits_vegatables", "static/fruits_vegatables.jpg"],
|
"fruits_vegatables": "static/fruits_vegatables.jpg",
|
||||||
["soup", "static/soup.jpg"],
|
"soup": "static/soup.jpg",
|
||||||
["dinner", "static/dinner.jpg"],
|
"dinner": "static/dinner.jpg",
|
||||||
["conserves", "static/conserves.jpg"],
|
"conserves": "static/conserves.jpg",
|
||||||
["pens", "static/pens.jpg"],
|
"pens": "static/pens.jpg",
|
||||||
["other_things", "static/other_things.jpg"]
|
"other_things": "static/other_things.jpg",
|
||||||
|
}
|
||||||
|
|
||||||
])
|
const categoryNames: Record<Category, string> = {
|
||||||
|
"PORRIDGE": "PORRIDGE",
|
||||||
const categoryNames = new Map<Category, string>([
|
"conspects": "Конспекты",
|
||||||
["PORRIDGE", "PORRIDGE"],
|
"milk": "Молочные продукты",
|
||||||
["conspects", "Конспекты"],
|
"bred": "Хлебобулочные изделия",
|
||||||
["milk", "Молочные продукты"],
|
"wathing": "Моющие средства",
|
||||||
["bred", "Хлебобулочные изделия"],
|
"cloth": "Одежда",
|
||||||
["wathing", "Моющие средства"],
|
"fruits_vegatables": "Фрукты и овощи",
|
||||||
["cloth", "Одежда"],
|
"soup": "Супы",
|
||||||
["fruits_vegatables", "Фрукты и овощи"],
|
"dinner": "Ужин",
|
||||||
["soup", "Супы"],
|
"conserves": "Консервы",
|
||||||
["dinner", "Ужин"],
|
"pens": "Канцелярия",
|
||||||
["conserves", "Консервы"],
|
"other_things": "Всякая всячина",
|
||||||
["pens", "Канцелярия"],
|
}
|
||||||
["other_things", "Всякая всячина"]
|
|
||||||
])
|
|
||||||
|
|
||||||
export type { Category }
|
export type { Category }
|
||||||
export { categoryNames, categoryGraphics, isCategory }
|
export { categories, categoryNames, categoryGraphics, isCategory }
|
||||||
|
@ -101,5 +101,9 @@ const lineNames: Record<Lines, string> = {
|
|||||||
violet: "Фиолетовая",
|
violet: "Фиолетовая",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const lineByName = (name: string) =>
|
||||||
|
lines.find(line => stations[line].has(name))
|
||||||
|
|
||||||
|
|
||||||
export type { Lines }
|
export type { Lines }
|
||||||
export { lines, stations, colors, lineNames }
|
export { lines, stations, colors, lineNames, lineByName }
|
||||||
|
@ -29,7 +29,7 @@ function AnnouncementDetails({ close, announcement: { id, name, category, bestBy
|
|||||||
<Modal.Body>
|
<Modal.Body>
|
||||||
<h1>{name}</h1>
|
<h1>{name}</h1>
|
||||||
|
|
||||||
<span>{categoryNames.get(category)}</span>
|
<span>{categoryNames[category]}</span>
|
||||||
<span className='m-2'>•</span>{/* dot */}
|
<span className='m-2'>•</span>{/* dot */}
|
||||||
<span>Годен до {new Date(bestBy).toLocaleString('ru-RU')}</span>
|
<span>Годен до {new Date(bestBy).toLocaleString('ru-RU')}</span>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Button, Form, Modal } from "react-bootstrap"
|
import { Button, Form, Modal } from "react-bootstrap"
|
||||||
|
|
||||||
import { categoryNames } from "../assets/category"
|
import { categories, categoryNames } from "../assets/category"
|
||||||
import { stations, lines, lineNames } from '../assets/metro'
|
import { stations, lines, lineNames } from '../assets/metro'
|
||||||
import { FiltersType } from "../utils/filters"
|
import { FiltersType } from "../utils/filters"
|
||||||
import { SetState } from "../utils/types"
|
import { SetState } from "../utils/types"
|
||||||
@ -49,9 +49,9 @@ function Filters({ filter, setFilter, filterShown, setFilterShown }: FiltersProp
|
|||||||
<option value="">
|
<option value="">
|
||||||
Выберите категорию
|
Выберите категорию
|
||||||
</option>
|
</option>
|
||||||
{Array.from(categoryNames).map(
|
{categories.map(
|
||||||
([category, categoryName]) =>
|
category =>
|
||||||
<option key={category} value={category}>{categoryName}</option>
|
<option key={category} value={category}>{categoryNames[category]}</option>
|
||||||
)}
|
)}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { colors, lineNames } from '../assets/metro'
|
import { colors, lineNames, lineByName } from '../assets/metro'
|
||||||
import { lineByName } from '../utils/metro'
|
|
||||||
|
|
||||||
function LineDot({ station }: { station: string }) {
|
function LineDot({ station }: { station: string }) {
|
||||||
const line = lineByName(station)
|
const line = lineByName(station)
|
||||||
|
@ -6,7 +6,7 @@ import { latLng } from "leaflet"
|
|||||||
import { ClickHandler, LocationMarker, TrashboxMarkers } from "../components"
|
import { ClickHandler, LocationMarker, TrashboxMarkers } from "../components"
|
||||||
import { useAddAnnouncement, useTrashboxes } from "../hooks/api"
|
import { useAddAnnouncement, useTrashboxes } from "../hooks/api"
|
||||||
|
|
||||||
import { categoryNames } from "../assets/category"
|
import { categories, categoryNames } from "../assets/category"
|
||||||
import { stations, lines, lineNames } from "../assets/metro"
|
import { stations, lines, lineNames } from "../assets/metro"
|
||||||
import { isObject } from "../utils/types"
|
import { isObject } from "../utils/types"
|
||||||
import { handleHTTPErrors } from "../utils"
|
import { handleHTTPErrors } from "../utils"
|
||||||
@ -87,9 +87,8 @@ function AddPage() {
|
|||||||
<option value="" hidden>
|
<option value="" hidden>
|
||||||
Выберите категорию
|
Выберите категорию
|
||||||
</option>
|
</option>
|
||||||
{Array.from(categoryNames).map(
|
{categories.map(category =>
|
||||||
([category, categoryName]) =>
|
<option key={category} value={category}>{categoryNames[category]}</option>
|
||||||
<option key={category} value={category}>{categoryName}</option>
|
|
||||||
)}
|
)}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
@ -15,7 +15,7 @@ function generateStories(announcements: Announcement[]): Story[] {
|
|||||||
return announcements.map(announcement => {
|
return announcements.map(announcement => {
|
||||||
return ({
|
return ({
|
||||||
id: announcement.id,
|
id: announcement.id,
|
||||||
url: announcement.src || categoryGraphics.get(announcement.category),
|
url: announcement.src || categoryGraphics[announcement.category],
|
||||||
type: announcement.src?.endsWith("mp4") ? "video" : undefined,
|
type: announcement.src?.endsWith("mp4") ? "video" : undefined,
|
||||||
seeMore: ({ close }: { close: () => void }) => <AnnouncementDetails close={close} announcement={announcement} />
|
seeMore: ({ close }: { close: () => void }) => <AnnouncementDetails close={close} announcement={announcement} />
|
||||||
})
|
})
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
import { stations, lines } from "../assets/metro"
|
|
||||||
|
|
||||||
function lineByName(name: string) {
|
|
||||||
return lines.find(line => stations[line].has(name))
|
|
||||||
}
|
|
||||||
|
|
||||||
export { lineByName }
|
|
Loading…
x
Reference in New Issue
Block a user