All Projects → webex → components

webex / components

Licence: MIT License
Embed the power of Webex in your web applications, on your own terms 💪🏼

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to components

webinc
Webex in console - Cisco Webex Teams Client for Linux/MacOS/Windows
Stars: ✭ 17 (+13.33%)
Mutual labels:  webex, webex-teams
string-replace-to-array
Like Javascript's string.replace, but accepts and returns an array
Stars: ✭ 19 (+26.67%)
Mutual labels:  react-components
light-ui
A lightly React UI library
Stars: ✭ 38 (+153.33%)
Mutual labels:  react-components
react-admin-nest
React和Ant Design和 Nest.js 和 Mysql 构建的后台通用管理系统。持续更新。
Stars: ✭ 123 (+720%)
Mutual labels:  react-components
react-multiversal
React components that works everywhere (iOS, Android, Web, Node)
Stars: ✭ 43 (+186.67%)
Mutual labels:  react-components
guitar-editor
🎸 A portable guitar tabs editor 🎼 based on react.js, inspired by Markdown and LaTex.
Stars: ✭ 94 (+526.67%)
Mutual labels:  react-components
MERN-BUS-APP
This is a MFRP (My first Real Project) assigned to me during my internship at Cognizant. Made with MERN Stack technology.
Stars: ✭ 92 (+513.33%)
Mutual labels:  react-components
shared-components
A shared React component library for Bandwidth UI projects
Stars: ✭ 19 (+26.67%)
Mutual labels:  react-components
react-recurly
React components for Recurly.js
Stars: ✭ 38 (+153.33%)
Mutual labels:  react-components
MetFlix
A Movie app demo. Like NetFlix ❤️
Stars: ✭ 50 (+233.33%)
Mutual labels:  react-components
counter-app
This tiny application is like adding,removing,deleting, resetting products which reflects in the total number of products into our shopping cart.
Stars: ✭ 93 (+520%)
Mutual labels:  react-components
reactjs-portfolio
Welcome to my portfolio react.js repository page.
Stars: ✭ 109 (+626.67%)
Mutual labels:  react-components
how-react-hooks-work
Understand how React-hook really behaves, once and for all!
Stars: ✭ 73 (+386.67%)
Mutual labels:  react-components
design-system
A resource for creating user interfaces based on brand, UX, and dev principles
Stars: ✭ 17 (+13.33%)
Mutual labels:  react-components
webex-ios-sdk
Integrate Webex into your iOS apps quickly. Example:https://github.com/webex/webex-ios-sdk-example API-reference:https://webex.github.io/webex-ios-sdk/ API-reference-v2:https://webex.github.io/webex-ios-sdk/v2/
Stars: ✭ 17 (+13.33%)
Mutual labels:  webex
React-Interview-Questions
During the last three years had a lot of react interview questions so i decided to collect them all in one place to help other have an idea of most asked react questions , so if you have any more questions feel free to make a pull request and add your question along with its answer .
Stars: ✭ 37 (+146.67%)
Mutual labels:  react-components
nextjs-admin-template
Free admin dashboard template based on Next.Js with @paljs/ui component package
Stars: ✭ 266 (+1673.33%)
Mutual labels:  react-components
react-awesome-loaders
🚀 High quality, super responsive and completely customisable Loading Animations to insert into your website with single line of code.
Stars: ✭ 146 (+873.33%)
Mutual labels:  react-components
react-native-snippet
React Native, ReactJs, Redux, ES7 Snippet
Stars: ✭ 25 (+66.67%)
Mutual labels:  react-components
is-react
Determine if a variable or statement is a React element or component
Stars: ✭ 29 (+93.33%)
Mutual labels:  react-components

Webex Components

Library of React components to easily embed into your web applications!

CircleCI npm latest version semantic-release license

Webex Components is a set of React 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

Demo

We use Storybook to showcase all supported components. Our Storybook can be found at https://webex.github.io/components/storybook.

Install

npx install-peerdeps @webex/components

Webex Components vs Webex Widgets

In addition to the Webex Component System, we also offer the 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 section.

Webex Widgets are based on Webex Components but include the adapter that uses our Javascript SDK to talk to Webex services for you. This means that the Webex Widgets use the 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 Styles

There are two ways to do this:

JavaScript

In your index.js, add the following import:

import '@webex/components/dist/css/webex-components.css';

...
HTML

In the <head> of your index.html, add the following imports:

<head>
  ...
  <link rel="stylesheet" type="text/css" href="node_modules/@webex/components/dist/css/webex-components.css" />
</head>

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). 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:

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 that reads data from JSON files. We also are working on offering an adapter for the Webex browser SDK.

Components

Putting everything together - styles, adapters and components - this is a simple example of how using a component would look like:

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(
  <WebexDataProvider adapter={adapter}>
    <WebexAvatar personID="XYZ" />
  </WebexDataProvider>,
  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 that we'd like you to follow.

Issues

Please open an issue 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

Support

For more developer resources, tutorials and support, visit the Webex developer portal, https://developer.webex.com.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].