Developer Docs

Touchpoint components

DateInput

Date Input Example

Date Input Example

About

The Date Input component provides a user-friendly interface for entering and submitting dates in a standardized format. It combines input masking, validation, and submission capabilities in a single component.

Properties

PropertyTypeRequiredDescription
onSubmitfunctionNoHandler function that receives the parsed date string (YYYY-MM-DD)

Import and Basic Usage

You can import the DateInput component once the package has been installed or made available in your project.

Define onSumbit

The Date Input Component expect a function passed via onSubmit that be called when the user finalizes their date selection.

The ConversationHandler method sendSlots is available through the conversationHandler.sendSlots to send the user's choice back to NLX.

The sendSlots method expects the Slot to previously be defined within NLX. For example, when the User Choice node is resolving a slot named "TouchpointDateInputResult" with the DatePicker, the SlotResponse should be {"TouchpointDateInputResult": date}.

Example

The DateInput component is best triggered in a User Choice Node on NLX with a modality attached to trigger the DateInput component. The date selection should be sent back to NLX to fill the slot in the User Choice Node and NOT as a choice. This is different than the typical CustomCard or Button components where the choice back to NLX it typically a 'choice'.

Example Modality

In the examples below, the modality is named DateInputExample with a single string as the schema.

Example Date Input Component

1import { DateInput } from "@nlxai/touchpoint-ui"; 2 3const DateInputExample = ({ data, conversationHandler }) => { 4 return ( 5 <DateInput 6 onSubmit={(date) => 7 conversationHandler.sendSlots({ TouchpointDateInputResult: date }) 8 } 9 /> 10 ); 11};