Components

Mendable Chat Bubble

Before installation, ensure you've either signed up through our platform or we have provided you with the ANON_KEY. Without the key, you won't be able to setup the chat bubble component.


Mendable Chat Bubble

The Chat Bubble is a component that appears as a floating chat icon, typically pinned to the bottom right of the screen. When clicked, it will open a dialog with Mendable Chat.

Usage

import { MendableChatBubble } from "@mendable/chat"

const style = { darkMode: false, accentColor: "#123456" }

<MendableChatBubble anon_key='YOUR_ANON_KEY' style={style} />
PropTypeDefaultDescription
anon_key (Required)string-Mendable Chat ANON_KEY
styleobject-Style object
style.darkModebooleanfalseDark mode
style.accentColorstring"#123456"Accent color
style.backgroundColorstring"#123456"Background color
contextstringfalseAdditional context to be passed to the AI
iconobjectChat Bubble EmojiReact: Chat icon HTML tag, can be a img, svg or any other HTML tag, Vanilla JS: image url
floatingButtonStyleobject-Defines the style for the floating button
cmdShortcutKeystring"k"Define the shortcut for users to open mendable with. By default, it is CMD + K or CTRL + K
showSimpleSearchbooleanfalseShow simple search bar option on the top
welcomeMessagestring"Hello, how can I help you?"Welcome message for the chat
dialogPlaceholderstring"Ask me anything..."Placeholder text for the mendable bot input bar inside the dialog window
botIconobjectBot EmojiReact: Bot icon HTML tag, can be a img, svg or any other HTML tag, Vanilla JS: image url
userIconobjectUser EmojiReact: User icon HTML tag, can be a img, svg or any other HTML tag, Vanilla JS: image url
positionOverwriteClassnamestring-Classname that helps overwrite the position of the floating button
dialogCustomStyleobject-Custom style for the dialog
customTextstring-Custom text for the chat
messageSettingsobject-Message settings
messageSettings.openSourcesInNewTabbooleanfalseOpen sources in new tab
messageSettings.prettySourcesbooleanfalseDisplay the sources by title / sub-section instead of long URL
messageSettings.hideSourcesbooleanfalseHide the sources
privacyDisclaimerstring""Privacy disclaimer text
footerobject-Footer object
footer.bottomRightLinkobject-Bottom right button object
footer.bottomRightLink.labelstring""Text label for the bottom right button
footer.bottomRightLink.linkstring""URL for the bottom right button
languagestring""Defaults to user's personal settings. Anything else will overwrite the language for all users. Languages available: pt,es,fr,it,nl,de,ja
onMessageForTrackingfunction-Callback function that triggers when a message is sent. It receives the question and answer as parameters
onSourceClickedForTrackingfunction-Callback function that triggers when a source is clicked. It receives the source as a parameter
onSwitchingSearchTypefunction-Callback function that triggers when the search type is switched. It receives the type as a parameter

Callback functions

The MendableChatBubble component provides callback functions for tracking events inside the component.

  • onMessageForTracking : This function is triggered whenever a message is sent in the component. The function receives the question and the answer as parameters. This can be used for logging or analytics purposes.

Example

import { MendableChatBubble } from "@mendable/chat"


function MySearchComponent() {
  const handleOnMessage = (question, answer) => {
    console.log("User asked:", question);
    console.log("Received answer:", answer);
    // You can add additional tracking or analytics logic here.
  };

  return (
    <MendableChatBubble
      anon_key="YOUR_ANON_KEY"
      onMessageForTracking={handleOnMessage}
    />
  );
}
  • onSourceClickedForTracking : This function is triggered whenever a source is clicked in the search results. The function receives the source as a parameter. This can be used for logging or tracking user interactions.

Example

import { MendableChatBubble } from "@mendable/chat"

function handleOnSourceClicked(source) {
  console.log("User clicked on source:", source);
  // Add tracking or logging logic here
}

<MendableChatBubble
  anon_key='YOUR_ANON_KEY'
  onSourceClickedForTracking={handleOnSourceClicked}
/>

Use these functions to gain insights into how users are interacting with the search bar.

Previous
In Place