sunrise-cms/handlers/reports-get/search.ts

25 lines
666 B
TypeScript

import type { RequestHandler } from 'express'
import * as dateTimeFunctions from '@cityssm/expressjs-server-js/dateTimeFns.js'
import { getMaps } from '../../helpers/lotOccupancyDB/getMaps.js'
import { getLotStatuses, getLotTypes } from '../../helpers/functions.cache.js'
export const handler: RequestHandler = (_request, response) => {
const rightNow = new Date()
const maps = getMaps()
const lotTypes = getLotTypes()
const lotStatuses = getLotStatuses()
response.render('report-search', {
headTitle: 'Reports',
todayDateString: dateTimeFunctions.dateToString(rightNow),
maps,
lotTypes,
lotStatuses
})
}
export default handler