2
0

(imageBubble) Add redirect on image click option

Closes #448
This commit is contained in:
Baptiste Arnaud
2023-04-07 11:30:54 +02:00
parent ee14228ee3
commit e06f8186f6
7 changed files with 121 additions and 26 deletions

View File

@@ -0,0 +1,80 @@
import { ImageUploadContent } from '@/components/ImageUploadContent'
import { TextInput } from '@/components/inputs'
import { SwitchWithLabel } from '@/components/inputs/SwitchWithLabel'
import { Stack } from '@chakra-ui/react'
import { isDefined, isNotEmpty } from '@typebot.io/lib'
import { ImageBubbleBlock } from '@typebot.io/schemas'
import React, { useState } from 'react'
type Props = {
typebotId: string
block: ImageBubbleBlock
onContentChange: (content: ImageBubbleBlock['content']) => void
}
export const ImageBubbleSettings = ({
typebotId,
block,
onContentChange,
}: Props) => {
const [showClickLinkInput, setShowClickLinkInput] = useState(
isNotEmpty(block.content.clickLink?.url)
)
const updateImage = (url: string) => {
onContentChange({ ...block.content, url })
}
const updateClickLinkUrl = (url: string) => {
onContentChange({
...block.content,
clickLink: { ...block.content.clickLink, url },
})
}
const updateClickLinkAltText = (alt: string) => {
onContentChange({
...block.content,
clickLink: { ...block.content.clickLink, alt },
})
}
const toggleClickLink = () => {
if (isDefined(block.content.clickLink) && showClickLinkInput) {
onContentChange({ ...block.content, clickLink: undefined })
}
setShowClickLinkInput(!showClickLinkInput)
}
return (
<Stack p="2" spacing={4}>
<ImageUploadContent
filePath={`typebots/${typebotId}/blocks/${block.id}`}
defaultUrl={block.content?.url}
onSubmit={updateImage}
/>
<Stack>
<SwitchWithLabel
label={'On click link'}
initialValue={showClickLinkInput}
onCheckChange={toggleClickLink}
/>
{showClickLinkInput && (
<>
<TextInput
autoFocus
placeholder="https://example.com"
onChange={updateClickLinkUrl}
defaultValue={block.content.clickLink?.url}
/>
<TextInput
placeholder="Link alt text (description)"
onChange={updateClickLinkAltText}
defaultValue={block.content.clickLink?.alt}
/>
</>
)}
</Stack>
</Stack>
)
}

View File

@@ -1,6 +1,6 @@
import { ImageUploadContent } from '@/components/ImageUploadContent'
import { AudioBubbleForm } from '@/features/blocks/bubbles/audio/components/AudioBubbleForm'
import { EmbedUploadContent } from '@/features/blocks/bubbles/embed/components/EmbedUploadContent'
import { ImageBubbleSettings } from '@/features/blocks/bubbles/image/components/ImageBubbleSettings'
import { VideoUploadContent } from '@/features/blocks/bubbles/video/components/VideoUploadContent'
import {
Portal,
@@ -46,15 +46,13 @@ export const MediaBubbleContent = ({
block,
onContentChange,
}: Props) => {
const handleImageUrlChange = (url: string) => onContentChange({ url })
switch (block.type) {
case BubbleBlockType.IMAGE: {
return (
<ImageUploadContent
filePath={`typebots/${typebotId}/blocks/${block.id}`}
defaultUrl={block.content?.url}
onSubmit={handleImageUrlChange}
<ImageBubbleSettings
typebotId={typebotId}
block={block}
onContentChange={onContentChange}
/>
)
}