Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webex/components
Embed the power of Webex in your web applications, on your own terms 💪🏼
https://github.com/webex/components
react-components webex webex-adapter webex-component webex-open-source webex-teams webex-web
Last synced: about 7 hours ago
JSON representation
Embed the power of Webex in your web applications, on your own terms 💪🏼
- Host: GitHub
- URL: https://github.com/webex/components
- Owner: webex
- License: mit
- Created: 2019-07-23T15:18:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T11:44:03.000Z (23 days ago)
- Last Synced: 2024-10-18T06:31:47.286Z (21 days ago)
- Topics: react-components, webex, webex-adapter, webex-component, webex-open-source, webex-teams, webex-web
- Language: JavaScript
- Homepage: https://webex.github.io/components/storybook
- Size: 147 MB
- Stars: 14
- Watchers: 21
- Forks: 52
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Webex Components
Library of React components to easily embed into your web applications!
**Webex Components** is a set of [React](https://reactjs.org) components following Webex standard styling,
aimed at react developers that want to embed the components into their applications.## Project Status
The Webex Component System is considered to be in beta stage and it's not a generally available product from Webex at this time.
This means that the Webex Component System is available for everyone to use but breaking changes, may occur as we develop it.
We try our best to minimize any breaking changes but they may occur.While the Webex Component System is not a GA product, we still offer support through all regular channels.
However, bug priority is given to products already generally available.
We would love for you to use the Webex Component System and be part of the feedback process!## Table of Contents
- [Project Status](#project-status)
- [Table of Contents](#table-of-contents)
- [Demo](#demo)
- [Install](#install)
- [Webex Components vs Webex Widgets](#webex-components-vs-webex-widgets)
- [Usage](#usage)
- [Webex Components Styles](#webex-components-styles)
- [JavaScript](#javascript)
- [HTML](#html)
- [Adapters](#adapters)
- [Components](#components)
- [Contributing](#contributing)
- [Issues](#issues)
- [License](#license)
- [Support](#support)## Demo
We use [Storybook](https://storybook.js.org) to showcase all supported components. Our Storybook can be found at https://webex.github.io/components/storybook.
## Install
```bash
npx install-peerdeps @webex/components
```## Webex Components vs Webex Widgets
In addition to the Webex Component System, we also offer the
[Webex Widgets](https://github.com/webex/widgets#webex-widgets).
The Webex Component System (sometimes shortened as _Webex Components_) is a set of
React components that, while following Webex styling, allow for more granularity
in terms of layout and source of data. See [usage](#usage) section.Webex Widgets are based on Webex Components but include the adapter that uses
our [Javascript SDK](https://github.com/webex/webex-js-sdk) to talk to Webex services for you.
This means that the Webex Widgets use the
[SDK Component Adapter](https://github.com/webex/sdk-component-adapter#webex-sdk-component-adapter)
to inject the Webex data.
All you need is a valid access token and a few parameters based on the widget you want to use.You have to take the Widget layout as-is, but the benefit is that there are no configurations needed.
Install, copy-paste and you have the power of Webex in your application!To learn more on the Webex Widgets head to its Github repository at
https://github.com/webex/widgets.## Usage
#### Webex Components StylesThere are two ways to do this:
##### JavaScript
In your `index.js`, add the following import:
```js
import '@webex/components/dist/css/webex-components.css';...
```##### HTML
In the `` of your `index.html`, add the following imports:
```html
...
```
### Adapters
Webex Components are self-updating, meaning, they know how to fetch the data they need.
Data is passed to components via adapter classes (see [adapters](./src/adapters)).
Adapters are an uniform interface for the Webex Components to consume.
They also know how to map the data from their data source to the data the components need.To use a Webex Component, start by creating a Webex Adapter:
```js
import {WebexJSONAdapter} from '@webex/components';const adapter = new WebexJSONAdapter(jsonData);
```Adapters may interact with different data source types.
For instance, as part of the Webex Component repository we distribute a [JSON adapter](./src/adapters) that reads data from JSON files.
We also are working on offering [an adapter](https://github.com/webex/sdk-component-adapter) for the [Webex browser SDK](https://github.com/webex/webex-js-sdk).### Components
Putting everything together - styles, adapters and components - this is a simple example of how using a component would look like:
```js
import '@webex/components/dist/css/webex-components.css';import React from 'react';
import ReactDOM from 'react-dom';
import {WebexAvatar, WebexDataProvider, WebexJSONAdapter} from '@webex/components';// jsonData represents an JSON object with the data to feed components
const adapter = new WebexJSONAdapter(jsonData);ReactDOM.render(
,
document.getElementById('root')
);
```_Happy Coding!_
## Contributing
We'd love for you to contribute to our source code and to make **Webex Components** even better than it is today!
Here are some [guidelines](https://github.com/webex/components/blob/master/CONTRIBUTING.md) that we'd like you to follow.### Issues
Please open an [issue](https://github.com/webex/components/issues) and we will get to it in an orderly manner.
Please leave as much as information as possible for a better understanding.## License
[MIT License](https://opensource.org/licenses/MIT)
## Support
For more developer resources, tutorials and support, visit the Webex developer portal, https://developer.webex.com.