23 lines
533 B
TypeScript
23 lines
533 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import * as configFunctions from "../../helpers/functions.config.js";
|
|
|
|
import { getMap } from "../../helpers/lotOccupancyDB/getMap.js";
|
|
|
|
|
|
export const handler: RequestHandler = (request, response) => {
|
|
|
|
const map = getMap(request.params.mapId);
|
|
|
|
if (!map) {
|
|
return response.redirect(configFunctions.getProperty("reverseProxy.urlPrefix") + "/maps/?error=mapIdNotFound");
|
|
}
|
|
|
|
response.render("map-view", {
|
|
headTitle: map.mapName,
|
|
map
|
|
});
|
|
};
|
|
|
|
|
|
export default handler; |