1.1.22 • Published 11 days ago

@freeday-ai/webchat-widget v1.1.22

Weekly downloads
-
License
MIT
Repository
-
Last release
11 days ago

@freeday-ai/webchat-widget

Freeday chat widget

NPM Downloads JavaScript Style Guide

Demo

Available at https://chat-widget.freeday.chat

portal-chat-demo

Install

pnpm add @freeday-ai/webchat-widget

or

npm install --save @freeday-ai/webchat-widget

Usage

First, sign up at https://freeday.me/register to get your account token. Your account token is what you will use to pass in as the token prop below.

Using in HTML

Paste the code below between your <head> and </head> tags:

<script>
  window.Freeday = {
    config: {
      // Pass in your Freeday account token here after signing up
      token: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx',
      title: 'Welcome to Freeday!',
      subtitle: 'Ask us anything in the chat window below 😊',
      // Optionally render inside a different theme
      theme: "freeday_v2",
      primaryColor: "#13c2c2",
      // Optionally pass in a default greeting
      greeting: 'Hi there! How can I help you?',
      // Optionally specify the base URL
      baseUrl: 'https://beta-webchat.freeday.chat',
    },
  };
</script>
<!-- Make sure to replace <version> with the actual version number. You can find the latest version at: https://www.npmjs.com/package/@freeday-ai/webchat-widget?activeTab=versions -->
<script
  type="text/javascript"
  async
  defer
  src="https://unpkg.com/@freeday-ai/webchat-widget@<version>/dist/freeday-webchat-widget.iife.js"
></script>

Using in React

Place the code below in any pages on which you would like to render the widget. If you'd like to render it in all pages by default, place it in the root component of your app.

import React from 'react';

import {ChatWidget} from '@freeday-ai/webchat-widget';

// You can also import the following
// import {ChatWidget, ChatWindow, Freeday} from '@freeday-ai/webchat-widget';
//
// The `ChatWindow` component allows you to embed the chat however you want,
// and the `Freeday` object provides access to functions that can programmatically
// open/close the chat widget, e.g.:
//
// `Freeday.open()` // => opens the chat widget
// `Freeday.close()` // => closes the chat widget
// `Freeday.toggle()` // => toggles (opens or closes) the chat widget

const ExamplePage = () => {
  return (
    <>
      {/*
        Put <ChatWidget /> at the bottom of whatever pages you would
        like to render the widget on, or in your root/router component
        if you would like it to render on every page
      */}
      <ChatWidget
        // Pass in your Freeday account token here after signing up
        token='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx'
        title='Welcome to Freeday!'
        subtitle='Ask us anything in the chat window below 😊'
        primaryColor='#13c2c2'
        theme='freeday_v2'
      />
    </>
  );
};

Options

These are the props you can pass into your <ChatWidget /> React component, or the fields you can specify in your Freeday.config:

PropTypeValueDefault
tokenstringYour Freeday account tokenN/A
titlestringThe title in the header of your chat widgetWelcome!
subtitlestringThe subtitle in the header of your chat widgetHow can we help you?
primaryColorstringThe theme color of your chat widget1890ff
avatarstringAn optional An optional initial image url to be used as avatarN/A
iframeUrlOverridestringAn override of the iframe URL we use to render the chat, if you have a custom intergrationfalse
isOpenByDefaultbooleanIf you want the chat widget to open as soon as it loadsfalse
persistOpenStatebooleanPersists the open state of the chat across pagesfalse
hideToggleButtonbooleanHides the toggle button in case you want to open/close programmaticallyfalse
customIconUrlstringA link to a custom icon image URLN/A
iconVariant'outlined' \| 'filled'The style of the default iconoutlined
position'right' \| 'left'The position of the chat on the pageright
stylesobjectInline style overrides for chatContainer, toggleContainer, and toggleButton{}
storageType'local' \| 'session' \| 'cookie' \| 'memory' \| 'none'The storage type used by the user sessionsession
onChatLoaded({open, close, identify}) => voidCallback fired when chat is loaded, returning some utility functionsN/A
onChatOpened() => voidCallback fired when chat is openedN/A
onChatClosed() => voidCallback fired when chat is closedN/A

Development

To build the project, run pnpm build in the root directory. (If you're running it for the first time, you'll have to run pnpm install first.)

pnpm install
pnpm build

To test it out

pnpm install
pnpm dev

This will start a development server on http://localhost:3000 by default, and open up the example app in your browser.

Important notes

By default, the example widget points at development servers for the Freeday API (which runs at http://localhost:4000). These values are set with the iframeUrlOverride props respectively.

If you want to develop against your account in production, you can update these values to the following:

  • iframeUrlOverride: https://webchat.freeday.chat

(Note that you can also simply remove these props, since the values above are the defaults.)

You'll also want to update your account token to point to your own account. If you haven't already, create a free account at https://freeday.me/register to get started.

Once you have your account token, update the token prop to point at yours.

Questions?

If you're having any trouble getting started or just want to say hi, ask Beaudinn add Slack.

1.1.22

11 days ago

1.1.21

11 days ago

1.1.20

11 days ago

1.1.16

21 days ago

1.1.15

22 days ago

1.1.19

21 days ago

1.1.18

21 days ago

1.1.17

21 days ago

1.1.14

1 month ago

1.1.13

2 months ago

1.1.12

2 months ago

1.1.11

2 months ago

1.1.10

2 months ago

1.1.9

2 months ago

1.1.8

3 months ago

1.1.7

3 months ago

1.1.6

3 months ago

1.1.5

3 months ago

1.1.4

4 months ago

1.1.3

4 months ago

1.1.2

4 months ago

1.1.1

4 months ago

1.1.0

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago

0.0.1-alpha.8

5 months ago

0.0.1-alpha.7

5 months ago

0.0.1-alpha.6

6 months ago

0.0.1-alpha.5

6 months ago

0.0.1-alpha.4

6 months ago

0.0.1-alpha.3

6 months ago

0.0.1-alpha.2

6 months ago

0.0.1-alpha.1

6 months ago

0.0.1-alpha.0

6 months ago