Install
npm install @brainfish-ai/chat-widget @brainfish-ai/react-chat-widget
Standard
import { Standard } from '@brainfish-ai/react-chat-widget'
const App = () => {
return (
<Standard
chatAppId="lead-generation-copy-3luzm6b"
style={{ width: '100%', height: '600px' }}
/>
)
}
This code is creating a container with a 100% width (will match parent width) and 600px height.
import { Popup } from '@brainfish-ai/react-chat-widget'
const App = () => {
return <Popup chatAppId="lead-generation-copy-3luzm6b" autoShowDelay={3000} />
}
This code will automatically trigger the popup window after 3 seconds.
You can use these commands:
import { open } from '@brainfish-ai/react-chat-widget'
open()
import { close } from '@brainfish-ai/react-chat-widget'
close()
import { toggle } from '@brainfish-ai/react-chat-widget'
toggle()
Bubble
import { Bubble } from '@brainfish-ai/react-chat-widget'
const App = () => {
return (
<Bubble
chatAppId="lead-generation-copy-3luzm6b"
theme={{
button: { backgroundColor: '#0042DA', iconColor: '#FFFFFF' },
previewMessage: { backgroundColor: '#ffffff', textColor: 'black' },
}}
/>
)
}
This code will show the bubble and let a preview message appear after 5 seconds.
Open or close the chat window
You can use these commands:
import { open } from '@brainfish-ai/react-chat-widget'
open()
import { close } from '@brainfish-ai/react-chat-widget'
close()
import { toggle } from '@brainfish-ai/react-chat-widget'
toggle()