mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
84 lines
No EOL
2.3 KiB
TypeScript
84 lines
No EOL
2.3 KiB
TypeScript
import { ComponentPropsWithoutRef } from "react"
|
|
import { FestaMoment } from "../renderers/datetime"
|
|
import { FestaMarkdownRenderer } from "../renderers/markdown"
|
|
import { EditingModeBranch } from "./base"
|
|
|
|
|
|
type TextInputProps = ComponentPropsWithoutRef<"input"> & { value: string }
|
|
type FileInputProps = ComponentPropsWithoutRef<"input"> & { value?: undefined }
|
|
type TextAreaProps = ComponentPropsWithoutRef<"textarea"> & { value: string }
|
|
|
|
|
|
/**
|
|
* Controlled input component which displays an `input[type="text"]` in edit mode, and a `span` displaying the input in view mode.
|
|
*/
|
|
export const EditableText = (props: TextInputProps) => {
|
|
return (
|
|
<EditingModeBranch
|
|
edit={
|
|
<input type="text" {...props} />
|
|
}
|
|
view={
|
|
<div>{props.value}</div>
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
|
|
/**
|
|
* Controlled input component which displays an `input[type="file"]` in edit mode, and is invisible in view mode.
|
|
*
|
|
* Has no value due to how file inputs function in JS and React.
|
|
*/
|
|
export const EditableFilePicker = (props: FileInputProps) => {
|
|
return (
|
|
<EditingModeBranch
|
|
edit={
|
|
<input type="file" {...props} />
|
|
}
|
|
view={
|
|
<></>
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
|
|
/**
|
|
* Controlled input component which displays a `textarea` in edit mode, and renders the input in Markdown using {@link FestaMarkdownRenderer} in view mode.
|
|
*/
|
|
export const EditableMarkdown = (props: TextAreaProps) => {
|
|
return (
|
|
<EditingModeBranch
|
|
edit={
|
|
<textarea {...props} />
|
|
}
|
|
view={
|
|
<FestaMarkdownRenderer code={props.value} />
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
|
|
/**
|
|
* Controlled input component which displays a `input[type="datetime-local"]` in edit mode, and renders the selected datetime using {@link FestaMoment} in view mode.
|
|
*/
|
|
export const EditableDateTimeLocal = (props: TextInputProps) => {
|
|
return (
|
|
<EditingModeBranch
|
|
edit={
|
|
<input
|
|
type="datetime-local"
|
|
{...props}
|
|
/>
|
|
}
|
|
view={
|
|
<div>
|
|
<FestaMoment date={new Date(props.value)} />
|
|
</div>
|
|
}
|
|
/>
|
|
)
|
|
} |