mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 07:04:22 +00:00
59 lines
No EOL
1.7 KiB
TypeScript
59 lines
No EOL
1.7 KiB
TypeScript
import { faChevronRight, faClock } from "@fortawesome/free-solid-svg-icons"
|
|
import { HTMLProps } from "react"
|
|
import { EditingContext } from "../../contexts/editing"
|
|
import { useDefinedContext } from "../../utils/definedContext"
|
|
import { FestaIcon } from "../extensions/FestaIcon"
|
|
import { FormDateRange } from "../FormDateRange"
|
|
|
|
|
|
type EditableDateRangeProps = {
|
|
startProps: HTMLProps<HTMLInputElement> & {value?: string},
|
|
endProps: HTMLProps<HTMLInputElement> & {value?: string},
|
|
}
|
|
|
|
|
|
export function EditableDateRange(props: EditableDateRangeProps) {
|
|
const [editing,] = useDefinedContext(EditingContext)
|
|
|
|
const startDate = props.startProps
|
|
|
|
return editing ? (
|
|
<FormDateRange
|
|
preview={false}
|
|
icon={
|
|
<FestaIcon icon={faClock}/>
|
|
}
|
|
start={
|
|
<input
|
|
type="datetime-local"
|
|
{...props.startProps}
|
|
/>
|
|
}
|
|
connector={
|
|
<FestaIcon icon={faChevronRight}/>
|
|
}
|
|
end={
|
|
<input
|
|
type="datetime-local"
|
|
{...props.endProps}
|
|
/>
|
|
}
|
|
/>
|
|
) : (
|
|
<FormDateRange
|
|
preview={true}
|
|
icon={
|
|
<FestaIcon icon={faClock}/>
|
|
}
|
|
start={
|
|
new Date(Date.parse(props.startProps.value!)).toLocaleString()
|
|
}
|
|
connector={
|
|
<FestaIcon icon={faChevronRight}/>
|
|
}
|
|
end={
|
|
new Date(Date.parse(props.endProps.value!)).toLocaleString()
|
|
}
|
|
/>
|
|
)
|
|
} |