forked from www/www-new
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
809 B
34 lines
809 B
import React from "react";
|
|
|
|
import styles from "./EventSetting.module.css";
|
|
|
|
interface Props {
|
|
date: Date;
|
|
online: boolean;
|
|
location: string;
|
|
}
|
|
|
|
export function EventSetting(props: Props) {
|
|
const date = props.date.toLocaleDateString("en-US", {
|
|
day: "numeric",
|
|
month: "long",
|
|
year: "numeric",
|
|
});
|
|
const time = props.date.toLocaleTimeString("en-US", {
|
|
hour: "numeric",
|
|
minute: "numeric",
|
|
timeZoneName: "short",
|
|
});
|
|
const location = props.online ? `Online - ${props.location}` : props.location;
|
|
const separator = <span className={styles.separator}> | </span>;
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<time dateTime={props.date.toISOString()}>{date}</time>
|
|
{separator}
|
|
<span>{time}</span>
|
|
{separator}
|
|
{location}
|
|
</div>
|
|
);
|
|
}
|
|
|