This is a fork of React Avatar Cropper by Justin (https://github.com/DropsOfSerenity/react-avatar-cropper) using semantic-ui-react components instead of bootstrap and working on mobile devices too. The package was also updated to use with react 16 and wepack 4.
React Avatar Cropper aims to be an out of the box solution to solve the avatar cropping problem for 99% of common use cases. Most of the time you want a modal to pop up, allow the user to crop their uploaded image, and then you want to receive that base64 data to display or file blob and send it to the server. React Avatar Cropper takes care of this use case.
Taking heavy inspiration from slack's and facebook's user photo cropper, react-avatar-cropper is here to make it easy.
npm run start
Then go to http://localhost:8080/webpack-dev-server/
In your project
npm install --save https://github.com/yusupova/react-avatar-cropper
react-avatar-cropper also depends on react obviously :)
npm install --save react
It also needs semantic-ui-react for modal functionality.
npm install --save semantic-ui-react
Add semantic-ui styles for modal proper appearance.
- You can include cdn link in your index.html file
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css"></link>
- Or install semantic-ui-css package
npm install semantic-ui-css --save
and include it in your file
import 'semantic-ui-css/semantic.min.css';
Usage is fairly simple, you can check the /example folder for a slightly more complex use case (the use case you see above in the demo). AvatarCropper simple takes a width and a height to determine what size avatar you would like. Then it takes an image property where you can pass an external image file. onRequestHide function is passed to the underlying modal so you can decide how to dismiss the modal. Lastly onCrop callback function is required, and gives you back the cropped Image URI and file.
// require the component
var AvatarCropper = require("react-avatar-cropper");
// or es6:
import AvatarCropper from 'react-avatar-cropper'
// and in the render function of wherever you please...
// modalOptions are options for Modal component https://react.semantic-ui.com/modules/modal
render() {
return (
<AvatarCropper
modalOptions={{dimmer: 'blurring', size: 'small'}}
onRequestHide={this.handleRequestHide}
onCrop={this.handleCrop}
image={this.state.img}
width={400}
height={400}
//return image with canvas size instead of original size, by default true
isOriginalSize={false}
/>
);
}
There is an example of this common use case on the page for this plugin. Most importantly we pass the cropped DataURI back through your provided onCrop function.
Check out http://dropsofserenity.github.io/react-avatar-cropper/ for more examples and info.
Feel free to place issues on the issue tracker or a pull request regarding any functionality.