2021-12-23 09:37:42 +01:00
|
|
|
import React, { useEffect, useState } from 'react'
|
2022-01-24 09:36:28 +01:00
|
|
|
import { Text, HStack } from '@chakra-ui/react'
|
2023-03-15 08:35:16 +01:00
|
|
|
import { env, isEmpty } from '@typebot.io/lib'
|
2023-03-03 09:01:11 +01:00
|
|
|
import { AutocompleteInput } from '@/components/inputs/AutocompleteInput'
|
2021-12-23 09:37:42 +01:00
|
|
|
|
|
|
|
type FontSelectorProps = {
|
|
|
|
activeFont?: string
|
|
|
|
onSelectFont: (font: string) => void
|
|
|
|
}
|
|
|
|
|
|
|
|
export const FontSelector = ({
|
|
|
|
activeFont,
|
|
|
|
onSelectFont,
|
|
|
|
}: FontSelectorProps) => {
|
|
|
|
const [currentFont, setCurrentFont] = useState(activeFont)
|
|
|
|
const [googleFonts, setGoogleFonts] = useState<string[]>([])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
fetchPopularFonts().then(setGoogleFonts)
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
const fetchPopularFonts = async () => {
|
2022-06-22 07:36:11 +02:00
|
|
|
if (isEmpty(env('GOOGLE_API_KEY'))) return []
|
2021-12-23 09:37:42 +01:00
|
|
|
const response = await fetch(
|
2022-06-22 07:36:11 +02:00
|
|
|
`https://www.googleapis.com/webfonts/v1/webfonts?key=${env(
|
|
|
|
'GOOGLE_API_KEY'
|
|
|
|
)}&sort=popularity`
|
2021-12-23 09:37:42 +01:00
|
|
|
)
|
|
|
|
return (await response.json()).items.map(
|
|
|
|
(item: { family: string }) => item.family
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-22 18:24:57 +01:00
|
|
|
const handleFontSelected = (nextFont: string) => {
|
2023-03-03 09:01:11 +01:00
|
|
|
if (nextFont === currentFont) return
|
2022-01-22 18:24:57 +01:00
|
|
|
setCurrentFont(nextFont)
|
|
|
|
onSelectFont(nextFont)
|
|
|
|
}
|
|
|
|
|
2021-12-23 09:37:42 +01:00
|
|
|
return (
|
2022-01-24 09:36:28 +01:00
|
|
|
<HStack justify="space-between" align="center">
|
2021-12-23 09:37:42 +01:00
|
|
|
<Text>Font</Text>
|
2023-03-03 09:01:11 +01:00
|
|
|
<AutocompleteInput
|
|
|
|
defaultValue={activeFont}
|
2021-12-23 09:37:42 +01:00
|
|
|
items={googleFonts}
|
2023-03-03 09:01:11 +01:00
|
|
|
onChange={handleFontSelected}
|
|
|
|
withVariableButton={false}
|
2021-12-23 09:37:42 +01:00
|
|
|
/>
|
2022-01-24 09:36:28 +01:00
|
|
|
</HStack>
|
2021-12-23 09:37:42 +01:00
|
|
|
)
|
|
|
|
}
|