Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webex/message-composer
https://github.com/webex/message-composer
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/webex/message-composer
- Owner: webex
- Created: 2019-09-09T12:28:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-09T23:12:44.000Z (5 months ago)
- Last Synced: 2024-11-01T06:10:21.982Z (2 months ago)
- Language: JavaScript
- Size: 7.13 MB
- Stars: 1
- Watchers: 18
- Forks: 15
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Message Composer
Message composer for the Webex Web Client.
## Setup
You will need Node v11+ and Yarn installed.
## Usage
`yarn build` to build the composer.
To link with the client, run `yarn link` in your message composer terminal, then run `yarn link @webex/message-composer` in the client terminal.
You will need to build the composer after making changes for them to take effect. To unlink, run `yarn unlink @webex/message-composer` in the client terminal, then `yarn` to rebuild the original package from deployed package.To test without linking to a client, run `yarn storybook`.
Example of usage in the client:
```javascript
import Composer from '@webex/message-composer';// Prepare the functions and variables and whatnot
{stagedFiles}
{quotedActivitySection}
;
```Or check out the [stories](src/index.stories.js) file.
## API
Check out the API docs [here](docs/api.md).
## Development
See the [development notes](docs/development.md) for more information.