GithubHelp home page GithubHelp logo

raghav2805 / react-chatbox-component Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bpowers4/react-chatbox-component

0.0 0.0 0.0 1.74 MB

Clean and nimble React chat component for your next React chat app.

License: MIT License

HTML 3.83% JavaScript 62.96% CSS 33.21%

react-chatbox-component's Introduction

React ChatBox Component

GitHub license Current stable version Pull Requests are welcome

Plug and play Chat component for creating React Chat App.

In isolation, the component looks like this:

ChatBox Component

The idea is that you embed this component in your own container, for example a pop-up chat widget or beneath a heading:

ChatBox plugged in

Really, the aim is to make implementing a chat component as quick as possible. All you need to do is pass an array of messages (normally this.state.messages, unless you're using hooks):

import 'react-chatbox-component/dist/style.css';
import {ChatBox} from 'react-chatbox-component';

const messages = [
  {
    "text": "Hello there",
    "id": "1",
    "sender": {
      "name": "Ironman",
      "uid": "user1",
      "avatar": "https://data.cometchat.com/assets/images/avatars/ironman.png",
    },
  },
]

<ChatBox
  messages={messages}
/>

To differentiate bubble color, you can use the pass a user object with a uid property. When sender uid matched the user uid, it will render message from the right side.

const user = {
  "uid" : "user1"
}

<ChatBox
  messages={messages}
  user={user}
/>

If you built your own chat server, you may need to map messages and user to match this data structure. If you're using CometChat, the structure is identical.

See an example here (no cussing, please).

Features

  • Responsive
  • Automatically scrolls to bottom
  • Really easy and quick to use
  • Customise the colours to match your app
  • Pass your own rendering functions to tweak things like the chat bubble or (optional) typing indicator

Installation

npm install react-chatbox-component

How to use

I wrote a tutorial on how to make the chat box work with message history, typing indicators, and more here. Find the example source code here too.

The ChatBox component has the following API:

  • messages (array) - array of messages to render inside the chat interface
  • onSubmit (function) - function to execute when user submit a new message. Will log new message into the console if not used
  • isLoading (boolean) - display a loading screen when the value is true
  • user (object) - the currently logged in user. Used to differentiate message bubble color
  • renderMessage (optional) (function) - optional function to render chat bubbles
  • typingListener (optional) (function) - optional function executed when user is typing
  • typingIndicator(optional) (element) - JSX element to render at the bottom of chat interface. Used to show that a user is typing

Here is a typical implementation for this component. You need to import the style and the component:

import 'react-chatbox-component/dist/style.css';
import {ChatBox} from 'react-chatbox-component';

<div className='container'>
  <div className='chat-header'>
    <h5>React Chat Box Example</h5>
  </div>
  <ChatBox messages={this.state.messages} />
</div>

Ready Example

If you'd like to help in development or just curious with how things work, you can run a local copy of this repo by following these steps:

  • Download or clone this repository
  • In the react-chatbox-component directory, run npm install
  • run npm start

The application entry point is located in src/test/App.js while the library is in src/lib/ directory.

Any contribution, no matter how small, is greatly appreciated.

react-chatbox-component's People

Contributors

nathansebhastian avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.