36 lines
969 B
TypeScript
36 lines
969 B
TypeScript
import { z } from 'zod'
|
|
import { optionBaseSchema, blockBaseSchema } from '../baseSchemas'
|
|
import { defaultButtonLabel } from './constants'
|
|
import { InputBlockType } from './enums'
|
|
|
|
export const dateInputOptionsSchema = optionBaseSchema.merge(
|
|
z.object({
|
|
labels: z.object({
|
|
button: z.string(),
|
|
from: z.string(),
|
|
to: z.string(),
|
|
}),
|
|
hasTime: z.boolean(),
|
|
isRange: z.boolean(),
|
|
format: z.string().optional(),
|
|
min: z.string().optional(),
|
|
max: z.string().optional(),
|
|
})
|
|
)
|
|
|
|
export const dateInputSchema = blockBaseSchema.merge(
|
|
z.object({
|
|
type: z.enum([InputBlockType.DATE]),
|
|
options: dateInputOptionsSchema,
|
|
})
|
|
)
|
|
|
|
export const defaultDateInputOptions: DateInputOptions = {
|
|
hasTime: false,
|
|
isRange: false,
|
|
labels: { button: defaultButtonLabel, from: 'From:', to: 'To:' },
|
|
}
|
|
|
|
export type DateInputBlock = z.infer<typeof dateInputSchema>
|
|
export type DateInputOptions = z.infer<typeof dateInputOptionsSchema>
|