Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/afeiship/react-upload-weibo

Weibo upload pictures for react.
https://github.com/afeiship/react-upload-weibo

react upload weibo

Last synced: 22 days ago
JSON representation

Weibo upload pictures for react.

Awesome Lists containing this project

README

        

# react-upload-weibo
> Weibo upload pictures for react.

[![version][version-image]][version-url]
[![license][license-image]][license-url]
[![size][size-image]][size-url]
[![download][download-image]][download-url]

## installation
```shell
npm install -S @jswork/react-upload-weibo
```

## properties
| Name | Type | Required | Default | Description |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| className | string | false | - | The extended className for component. |
| onChange | func | false | noop | The change handler. |
| limit | number | false | 10 | The max upload limit. |
| token | string | false | - | The weibo oss token. |

## usage
1. import css
```scss
@import "~@jswork/react-upload-weibo/dist/style.css";

// or use sass
@import "~@jswork/react-upload-weibo/dist/style.scss";

// customize your styles:
$react-upload-weibo-options: ()
```
2. import js
```js
import ReactDemokit from '@jswork/react-demokit';
import React from 'react';
import ReactDOM from 'react-dom';
import ReactUploadWeibo from '@jswork/react-upload-weibo';
import './assets/style.scss';

class App extends React.Component {
state = {
items: [],
token:
'SUB=_2A25NRDndDeRhGeVI7VMZ8yzEyz-IHXVuMCwVrDV_PUNbm9AfLVX9kW9NTBpP0WiKCSBlMw7oSMG7Zy0nrMofP6ea'
};

handleChange = (e) => {
console.log(e.target.value);
this.setState({ items: e.target.value });
};

handleTokenChange = (e) => {
console.log('token changed.');
};

render() {
const { items } = this.state;

return (


{items.map((item) => {
return ;
})}


);
}
}

ReactDOM.render(, document.getElementById('app'));

```

## documentation
- https://afeiship.github.io/react-upload-weibo/

## license
Code released under [the MIT license](https://github.com/afeiship/react-upload-weibo/blob/master/LICENSE.txt).

[version-image]: https://img.shields.io/npm/v/@jswork/react-upload-weibo
[version-url]: https://npmjs.org/package/@jswork/react-upload-weibo

[license-image]: https://img.shields.io/npm/l/@jswork/react-upload-weibo
[license-url]: https://github.com/afeiship/react-upload-weibo/blob/master/LICENSE.txt

[size-image]: https://img.shields.io/bundlephobia/minzip/@jswork/react-upload-weibo
[size-url]: https://github.com/afeiship/react-upload-weibo/blob/master/dist/react-upload-weibo.min.js

[download-image]: https://img.shields.io/npm/dm/@jswork/react-upload-weibo
[download-url]: https://www.npmjs.com/package/@jswork/react-upload-weibo