Skip to content

Commit

Permalink
Merge branch 'RocketChat:develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
smritidoneria authored Sep 16, 2024
2 parents 7514d1e + 6e6c3b1 commit 04a4859
Show file tree
Hide file tree
Showing 255 changed files with 21,615 additions and 2,739 deletions.
82 changes: 82 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Build and Publish Storybook to GitHub Pages

on:
push:
branches:
- develop

permissions:
contents: write
pages: write
id-token: write

env:
STORYBOOK_RC_HOST: "https://demo.qa.rocket.chat"
RC_ROOM_ID: "66ccc4f1e050428c76256939"

jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: "https://rocketchat.github.io/EmbeddedChat/"

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "16.19.0"

- name: Install Dependencies
run: yarn

- name: Build Storybook
run: yarn build:storybook
working-directory: packages/react

- name: Build UI-Elements
run: yarn build:storybook
working-directory: packages/ui-elements

- name: Build Layout Editor
run: npm run build
working-directory: packages/layout_editor

- name: Setup Node.js for Docs
uses: actions/setup-node@v4
with:
node-version: "18.x"

- name: "Install dependencies for docs"
run: yarn install
working-directory: packages/docs/

- name: Build Docs
run: yarn build
working-directory: packages/docs

- name: Prepare Build Folder
run: |
mkdir -p build
mkdir -p build/ui-elements
mkdir -p build/layout_editor
mkdir -p build/docs
mv -v packages/react/storybook-static/* build/
mv -v packages/ui-elements/storybook-static/* build/ui-elements/
mv -v packages/layout_editor/dist/* build/layout_editor/
mv -v packages/docs/build/* build/docs/
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-deploy
build_dir: build/
commit_message: "Deploy to Github Pages"
jekyll: false
keep_history: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ _EmbeddedChat is a full-stack React component designed to integrate Rocket.Chat
</a>
</div>

## Try It Out 🚀

Explore our project in action! It's live for a sneak peek and testing at: https://rocketchat.github.io/EmbeddedChat/

Test credentials:

- **Username:** test_acc
- **Password:** test_acc

## Installation and Usage

Installation and usage documentation could be found here [EmbeddedChat installation and usage](packages/react/README.md)
Installation and usage documentation could be found here [EmbeddedChat installation and usage](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/embeddedchat_setup)

## Development

Expand Down Expand Up @@ -156,6 +165,28 @@ This structured approach facilitates cohesive development and integration across

This environment offers a complete setup for developing and testing the `EmbeddedChat` component, alongside its `api` and `auth` packages. Feel free to explore and enhance the capabilities of `EmbeddedChat`!

## References

- **Documentation Overview**: For a comprehensive overview of Embedded Chat, including installation, usage, and advanced topics, visit our [Documentation Page](https://rocketchat.github.io/EmbeddedChat/docs/).

Below are specific sections that cover various aspects of Embedded Chat:

- Embedded Chat Development: [EC Development](https://rocketchat.github.io/EmbeddedChat/docs/docs/Development/dev_launch) – Explore development techniques for Embedded Chat.

- Embedded Chat Setup: [Setup Instructions](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/embeddedchat_setup) – Start setting up Embedded Chat in your app.

- UI Elements: [Setup & Dev Guide](https://rocketchat.github.io/EmbeddedChat/docs/docs/Development/ui-elements) – Integration and customization of UI elements.

- Layout Editor: [Using the Editor](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/layout_editor) – Customize the chat interface with the layout editor.

- EmbeddedChat RC Setup: [Setup Instructions](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/ec_rc_setup) – Guide for setting up Embedded Chat RC App.

- Authentication: [Guide](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/authentication) – Configure and manage authentication for Embedded Chat.

- Theming Guide: [Guide](https://rocketchat.github.io/EmbeddedChat/docs/docs/Usage/theming) – Guide to theming options and customization.

- Theming Technical: [Technical Overview](https://rocketchat.github.io/EmbeddedChat/docs/docs/Development/theming_technical) – Technical aspects of theming.

### Contributors

<a href="https://github.com/RocketChat/EmbeddedChat/graphs/contributors">
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"useWorkspaces": true,
"version": "0.0.0",
"packages": [
"packages/*"
"packages/*",
"!packages/docs"
],
"npmClient": "yarn"
}
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Integrate RocketChat into any React based web app using this extensible, robust component library",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
"packages/*",
"!packages/docs"
],
"scripts": {
"preinstall": "node scripts/node-check.js",
Expand All @@ -22,5 +23,8 @@
"husky": "^9.0.11",
"lerna": "^6.6.2",
"typescript": "^5.1.3"
},
"dependencies": {
"dompurify": "^3.1.6"
}
}
21 changes: 21 additions & 0 deletions packages/docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.yarn/*
25 changes: 25 additions & 0 deletions packages/docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# EmbeddedChat Documentation

This is the official documentation website of EmbeddedChat

### Installation

```
$ yarn install
```

### Local Development

```
$ yarn dev
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.
3 changes: 3 additions & 0 deletions packages/docs/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
157 changes: 157 additions & 0 deletions packages/docs/blog/EmbeddedChat-2022.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
# GSoC-2022

<div align="center">
<a href="https://summerofcode.withgoogle.com/projects/#6521788818784256"><img src="https://i.imgur.com/pgkUceb.png" width="650" alt="google-summer-of-code" /></a>
<br />
<b>
<p>
Create a ready-to-go easy to embed mini-chat React component.
</p>
</b>
</div>

<p align="center">
<code>
<a href="#-project-abstract">Project Abstract</a>&nbsp;&nbsp;&nbsp;
<a href="#-deliverables">Deliverables</a>&nbsp;&nbsp;&nbsp;
<a href="#-demo">Demo</a>&nbsp;&nbsp;&nbsp;
<a href="#-contributions">Contributions</a>&nbsp;&nbsp;&nbsp;
<a href="#-blog">Blog</a>&nbsp;&nbsp;&nbsp;
<a href="#-mentor">Mentor</a>&nbsp;&nbsp;&nbsp;
<a href="#-links">Links</a>
</code>
</p>

I got a chance to work on a project called [EmbeddedChat](https://github.com/RocketChat/EmbeddedChat) which is an in-app chat solution to web applications needing a chat component to increase user engagement.

From just an idea (proposal) to a complete product - 3 months of Google Summer of Code passed.

I intend to maintain this repository as a final report summary of my GSoC work and a quick guide for all future GSoC aspirants.

## ⭐ Project Abstract

**EmbeddedChat allows users to integrate RocketChat into their React web-based applications easily also providing an amazing developer experience while introducing in-app chat solutions.**

## 🚢 Deliverables

The following are the deliverables of this project:

1. Creation of UI using RocketChat Fuselage design system. [NEW]
2. Providing real-time chat functionality using RocketChat node.js SDK. [NEW]
3. Authentication using RocketChat’s Google SSO with an additional choice for `<username, password>` login (if the user already has an account). [NEW]
4. Adding EmojiOne Emoji Picker to the component to ensure cross-platform functioning of emojis.[NEW]
5. Using Rocket.Chat’s REST API to: [NEW]
- Get channel details
- Get the channel’s pinned messages
- Get the channel’s starred messages
- Get the channel attachments
- Send a message to the channel
- Get messages of the channel
6. Providing the functionality to pin/star/react to any message and mention users. [NEW]

**All of the above deliverables were completed within the GSoC period. Yay! 🎉**

## 📺 Demo
### Sneak Peak
![randomgifec](https://user-images.githubusercontent.com/73601258/189498365-90bcc80a-4fb1-461b-a89e-99f1f8d31d95.gif)

### Providing real-time chat functionality using RocketChat node.js SDK

https://user-images.githubusercontent.com/73601258/189498385-1346c5af-ec75-42a9-b864-f6f3b1e49d88.mp4

https://user-images.githubusercontent.com/73601258/189498400-942f337a-0ee8-48e5-b539-70dc49d1e3e7.mp4

### Authentication using RocketChat’s Google SSO
https://user-images.githubusercontent.com/73601258/180390437-b28ceacb-7f3f-4b80-84c1-4e1709b6cd35.mp4

### Adding EmojiOne Emoji Picker to the component to ensure cross-platform functioning of emojis.
![image](https://user-images.githubusercontent.com/73601258/189498628-119c0417-a8cd-4775-acdf-41fdd3b7bc62.png)

### Using Rocket.Chat’s REST API
Took an object-oriented programming approach to build this. Created an API wrapper that is super simple to set up.
[Here](https://github.com/RocketChat/EmbeddedChat/blob/main/src/lib/api.js) is the code.

### Providing the functionality to pin/star/react to any message and mention users.

https://user-images.githubusercontent.com/73601258/189498498-602ddade-2883-43ac-91b7-9f63dc41cf84.mp4

https://user-images.githubusercontent.com/73601258/189498502-1310fb1c-293e-4bb4-a208-7b523dfdd23f.mp4

## 🚀 Contributions

### PRs

<div align="center">

| PR Link | Description |
| :-----------: | :------------------------------------:|
| [PR #1](https://github.com/RocketChat/EmbeddedChat/pull/1) | [NEW] initialize project and base setup |
| [PR #4](https://github.com/RocketChat/EmbeddedChat/pull/4) | NEW: issue and pr template |
| [PR #5](https://github.com/RocketChat/EmbeddedChat/pull/5) | IMPROVE: Responsiveness |
| [PR #7](https://github.com/RocketChat/EmbeddedChat/pull/7) | NEW: sending and receiving msgs (the oop way) |
| [PR #11](https://github.com/RocketChat/EmbeddedChat/pull/11) | Parsing emojis in message box |
| [PR #12](https://github.com/RocketChat/EmbeddedChat/pull/12) | NEW: AUTH (google SSO) |
| [PR #15](https://github.com/RocketChat/EmbeddedChat/pull/15) | NEW: Development documentation |
| [PR #26](https://github.com/RocketChat/EmbeddedChat/pull/26) | [IMPROVE] UI/UX improvements |
| [PR #40](https://github.com/RocketChat/EmbeddedChat/pull/40) | FIX: when host is https set useSSL as true |
| [PR #41](https://github.com/RocketChat/EmbeddedChat/pull/41) | [IMPROVE] more options to be present whether or not its fullscreen |
| [PR #46](https://github.com/RocketChat/EmbeddedChat/pull/46) | FIX: when cookies are there assume user present |
| [PR #47](https://github.com/RocketChat/EmbeddedChat/pull/47) | CHORE: remove tech.co.html |
| [PR #48](https://github.com/RocketChat/EmbeddedChat/pull/48) | Handling attachments |
| [PR #44](https://github.com/RocketChat/EmbeddedChat/pull/44) | NEW: react to message |
| [PR #42](https://github.com/RocketChat/EmbeddedChat/pull/42) | NEW: Pin and star messages
| [PR #39](https://github.com/RocketChat/EmbeddedChat/pull/39) | Add format to all files
| [PR #29](https://github.com/RocketChat/EmbeddedChat/pull/29) | NEW: CI/CD Pipeline to deploy the package

</div>

### My overall contributions at Rocket.Chat

Besides my GSoC project I have been contributing prolifically to other Rocket.Chat projects - [RocketChat.js.SDK](https://github.com/RocketChat/Rocket.Chat.js.SDK), [RC4Community](https://github.com/RocketChat/RC4Community), [fuselage](https://github.com/RocketChat/fuselage), [Rocket.Chat](https://github.com/RocketChat/Rocket.Chat).

## 😎 Blog

I have been writing blogs regarding my progress in GSoC.
- [My journey with open source and lessons learned](https://dev.to/sidmohanty11/my-journey-with-open-source-and-lessons-learned-30e7)
- [[PART-I] GSoC 2022 | Rocket.Chat | EmbeddedChat](https://dev.to/sidmohanty11/part-i-gsoc-2022-rocketchat-embeddedchat-3njh)
- [[PART-II] GSoC 2022 | Rocket.Chat | EmbeddedChat](https://dev.to/sidmohanty11/part-ii-gsoc-2022-rocketchat-embeddedchat-15g3)
- [Final Part: GSoC 2022 | Rocket.Chat | EmbeddedChat](https://dev.to/sidmohanty11/final-part-gsoc-2022-rocketchat-embeddedchat-37g8)

## 🎓 Mentor

A big big thank you to my mentor for the guidance before and throughout GSoC. 🙏

I learned beyond GSoC from him and am forever grateful to be mentored by him.

- **Rohan Lekhwani** - [GitHub](https://github.com/RonLek). [LinkedIn](https://www.linkedin.com/in/rohanlekhwani)

## 🔗 Links

- Read my EmbeddedChat project proposal that got me accepted to GSoC [here](https://docs.google.com/document/d/1YeAz-hzv-7NY5HApraz0lOCNj2_Vc-ys_w2qp3qd-nQ/edit?usp=sharing).

- I also complemented it with Figma designs. Check them out [here](https://www.figma.com/file/hj0BqzAvB15zBv7A8fMYc9/RocketChat-ReactJS-Component?node-id=0%3A1).

- My GSoC Presentation can be found [here](https://docs.google.com/presentation/d/1hNO-iGlA0nnyHS5o6XlgwGaYP7IgOtcHdg--HCFNABY/edit?usp=sharing).

- Watch the above presentation in video - [here](https://www.youtube.com/watch?v=gcB5c6cvg9w&t=6s) !

## ❤️ Support
Learned something new today? Reciprocate the love. ⭐ this repo for good karma.

## 💬 Connect With Me
Want to discuss about GSoC / Rocket.Chat / Open-source ? Let's connect!
<div align="center">

| **Student** | Sidharth Mohanty |
|:--------------------|:-------------------|
| **Organization** | [Rocket.Chat](https://rocket.chat/) |
| **Project** | [EmbeddedChat](https://docs.rocket.chat/contributors/annual-contribution-programs/google-summer-of-code/google-summer-of-code-2022#rocket.chat-reactjs-fullstack-component) |
| **GitHub** | [@sidmohanty11](https://github.com/sidmohanty11) |
| **LinkedIn** | [sidmohanty11](https://www.linkedin.com/in/sidmohanty11) |
| **Twitter** | [sidmohanty11](https://www.twitter.com/sidmohanty11) |
| **Blogs** | [sidmohanty11](https://dev.to/sidmohanty11) |
| **Website** | [sidmohanty11.github.io](https://sidmohanty11.github.io) |
| **Email** | <a href="mailto:[email protected]">[email protected]</a> |
| **Rocket.Chat** | [sidharth.mohanty](https://open.rocket.chat/direct/sidharth.mohanty) |
</div>
Loading

0 comments on commit 04a4859

Please sign in to comment.