2
0

🦴 Add share page backbone

This commit is contained in:
Baptiste Arnaud
2021-12-23 15:20:21 +01:00
parent 79aede1f3f
commit 9a78a341d2
12 changed files with 217 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import {
import shortId from 'short-uuid'
import { Typebot } from 'bot-engine'
import useSWR from 'swr'
import { fetcher, sendRequest } from './utils'
import { fetcher, sendRequest, toKebabCase } from './utils'
import { deepEqual } from 'fast-equals'
export const useTypebots = ({
@ -71,7 +71,14 @@ export const deleteTypebot = async (id: string) =>
method: 'DELETE',
})
export const updateTypebot = async (id: string, typebot: Partial<Typebot>) =>
export const updateTypebot = async (id: string, typebot: Typebot) =>
sendRequest({
url: `/api/typebots/${id}`,
method: 'PUT',
body: typebot,
})
export const patchTypebot = async (id: string, typebot: Partial<Typebot>) =>
sendRequest({
url: `/api/typebots/${id}`,
method: 'PATCH',
@ -157,4 +164,8 @@ export const parseTypebotToPublicTypebot = (
typebotId: typebot.id,
theme: typebot.theme,
settings: typebot.settings,
publicId: typebot.publicId,
})
export const parseDefaultPublicId = (name: string, id: string) =>
toKebabCase(`${name}-${id?.slice(0, 5)}`)

View File

@ -63,3 +63,11 @@ export const parseHtmlStringToPlainText = (html: string): string => {
parser.end()
return label
}
export const toKebabCase = (value: string) => {
const matched = value.match(
/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g
)
if (!matched) return ''
return matched.map((x) => x.toLowerCase()).join('-')
}