Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(avatar): add WebexAvatar README #18

Merged
merged 1 commit into from
Aug 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions src/components/WebexAvatar/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# Webex Avatar Component
Webex avatar component displays the avatar and status of a _Webex Teams_ user.

Webex avatar component displays the avatar of a _Webex Teams_ user with a given `personID` and `adapter` object.
<p align="center">
<img src="./WebexAvatar.png" alt="Default Webex Avatar" />
</p>

## How to use

```js
<WebexAvatar personID="PersonID" adapter={peopleJSONAdapter} />
## Preview
To see all the different possible states of the Webex Avatar component, you can run our Storybook:
```shell
npm start
```

## Embed
1. Create a component adapter from which the data will be retrieved (See [adapters](../../adapters)). For instance:

```js
const jsonAdapter = new PeopleJSONAdapter();
```
2. Create a component instance by passing the person ID as a string and the [component data adapter](../../adapters/PeopleAdapter.js) that we created previously

```js
<WebexAvatar personID="personID" adapter={jsonAdapter} />
```

The component knows how to manage its data. If anything changes in the data source that the adapter manages, the component will also update on its own.
Binary file added src/components/WebexAvatar/WebexAvatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.