0.0.6 • Published 10 months ago

@openbot/react v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

Install

npm install @openbot/js2 @openbot/react

Standard

import { Standard } from '@openbot/react'

const App = () => {
  return (
    <Standard
      agent={{
        id: 'agent id',
        options: {
          avatar: {
            type: '3d',
            options: {
              modelSrc: 'https://your_model_url'
            }
          }
        }
      }}
      showAvatar
      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 '@openbot/react'

const App = () => {
  return (
    <Popup 
      agent={{
        id: 'agent id',
        options: {
          avatar: {
            type: '3d',
            options: {
              modelSrc: 'https://your_model_url'
            }
          }
        }
      }}
      showAvatar
      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 '@openbot/react'

open()
import {
    close
} from '@openbot/react'

close()
import {
    toggle
} from '@openbot/react'

toggle()

Bubble

import { Bubble } from '@openbot/react'

const App = () => {
  return (
    <Bubble
      agent={{
        id: 'agent id',
        options: {
          avatar: {
            type: '3d',
            options: {
              modelSrc: 'https://your_model_url'
            }
          }
        }
      }}
      showAvatar
      previewMessage={{
        message: 'I have a question for you!',
        autoShowDelay: 5000,
        avatarUrl: 'https://avatars.githubusercontent.com/u/16015833?v=4',
      }}
      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 preview message

You can use these commands:

import {
    showPreviewMessage
} from '@openbot/react'

Openbot.showPreviewMessage()
import {
    hidePreviewMessage
} from '@openbot/react'

Openbot.hidePreviewMessage()

Open or close the chat window

You can use these commands:

import {
    open
} from '@openbot/react'

open()
import {
    close
} from '@openbot/react'

close()
import {
    toggle
} from '@openbot/react'

toggle()
0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago