2
0

(rating) Add one click submit option

Closes #187
This commit is contained in:
Baptiste Arnaud
2022-12-24 08:11:41 +01:00
parent 2934af8835
commit 449080b0ad
6 changed files with 22 additions and 4 deletions

View File

@ -42,6 +42,9 @@ export const RatingInputSettings = ({
const handleVariableChange = (variable?: Variable) =>
onOptionsChange({ ...options, variableId: variable?.id })
const handleOneClickSubmitChange = (isOneClickSubmitEnabled: boolean) =>
onOptionsChange({ ...options, isOneClickSubmitEnabled })
return (
<Stack spacing={4}>
<Stack>
@ -108,6 +111,12 @@ export const RatingInputSettings = ({
placeholder="Extremely likely"
/>
</Stack>
<SwitchWithLabel
label="One click submit"
moreInfoContent='If enabled, the answer will be submitted as soon as the user clicks on a rating instead of showing the "Send" button.'
initialValue={options.isOneClickSubmitEnabled ?? false}
onCheckChange={handleOneClickSubmitChange}
/>
<Stack>
<FormLabel mb="0" htmlFor="button">
Button label:

View File

@ -1,3 +1,3 @@
export { RatingInputSettings } from './components/RatingInputSettingsBody'
export { RatingInputSettings } from './components/RatingInputSettings'
export { RatingInputContent } from './components/RatingInputContent'
export { RatingInputIcon } from './components/RatingInputIcon'

View File

@ -40,6 +40,7 @@ test('options should work', async ({ page }) => {
await page.click('text=Rate from 0 to 10')
await page.click('text="10"')
await page.click('text="5"')
await page.getByText('One click submit').click()
await page.click('text=Numbers')
await page.click('text=Icons')
await page.click('text="Custom icon?"')
@ -56,6 +57,5 @@ test('options should work', async ({ page }) => {
typebotViewer(page).locator(`text=Extremely likely`)
).toBeVisible()
await typebotViewer(page).locator(`svg >> nth=4`).click()
await typebotViewer(page).locator(`text=Send`).click()
await expect(typebotViewer(page).locator(`text=5`)).toBeVisible()
})