feat: add booking question field types to routing forms#27959
Draft
omair445 wants to merge 2 commits intocalcom:mainfrom
Draft
feat: add booking question field types to routing forms#27959omair445 wants to merge 2 commits intocalcom:mainfrom
omair445 wants to merge 2 commits intocalcom:mainfrom
Conversation
Adds the same field types available in event-type booking questions to routing forms for consistency. New field types: - Address (text-based input) - URL (text-based input with url type) - Checkbox group (multi-value, like multiselect but with checkboxes) - Radio group (single-value, like select but with radio buttons) - Boolean/Checkbox (single checkbox, yes/no) Changes: - Extended RoutingFormFieldType enum with new types - Added RAQB widget definitions and type mappings for routing rules - Added factory functions for rendering new field types - Updated query builder config to handle options for checkbox/radio/boolean - Updated response transform logic for new field types Fixes calcom#18987
Graphite Automations"Send notification to Community team when bounty PR opened" took an action on this PR • (02/14/26)2 teammates were notified to this PR based on Keith Williams's automation. |
Member
|
Thanks @omair445 , we'll require a video demo for this PR! |
Author
|
hey @romitg2, working on the demo video — will have it up shortly! |
Contributor
Ryukemeister
left a comment
There was a problem hiding this comment.
hi @omair445 thank for the PR, can you also update the relevant routing forms e2e tests here. thanks!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
this extends routing forms to support the same field types available in booking questions — address, URL, checkbox group, radio group, and boolean.
right now routing forms are limited to basic text/number/select fields, which makes it hard to build more complex intake flows. with this change you can reuse the same question types across both booking forms and routing forms.
changes:
fixes #18987