Akshat111111 / EmbeddedChat

An easy to use full-stack component (ReactJS) embedding Rocket.Chat into your webapp

Home Page:https://www.npmjs.com/package/embeddedchat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EmbeddedChat

An easy to use full-stack component (ReactJS + backend behaviors) embedding Rocket.Chat into your webapp.

EmbeddedChat is a full-stack React component node module of the RocketChat application that is fully configurable, extensible, and flexible for use. It is tightly bound with the RocketChat server using Rocket.Chat nodejs SDK and its UI using RocketChat's Fuselage Design System.

embeddedchatwall

Installation

npm i embeddedchat

Usage

Just import the component,

import { RCComponent } from "embeddedchat";

and use it,

<RCComponent
  isClosable={true}
  setClosableState={setClosableState}
  moreOpts={true}
  width="100%"
  height="40vh"
  GOOGLE_CLIENT_ID={process.env.REACT_APP_GOOGLE_CLIENT_ID}
  host={"http://localhost:3000"}
  roomId={"GENERAL"}
  channelName="Customer Service"
  anonymousMode={false}
  showAvatar={false}
  showRoles={false}
/>

Props

Read this wiki page for more info on each prop.

prop description
isClosable is the component closable?, defaults to false.
setClosableState the reusable setState, which will track the opening and closing of EmbeddedChat. It is a setState fn => which toggles the previous state.
moreOpts it adds a kebab menu with added functionalities like showing pinned, starred, thread messages
width width of the component
height height of the component (based on the ChatBody)
host your Rocket.Chat host domain, defaults to http://localhost:3000 (the dev server)
GOOGLE_CLIENT_ID it is the google client id that you will receive after creating a project in google console
roomId the public room's id that you want to subscribe to
channelName the fallback channel name to be present on the chat header
anonymousMode if the user can see the chat without logging in
showAvatar show the user's avatar in the chat component, defaults to false
showRoles show the user's roles in the chat component, defaults to false
enableThreads enable RocketChat's style thread messages, defaults to false

Development

Local Setup

To run the embeddedchat, you will need a Rocket.Chat server running (development or production). To setup Rocket.Chat dev environment follow this guide. https://github.com/RocketChat/Rocket.Chat#%EF%B8%8F-local-development

Prerequisites

Ensure you have Node.js version 16.19.0 installed. We recommend using Node Version Manager (NVM) to manage your Node.js versions.

To use the correct Node.js version for this project, run the following command:

nvm install
nvm use

We use yarn workspaces. Enable corepack if not already enabled.

corepack enable

Install dependencies

yarn

Thats all, This will install all the dependencies and will then build our auth, api and react package.

Starting storybook for react

cd packages/react
yarn storybook

Till now, storybook should be up and running. You can play around with EmbeddedChat and it's component and see changes in storybook in real-time.

Working with api and auth packages.

Starting auth dev environment

If you want to make changes to auth package and test them, you can start its playground server.

cd packages/auth
yarn dev

React package depends on api package. If you make any change to api package, build the package using yarn build in package/api directory. Then, restart the react projects.

Starting api dev environment

If you want to make changes to api package and test them, you can start its playground server.

cd packages/api
yarn dev

Api package depends on auth package. If you make any change to auth package, build the package using yarn build in package/auth directory. Then, restart the api dev environment.

About

An easy to use full-stack component (ReactJS) embedding Rocket.Chat into your webapp

https://www.npmjs.com/package/embeddedchat


Languages

Language:JavaScript 83.3%Language:TypeScript 9.4%Language:CSS 6.1%Language:HTML 1.2%