0.0.15 • Published 2 years ago

@brainfish-ai/react-chat-widget v0.0.15

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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.

Popup

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.

Open or Close a popup

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()
0.0.13

2 years ago

0.0.14

2 years ago

0.0.15

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago