Skip to content

Commit

Permalink
feat:addedCopyMessageLink-copyMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashraj7890 committed Feb 18, 2024
1 parent 6fb23d7 commit 88ea004
Show file tree
Hide file tree
Showing 11 changed files with 116 additions and 18 deletions.
2 changes: 0 additions & 2 deletions packages/react/.gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,3 @@ tasks:
npm install
cd ..
command: npm run dev


6 changes: 5 additions & 1 deletion packages/react/.storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/** @type { import('@storybook/react-webpack5').StorybookConfig } */
const config = {
stories: ['../src/**/stories/*.stories.@(js|jsx|ts|tsx)', '../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
stories: [
'../src/**/stories/*.stories.@(js|jsx|ts|tsx)',
'../src/**/*.mdx',
'../src/**/*.stories.@(js|jsx|ts|tsx)',
],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
Expand Down
2 changes: 1 addition & 1 deletion packages/react/.storybook/preview.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'normalize.css'
import 'normalize.css';

/** @type { import('@storybook/react').Preview } */
const preview = {
Expand Down
9 changes: 4 additions & 5 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ _EmbeddedChat is a full-stack React component node module of the RocketChat appl
</div>

## Installation

```bash
npm install @embeddedchat/react
# or
Expand All @@ -32,10 +33,7 @@ import { EmbeddedChat } from '@embeddedchat/react';
To use the `EmbeddedChat` component, include it in your component's render method or return statement. Here's a basic example:

```jsx
<EmbeddedChat
host="http://your-rocketchat-server.com"
roomId="YOUR_ROOM_ID"
/>
<EmbeddedChat host="http://your-rocketchat-server.com" roomId="YOUR_ROOM_ID" />
```

### Props
Expand Down Expand Up @@ -152,6 +150,7 @@ You can pass a `theme` object to customize the appearance according to your appl
theme={myCustomTheme}
/>
```

Follow [theming.md](docs/theming.md) to know more about EmbeddedChat's theming.

## Handling the Closable State
Expand All @@ -167,9 +166,9 @@ If `isClosable` is `true`, provide a `setClosableState` function to manage the s
```

## Development

Follow this [EmbeddedChat Readme](https://github.com/RocketChat/EmbeddedChat) to setup EmbeddedChat for development.

## Conclusion

The `EmbeddedChat` component offers a flexible and feature-rich solution for integrating RocketChat into your application. Customize it according to your needs to enhance your app's chat functionality.

6 changes: 3 additions & 3 deletions packages/react/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ services:
image: registry.rocket.chat/rocketchat/rocket.chat:latest
restart: on-failure
environment:
MONGO_URL: "mongodb://mongodb:27017/rocketchat?replicaSet=rs0"
MONGO_OPLOG_URL: "mongodb://mongodb:27017/local?replicaSet=rs0"
MONGO_URL: 'mongodb://mongodb:27017/rocketchat?replicaSet=rs0'
MONGO_OPLOG_URL: 'mongodb://mongodb:27017/local?replicaSet=rs0'
ROOT_URL: http://localhost:3000
PORT: 3000
depends_on:
- mongodb
expose:
- 3000
ports:
- "0.0.0.0:3000:3000"
- '0.0.0.0:3000:3000'

mongodb:
image: docker.io/bitnami/mongodb:4.4
Expand Down
12 changes: 8 additions & 4 deletions packages/react/docs/theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@ For example:
```

In the above example:
- theme.components.ChatInput.styleOverrides would be applied to the style of the ChatInput component.
- theme.components.ChatInput.classNames would be applied to the className of the ChatInput component.

- theme.components.ChatInput.styleOverrides would be applied to the style of the ChatInput component.
- theme.components.ChatInput.classNames would be applied to the className of the ChatInput component.

## Using the useComponentsOverrides Hook

We provide a `useComponentsOverrides` hook that returns the necessary data for component customization.

```jsx
import { useComponentOverrides } from '../../theme/useComponentOverrides';
import { useComponentOverrides } from '../../theme/useComponentOverrides';

export const MessageBody = ({
children,
Expand All @@ -60,11 +62,13 @@ export const MessageBody = ({
);
};
```

## Adding Classes to Components

We also add a class to each component. For example, `ec-message-body` for the MessageBody component.

Feel free to explore and customize these components according to your project's needs.

If you have any questions or need further assistance, please don't hesitate to ask.

Happy theming!
Happy theming!
7 changes: 5 additions & 2 deletions packages/react/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import json from '@rollup/plugin-json';
import bundleSize from 'rollup-plugin-bundle-size';
import { terser } from 'rollup-plugin-terser';
import replace from '@rollup/plugin-replace';
import analyze from 'rollup-plugin-analyzer'
import analyze from 'rollup-plugin-analyzer';

const packageJson = require('./package.json');
const PRODUCTION = process.env.NODE_ENV === 'production';
Expand Down Expand Up @@ -40,7 +40,10 @@ export default [
}
: {}
),
resolve({ browser: true, extensions: ['.js', '.jsx', '.ts', '.tsx', '.mjs'] }),
resolve({
browser: true,
extensions: ['.js', '.jsx', '.ts', '.tsx', '.mjs'],
}),
commonjs({ include: ['node_modules/**', '../../node_modules/**'] }),
babel({
exclude: 'node_modules/**',
Expand Down
35 changes: 35 additions & 0 deletions packages/react/src/components/Icon/icons/Copy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';

const Copy = () => (
<svg
width="24px"
height="24px"
viewBox="0 0 24.00 24.00"
fill="none"
xmlns="http://www.w3.org/2000/svg"
transform="matrix(-1, 0, 0, 1, 0, 0)"
>
<g id="SVGRepo_bgCarrier" strokeWidth="0" />
<g
id="SVGRepo_tracerCarrier"
strokeLinecap="round"
strokeLinejoin="round"
stroke="#CCCCCC"
strokeWidth="0.048"
/>
<g id="SVGRepo_iconCarrier">
<path
d="M6 11C6 8.17157 6 6.75736 6.87868 5.87868C7.75736 5 9.17157 5 12 5H15C17.8284 5 19.2426 5 20.1213 5.87868C21 6.75736 21 8.17157 21 11V16C21 18.8284 21 20.2426 20.1213 21.1213C19.2426 22 17.8284 22 15 22H12C9.17157 22 7.75736 22 6.87868 21.1213C6 20.2426 6 18.8284 6 16V11Z"
stroke="#000000"
strokeWidth="1.536"
/>
<path
d="M6 19C4.34315 19 3 17.6569 3 16V10C3 6.22876 3 4.34315 4.17157 3.17157C5.34315 2 7.22876 2 11 2H15C16.6569 2 18 3.34315 18 5"
stroke="#000000"
strokeWidth="1.536"
/>
</g>
</svg>
);

export default Copy;
2 changes: 2 additions & 0 deletions packages/react/src/components/Icon/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import ArrowDown from './ArrowDown';
import PinFilled from './PinFilled';
import VideoRecorder from './VideoRecoder';
import DisabledRecorder from './DisableRecorder';
import Copy from './Copy';

const icons = {
file: File,
Expand Down Expand Up @@ -80,6 +81,7 @@ const icons = {
'error-circle': ErrorCircle,
'arrow-down': ArrowDown,
'pin-filled': PinFilled,
copy: Copy,
};

export default icons;
39 changes: 39 additions & 0 deletions packages/react/src/components/Message/Message.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,43 @@ const Message = ({
});
}
};
const handleCopyMessage = async (msg) => {
navigator.clipboard
.writeText(msg.msg)
.then(() => {
dispatchToastMessage({
type: 'success',
message: 'Message copied successfully',
});
})
.catch(() => {
dispatchToastMessage({
type: 'error',
message: 'Error in copying message',
});
});
};
const getMessageLink = async (id) => {
const host = await RCInstance.getHost();
const res = await RCInstance.channelInfo();
return `${host}/channel/${res.room.name}/?msg=${id}`;
};

const handleCopyMessageLink = async (msg) => {
try {
const messageLink = await getMessageLink(msg._id);
await navigator.clipboard.writeText(messageLink);
dispatchToastMessage({
type: 'success',
message: 'Message link copied successfully',
});
} catch (err) {
dispatchToastMessage({
type: 'error',
message: 'Error in copying message link',
});
}
};

const handleEmojiClick = async (e, msg, canReact) => {
const emoji = (e.names?.[0] || e.name).replace(/\s/g, '_');
Expand Down Expand Up @@ -224,6 +261,8 @@ const Message = ({
handleDeleteMessage={handleDeleteMessage}
handleStarMessage={handleStarMessage}
handlePinMessage={handlePinMessage}
handleCopyMessage={handleCopyMessage}
handleCopyMessageLink={handleCopyMessageLink}
handleEditMessage={() => {
if (editMessage._id === message._id) {
setEditMessage({});
Expand Down
14 changes: 14 additions & 0 deletions packages/react/src/components/Message/MessageToolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ export const MessageToolbox = ({
handleDeleteMessage,
handlerReportMessage,
handleEditMessage,
handleCopyMessage,
handleCopyMessageLink,
isEditing = false,
...props
}) => {
Expand Down Expand Up @@ -143,6 +145,18 @@ export const MessageToolbox = ({
icon="edit"
onClick={() => handleEditMessage(message)}
/>
<ActionButton
ghost
size="small"
icon="link"
onClick={() => handleCopyMessageLink(message)}
/>
<ActionButton
ghost
size="small"
icon="copy"
onClick={() => handleCopyMessage(message)}
/>
<ActionButton
ghost
size="small"
Expand Down

0 comments on commit 88ea004

Please sign in to comment.