Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

@brainfi.sh/react-chat-widget

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brainfi.sh/react-chat-widget

React library to display brainfish chat widget on your website

latest
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

Install

npm install @brainfi.sh/chat-widget @brainfi.sh/react-chat-widget

Standard

import { Standard } from '@brainfi.sh/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 '@brainfi.sh/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 '@brainfi.sh/react-chat-widget'

open()
import { close } from '@brainfi.sh/react-chat-widget'

close()
import { toggle } from '@brainfi.sh/react-chat-widget'

toggle()

Bubble

import { Bubble } from '@brainfi.sh/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 '@brainfi.sh/react-chat-widget'

open()
import { close } from '@brainfi.sh/react-chat-widget'

close()
import { toggle } from '@brainfi.sh/react-chat-widget'

toggle()

FAQs

Package last updated on 22 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts