35 lines
916 B
TypeScript
35 lines
916 B
TypeScript
import { z } from 'zod'
|
|
import { blockBaseSchema, optionBaseSchema } from '../baseSchemas'
|
|
import { defaultButtonLabel } from './constants'
|
|
import { InputBlockType } from './enums'
|
|
|
|
export const textInputOptionsBaseSchema = z.object({
|
|
labels: z.object({
|
|
placeholder: z.string(),
|
|
button: z.string(),
|
|
}),
|
|
})
|
|
|
|
export const textInputOptionsSchema = textInputOptionsBaseSchema
|
|
.merge(optionBaseSchema)
|
|
.merge(
|
|
z.object({
|
|
isLong: z.boolean(),
|
|
})
|
|
)
|
|
|
|
export const defaultTextInputOptions: TextInputOptions = {
|
|
isLong: false,
|
|
labels: { button: defaultButtonLabel, placeholder: 'Type your answer...' },
|
|
}
|
|
|
|
export const textInputSchema = blockBaseSchema.merge(
|
|
z.object({
|
|
type: z.enum([InputBlockType.TEXT]),
|
|
options: textInputOptionsSchema,
|
|
})
|
|
)
|
|
|
|
export type TextInputBlock = z.infer<typeof textInputSchema>
|
|
export type TextInputOptions = z.infer<typeof textInputOptionsSchema>
|