2.0.0-beta.2 • Published 7 months ago

@nlxchat/preact v2.0.0-beta.2

Weekly downloads
7
License
MIT
Repository
-
Last release
7 months ago

Preact hook wrapper for the NLX Chat SDK

This package provides the useChat custom hook which you can use to build your own chat widget in Preact like so:

Installation

npm install --save @nlxchat/preact preact

Usage

import { h } from "preact";
import { useChat } from "@nlxchat/preact";

const ChatWidget = () => {
  const chat = useChat({
    botUrl: "", // obtain from NLX deployments page
    headers: {
      "nlx-api-key": "", // obtain from NLX deployments page
    },
    userId: "abcd-1234", // optional property to identify the user
    conversationId: "", // start with a specific conversation ID - useful if you want to resume a previous conversation
    context: {}, // context that is shared with the bot
    languageCode: "es-US", // optional language code for standard bots that do not run on US English
  });

  return (
    <div>
      {chat.responses.map(/* render messages in the current conversation */)}
      <input
        value={chat.inputValue}
        onChange={(event) => {
          chat.setInputValue(event.target.value);
        }}
      />
      <button
        onClick={() => {
          chat.conversationHandler.sendText(chat.inputValue);
        }}
      >
        Send
      </button>
    </div>
  );
};

See the standalone chat widget implemention for a production-grade example.

API

The useChat hook returns an object containing the following fields:

conversationHandler

Contains the full conversation handler object from the the @nlxchat/core package. This is mostly used for the send* methods like sendText or sendStructured, as the response subscription is handled by the hook automatically.

inputValue and setInputValue

Hold and modify the value of the chat input field, which is auto-cleared whenever a message is sent. Using this field is optional and you can hold input state separately.

responses

The reactive full history of the chat messages. It contains the type: "user" | "bot" field and an associated payload. Please refer to the type definitions for a complete structure.

waiting

A reactive value that is true whenever a response from the bot is in progress, used to render a message bubble with loading dots.

messagesContainerRef

A ref object you can attach to the container of the messages. The browser will automatically scroll to the bottom of this container whenever new messages arrive.

scrollToBottom

The scroll logic applied on messagesContainerRef so you can scroll to the bottom of the messages container programmatically.

License

MIT.

2.0.0-alpha.7

8 months ago

2.0.0-alpha.8

8 months ago

2.0.0-alpha.9

8 months ago

2.0.0-alpha.10

8 months ago

2.0.0-alpha.4

8 months ago

2.0.0-alpha.5

8 months ago

2.0.0-alpha.6

8 months ago

2.0.0-alpha.0

10 months ago

2.0.0-alpha.1

10 months ago

2.0.0-alpha.13

8 months ago

2.0.0-alpha.12

8 months ago

2.0.0-beta.2

7 months ago

2.0.0-beta.1

7 months ago

1.0.16

1 year ago

1.0.17-alpha.0

1 year ago

1.0.11

1 year ago

1.0.15

1 year ago

1.0.12

1 year ago

1.0.9

1 year ago

1.0.6

1 year ago

1.0.10

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.5

1 year ago

1.0.3

1 year ago

1.0.1-alpha.0

1 year ago

1.0.0

1 year ago

1.0.0-alpha.5

1 year ago

1.0.0-alpha.4

1 year ago

1.0.0-alpha.3

1 year ago

1.0.0-alpha.2

1 year ago

0.5.6

2 years ago

0.5.6-alpha.2

2 years ago

0.5.6-alpha.3

2 years ago

0.5.6-alpha.4

2 years ago

0.5.4-alpha.8

2 years ago

0.5.6-alpha.0

2 years ago

0.5.6-alpha.1

2 years ago

0.5.4-alpha.1

2 years ago

0.5.4-alpha.0

2 years ago

0.5.4-alpha.3

2 years ago

0.5.4-alpha.2

2 years ago

0.5.4-alpha.5

2 years ago

0.5.4-alpha.4

2 years ago

0.5.4-alpha.7

2 years ago

0.5.4-alpha.6

2 years ago

0.5.5

2 years ago

0.5.2-alpha.0

2 years ago

0.5.2-alpha.1

2 years ago

0.5.2-alpha.2

2 years ago

0.5.2-alpha.3

2 years ago

0.5.3

2 years ago

0.5.2

2 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.5.0-alpha.3

3 years ago

0.5.0-alpha.2

3 years ago

0.5.0-alpha.1

3 years ago

0.4.3

3 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.1-alpha.2

4 years ago