| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import ReactCrop from 'react-image-crop';
- import AppContainer from '../services/AppContainer';
- import { createSubscribedElement } from './UnstatedUtils';
- class ProfileImageUploader extends React.Component {
- state = {
- src: null,
- crop: {
- unit: '%',
- width: 30,
- aspect: 16 / 9,
- },
- };
- onSelectFile = (e) => {
- if (e.target.files && e.target.files.length > 0) {
- const reader = new FileReader();
- reader.addEventListener('load', () => this.setState({ src: reader.result }));
- reader.readAsDataURL(e.target.files[0]);
- }
- };
- // If you setState the crop in here you should return false.
- onImageLoaded = (image) => {
- this.imageRef = image;
- };
- onCropComplete = (crop) => {
- this.makeClientCrop(crop);
- };
- onCropChange = (crop, percentCrop) => {
- // You could also use percentCrop:
- // this.setState({ crop: percentCrop });
- this.setState({ crop });
- };
- async makeClientCrop(crop) {
- if (this.imageRef && crop.width && crop.height) {
- const croppedImageUrl = await this.getCroppedImg(this.imageRef, crop, 'newFile.jpeg');
- this.setState({ croppedImageUrl });
- }
- }
- getCroppedImg(image, crop, fileName) {
- const canvas = document.createElement('canvas');
- const scaleX = image.naturalWidth / image.width;
- const scaleY = image.naturalHeight / image.height;
- canvas.width = crop.width;
- canvas.height = crop.height;
- const ctx = canvas.getContext('2d');
- ctx.drawImage(image, crop.x * scaleX, crop.y * scaleY, crop.width * scaleX, crop.height * scaleY, 0, 0, crop.width, crop.height);
- return new Promise((resolve, reject) => {
- canvas.toBlob((blob) => {
- if (!blob) {
- // reject(new Error('Canvas is empty'));
- console.error('Canvas is empty');
- return;
- }
- blob.name = fileName;
- window.URL.revokeObjectURL(this.fileUrl);
- this.fileUrl = window.URL.createObjectURL(blob);
- resolve(this.fileUrl);
- }, 'image/jpeg');
- });
- }
- render() {
- const { crop, croppedImageUrl, src } = this.state;
- return (
- <div className="App">
- <div>
- <input type="file" onChange={this.onSelectFile} name="profileImage" accept="image/*" />
- </div>
- {src && <ReactCrop src={src} crop={crop} onImageLoaded={this.onImageLoaded} onComplete={this.onCropComplete} onChange={this.onCropChange} />}
- {croppedImageUrl && <img alt="Crop" style={{ maxWidth: '100%' }} src={croppedImageUrl} />}
- </div>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const ProfileImageFormWrapper = (props) => {
- return createSubscribedElement(ProfileImageUploader, props, [AppContainer]);
- };
- ProfileImageUploader.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- export default withTranslation()(ProfileImageFormWrapper);
|