Convert Figma logo to code with AI

mattmezza logovue-beautiful-chat

A simple and beautiful Vue chat component backend agnostic, fully customisable and extendable.

1,481
437
1,481
24

Top Related Projects

12,494

The open-source hub to build & deploy GPT/LLM Agents ⚡️

⚡️ A framework for building conversational user interfaces.

6,061

A framework agnostic PHP library to build chat bots

Quick Overview

The vue-beautiful-chat project is a customizable chat component for Vue.js applications. It provides a clean and modern user interface for implementing real-time chat functionality in web applications.

Pros

  • Customizable Appearance: The component offers a wide range of customization options, allowing developers to easily match the chat interface with the branding and design of their application.
  • Responsive Design: The chat component is designed to be responsive and mobile-friendly, ensuring a consistent user experience across different devices.
  • Easy Integration: The project is well-documented and provides clear instructions for integrating the chat component into Vue.js applications.
  • Active Development: The project is actively maintained, with regular updates and bug fixes, ensuring ongoing support and improvements.

Cons

  • Limited Functionality: While the chat component provides a solid foundation, it may lack some advanced features or functionality that some users might require, such as file uploads, video/audio calls, or more complex message formatting.
  • Dependency on Vue.js: The vue-beautiful-chat component is specifically designed for Vue.js applications, which may limit its use in projects that are not built with Vue.js.
  • Potential Performance Issues: Depending on the size and complexity of the chat interface, the component may have performance implications, especially in large-scale applications with a high volume of messages.
  • Limited Customization Options: While the component offers a good range of customization options, some users may find the level of customization to be limited, requiring more extensive CSS or JavaScript modifications.

Code Examples

Here are a few code examples demonstrating the usage of the vue-beautiful-chat component:

  1. Initializing the Chat Component:
<template>
  <div id="app">
    <beautiful-chat
      :participants="participants"
      :titleImageUrl="titleImageUrl"
      :onMessageWasSent="onMessageWasSent"
      :messageList="messageList"
      :newMessagesCount="newMessagesCount"
      :isOpen="isChatOpen"
      :close="closeChat"
      :open="openChat"
      :showEmoji="true"
      :showFile="true"
      :showTypingIndicator="'is typing'"
    />
  </div>
</template>

<script>
import Vue from 'vue'
import VueBeautifulChat from 'vue-beautiful-chat'

Vue.use(VueBeautifulChat)

export default {
  name: 'App',
  data() {
    return {
      participants: [
        {
          id: 'user1',
          name: 'Mattia',
          imageUrl: 'https://avatars.githubusercontent.com/u/7049?v=4'
        },
        {
          id: 'user2',
          name: 'John Doe',
          imageUrl: 'https://i.pravatar.cc/150?u=a042581f4e29026704d'
        }
      ],
      titleImageUrl: 'https://avatars.githubusercontent.com/u/7049?v=4',
      messageList: [],
      newMessagesCount: 0,
      isChatOpen: false
    }
  },
  methods: {
    onMessageWasSent(message) {
      this.messageList = [...this.messageList, message]
    },
    closeChat() {
      this.isChatOpen = false
    },
    openChat() {
      this.isChatOpen = true
    }
  }
}
</script>
  1. Customizing the Chat Appearance:
<beautiful-chat
  :participants="participants"
  :titleImageUrl="titleImageUrl"
  :onMessageWasSent="onMessageWasSent"
  :messageList="messageList"
  :newMessagesCount="newMessagesCount"
  :isOpen="isChatOpen"
  :close="closeChat"
  :open="openChat"
  :showEmoji="true"
  :showFile="true"
  :showTypingIndicator="'is typing'"
  :colors="{
    header: '#0072c6',
    header

Competitor Comparisons

12,494

The open-source hub to build & deploy GPT/LLM Agents ⚡️

Pros of Botpress

  • Full-featured chatbot platform with NLU, dialog management, and analytics
  • Supports multiple channels (web, Messenger, Slack, etc.)
  • Extensible with custom modules and integrations

Cons of Botpress

  • More complex setup and learning curve
  • Requires server-side deployment and maintenance
  • May be overkill for simple chat implementations

Code Comparison

vue-beautiful-chat:

<template>
  <beautiful-chat
    :participants="participants"
    :titleImageUrl="titleImageUrl"
    :onMessageWasSent="onMessageWasSent"
    :messageList="messageList"
    :newMessagesCount="newMessagesCount"
    :isOpen="isChatOpen"
    :close="closeChat"
    :open="openChat"
    :showEmoji="true"
    :showFile="true"
    :showTypingIndicator="showTypingIndicator"
    :colors="colors"
    :alwaysScrollToBottom="alwaysScrollToBottom"
    :messageStyling="messageStyling"
  />
</template>

Botpress:

bp.hear(/hello/i, (event, next) => {
  bp.messaging.sendText(event.channel.id, 'Hello, human!')
})

bp.hear(/bye/i, (event, next) => {
  bp.messaging.sendText(event.channel.id, 'Goodbye!')
})

While vue-beautiful-chat focuses on providing a customizable chat UI component for Vue.js applications, Botpress offers a comprehensive chatbot development platform with more advanced features. The code examples highlight this difference, with vue-beautiful-chat showing a declarative UI component and Botpress demonstrating simple bot logic implementation.

⚡️ A framework for building conversational user interfaces.

Pros of bottender

  • Multi-platform support: Bottender works with various messaging platforms like Facebook Messenger, LINE, Slack, and Telegram
  • Built-in NLP integration: Easily integrate with NLP services like Dialogflow and LUIS
  • Modular architecture: Allows for easy customization and extension of functionality

Cons of bottender

  • Steeper learning curve: Requires more setup and configuration compared to vue-beautiful-chat
  • Less focus on UI: Primarily backend-focused, lacking built-in UI components
  • More complex deployment: May require additional steps for hosting and managing the bot service

Code comparison

vue-beautiful-chat:

import Chat from 'vue-beautiful-chat'
Vue.use(Chat)

<beautiful-chat
  :participants="participants"
  :titleImageUrl="titleImageUrl"
  :onMessageWasSent="onMessageWasSent"
  :messageList="messageList"
  :newMessagesCount="newMessagesCount"
  :isOpen="isChatOpen"
  :close="closeChat"
  :open="openChat"
  :showEmoji="true"
  :showFile="true"
  :showTypingIndicator="showTypingIndicator"
  :colors="colors"
  :alwaysScrollToBottom="alwaysScrollToBottom"
  :messageStyling="messageStyling"
/>

bottender:

import { router, text } from 'bottender/router';

export default function App() {
  return router([
    text('hello', async context => {
      await context.sendText('Hello World');
    }),
    text('*', async context => {
      await context.sendText(`received: ${context.event.text}`);
    }),
  ]);
}
6,061

A framework agnostic PHP library to build chat bots

Pros of Botman

  • More comprehensive chatbot framework with multi-platform support
  • Extensive documentation and community support
  • Built-in natural language processing capabilities

Cons of Botman

  • Steeper learning curve due to its broader scope
  • Requires more setup and configuration for simple use cases
  • PHP-based, which may not be suitable for all projects

Code Comparison

vue-beautiful-chat:

<template>
  <beautiful-chat
    :participants="participants"
    :titleImageUrl="titleImageUrl"
    :onMessageWasSent="onMessageWasSent"
    :messageList="messageList"
    :newMessagesCount="newMessagesCount"
    :isOpen="isChatOpen"
    :close="closeChat"
    :open="openChat"
    :showEmoji="true"
    :showFile="true"
    :showTypingIndicator="showTypingIndicator"
    :colors="colors"
    :alwaysScrollToBottom="alwaysScrollToBottom"
    :messageStyling="messageStyling"
  />
</template>

Botman:

<?php

use BotMan\BotMan\BotMan;
use BotMan\BotMan\BotManFactory;
use BotMan\BotMan\Drivers\DriverManager;

DriverManager::loadDriver(\BotMan\Drivers\Web\WebDriver::class);

$botman = BotManFactory::create($config);

$botman->hears('hello', function (BotMan $bot) {
    $bot->reply('Hello!');
});

vue-beautiful-chat is a Vue.js component for creating chat interfaces, while Botman is a PHP framework for building chatbots. vue-beautiful-chat focuses on the frontend, offering a customizable chat UI. Botman provides a backend solution for handling conversations across multiple platforms. The choice between them depends on project requirements and the desired level of control over the chatbot's logic and interface.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

vue-beautiful-chat

vue-beautiful-chat provides an intercom-like chat window that can be included easily in any project for free. It provides no messaging facilities, only the view component.

vue-beautiful-chat is porting to vue of react-beautiful-chat (which you can find here)

Go to FAQ ⬇️

gif

Features

  • Customizeable
  • Backend agnostic
  • Free

Demo

Table of Contents

Installation

$ yarn add vue-beautiful-chat

Example

import Chat from 'vue-beautiful-chat'
Vue.use(Chat)
<template>
  <div>
    <beautiful-chat
      :participants="participants"
      :titleImageUrl="titleImageUrl"
      :onMessageWasSent="onMessageWasSent"
      :messageList="messageList"
      :newMessagesCount="newMessagesCount"
      :isOpen="isChatOpen"
      :close="closeChat"
      :icons="icons"
      :open="openChat"
      :showEmoji="true"
      :showFile="true"
      :showEdition="true"
      :showDeletion="true"
      :showTypingIndicator="showTypingIndicator"
      :showLauncher="true"
      :showCloseButton="true"
      :colors="colors"
      :alwaysScrollToBottom="alwaysScrollToBottom"
      :disableUserListToggle="false"
      :messageStyling="messageStyling"
      @onType="handleOnType"
      @edit="editMessage" />
  </div>
</template>
export default {
  name: 'app',
  data() {
    return {
      participants: [
        {
          id: 'user1',
          name: 'Matteo',
          imageUrl: 'https://avatars3.githubusercontent.com/u/1915989?s=230&v=4'
        },
        {
          id: 'user2',
          name: 'Support',
          imageUrl: 'https://avatars3.githubusercontent.com/u/37018832?s=200&v=4'
        }
      ], // the list of all the participant of the conversation. `name` is the user name, `id` is used to establish the author of a message, `imageUrl` is supposed to be the user avatar.
      titleImageUrl: 'https://a.slack-edge.com/66f9/img/avatars-teams/ava_0001-34.png',
      messageList: [
          { type: 'text', author: `me`, data: { text: `Say yes!` } },
          { type: 'text', author: `user1`, data: { text: `No.` } }
      ], // the list of the messages to show, can be paginated and adjusted dynamically
      newMessagesCount: 0,
      isChatOpen: false, // to determine whether the chat window should be open or closed
      showTypingIndicator: '', // when set to a value matching the participant.id it shows the typing indicator for the specific user
      colors: {
        header: {
          bg: '#4e8cff',
          text: '#ffffff'
        },
        launcher: {
          bg: '#4e8cff'
        },
        messageList: {
          bg: '#ffffff'
        },
        sentMessage: {
          bg: '#4e8cff',
          text: '#ffffff'
        },
        receivedMessage: {
          bg: '#eaeaea',
          text: '#222222'
        },
        userInput: {
          bg: '#f4f7f9',
          text: '#565867'
        }
      }, // specifies the color scheme for the component
      alwaysScrollToBottom: false, // when set to true always scrolls the chat to the bottom when new events are in (new message, user starts typing...)
      messageStyling: true // enables *bold* /emph/ _underline_ and such (more info at github.com/mattezza/msgdown)
    }
  },
  methods: {
    sendMessage (text) {
      if (text.length > 0) {
        this.newMessagesCount = this.isChatOpen ? this.newMessagesCount : this.newMessagesCount + 1
        this.onMessageWasSent({ author: 'support', type: 'text', data: { text } })
      }
    },
    onMessageWasSent (message) {
      // called when the user sends a message
      this.messageList = [ ...this.messageList, message ]
    },
    openChat () {
      // called when the user clicks on the fab button to open the chat
      this.isChatOpen = true
      this.newMessagesCount = 0
    },
    closeChat () {
      // called when the user clicks on the botton to close the chat
      this.isChatOpen = false
    },
    handleScrollToTop () {
      // called when the user scrolls message list to top
      // leverage pagination for loading another page of messages
    },
    handleOnType () {
      console.log('Emit typing event')
    },
    editMessage(message){
      const m = this.messageList.find(m=>m.id === message.id);
      m.isEdited = true;
      m.data.text = message.data.text;
    }
  }
}

For more detailed examples see the demo folder.

Components

Launcher

Launcher is the only component needed to use vue-beautiful-chat. It will react dynamically to changes in messages. All new messages must be added via a change in props as shown in the example.

Props

proptypedescription
*participants[agentProfile]Represents your product or service's customer service agents. Fields for each agent: id, name, imageUrl
*onMessageWasSentfunction(message)Called when a message is sent with the message object as an argument.
*isOpenBooleanThe bool indicating whether or not the chat window should be open.
*openFunctionThe function passed to the component that mutates the above mentioned bool toggle for opening the chat
*closeFunctionThe function passed to the component that mutates the above mentioned bool toggle for closing the chat
messageList[message]An array of message objects to be rendered as a conversation.
showEmojiBooleanA bool indicating whether or not to show the emoji button
showFileBooleanA bool indicating whether or not to show the file chooser button
showDeletionBooleanA bool indicating whether or not to show the edit button for a message
showEditionBooleanA bool indicating whether or not to show the delete button for a message
showTypingIndicatorStringA string that can be set to a user's participant.id to show typing indicator for them
showHeaderBooleanA bool indicating whether or not to show the header of chatwindow
disableUserListToggleBooleanA bool indicating whether or not to allow the user to toggle between message list and participants list
colorsObjectAn object containing the specs of the colors used to paint the component. See here
messageStylingBooleanA bool indicating whether or not to enable msgdown support for message formatting in chat. See here

Events

eventparamsdescription
onTypeundefinedFires when user types on the message input
editmessageFires after user edited message

Slots

header

Replacing default header.

<template v-slot:header>
  🤔 Good chat between {{participants.map(m=>m.name).join(' & ')}}
</template>
user-avatar

Replacing user avatar. Params: message, user

<template v-slot:user-avatar="{ message, user }">
  <div style="border-radius:50%; color: pink; font-size: 15px; line-height:25px; text-align:center;background: tomato; width: 25px !important; height: 25px !important; min-width: 30px;min-height: 30px;margin: 5px; font-weight:bold" v-if="message.type === 'text' && user && user.name">
    {{user.name.toUpperCase()[0]}}
  </div>
</template>
text-message-body

Change markdown for text message. Params: message

<template v-slot:text-message-body="{ message }">
  <small style="background:red" v-if="message.meta">
    {{message.meta}}
  </small>
  {{message.text}}
</template>
system-message-body

Change markdown for system message. Params: message

<template v-slot:system-message-body="{ message }">
  [System]: {{message.text}}
</template>

Message Objects

Message objects are rendered differently depending on their type. Currently, only text, emoji and file types are supported. Each message object has an author field which can have the value 'me' or the id of the corresponding agent.

{
  author: 'support',
  type: 'text',
  id: 1, // or text '1'
  isEdited: false,
  data: {
    text: 'some text',
    meta: '06-16-2019 12:43'
  }
}

{
  author: 'me',
  type: 'emoji',
  id: 1, // or text '1'
  isEdited: false,
  data: {
    code: 'someCode'
  }
}

{
  author: 'me',
  type: 'file',
  id: 1, // or text '1'
  isEdited: false,
  data: {
    file: {
      name: 'file.mp3',
      url: 'https:123.rf/file.mp3'
    }
  }
}

Quick replies

When sending a message, you can provide a set of sentences that will be displayed in the user chat as quick replies. Adding in the message object a suggestions field with the value an array of strings will trigger this functionality

{
  author: 'support',
  type: 'text',
  id: 1, // or text '1'
  data: {
    text: 'some text',
    meta: '06-16-2019 12:43'
  },
  suggestions: ['some quick reply', ..., 'another one']
}

FAQ

How to get the demo working?

git clone git@github.com:mattmezza/vue-beautiful-chat.git
cd vue-beautiful-chat
yarn install  # this installs the package dependencies
yarn watch  # this watches files to continuously compile them

Open a new shell in the same folder

cd demo
yarn install # this installs the demo dependencies
yarn dev # this starts the dev server at http://localhost:8080

How can I add a feature or fix a bug?

  • Fork the repository
  • Fix/add your changes
  • yarn build on the root to have the library compiled with your latest changes
  • create a pull request describing what you did
  • discuss the changes with the maintainer
  • boom! your changes are added to the main repo
  • a release is created almost once per week 😉

How can I customize the colors?

  • When initializing the component, pass an object specifying the colors used:
let redColors = {
  header: {
    bg: '#D32F2F',
    text: '#fff'
  },
  launcher: {
    bg: '#D32F2F'
  },
  messageList: {
    bg: '#fff'
  },
  sentMessage: {
    bg: '#F44336',
    text: '#fff'
  },
  receivedMessage: {
    bg: '#eaeaea',
    text: '#222222'
  },
  userInput: {
    bg: '#fff',
    text: '#212121'
  }
}
<beautiful-chat
  ...
  :colors="redColors" />

This is the red variant. Please check this file for the list of variants shown in the demo page online.

Please note that you need to pass an Object containing each one of the color properties otherwise the validation will fail.

How can I add message formatting?

Good news, message formatting is already added for you. You can enable it by setting messageStyling to true and you will be using the msgdown library. You can enable/disable the formatting support at any time, or you can let users do it whenever they prefer.

Contributors

@a-kriya, @mattmezza

Please contact us if you would like to join as a contributor.

NPM DownloadsLast 30 Days