rallly/utils/constants.ts
Luke Vella 8aec24308e
Use locale to format dates and times (#123)
* Use deployment url in demo description.

Close #131
2022-04-26 20:10:59 +01:00

18 lines
605 B
TypeScript

import { Placement } from "@floating-ui/react-dom-interactions";
export const isInMaintenanceMode = process.env.MAINTENANCE_MODE === "true";
export const transformOriginByPlacement: Record<Placement, string> = {
bottom: "origin-top",
"bottom-end": "origin-top-right",
"bottom-start": "origin-top-left",
left: "origin-right",
"left-start": "origin-top-right",
"left-end": "origin-bottom-right",
right: "origin-left",
"right-start": "origin-top-left",
"right-end": "origin-bottom-left",
top: "origin-bottom",
"top-start": "origin-bottom-left",
"top-end": "origin-bottom-right",
};