Maintain aspect ratio for preview image (#3966)
parent
98eaa2aa27
commit
8f2c91568c
|
@ -1,5 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
export default class ImageLoader extends React.PureComponent {
|
export default class ImageLoader extends React.PureComponent {
|
||||||
|
|
||||||
|
@ -20,31 +21,113 @@ export default class ImageLoader extends React.PureComponent {
|
||||||
error: false,
|
error: false,
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillMount() {
|
removers = [];
|
||||||
this._loadImage(this.props.src);
|
|
||||||
|
get canvasContext() {
|
||||||
|
if (!this.canvas) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
this._canvasContext = this._canvasContext || this.canvas.getContext('2d');
|
||||||
|
return this._canvasContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(props) {
|
componentDidMount () {
|
||||||
this._loadImage(props.src);
|
this.loadImage(this.props);
|
||||||
}
|
}
|
||||||
|
|
||||||
_loadImage(src) {
|
componentWillReceiveProps (nextProps) {
|
||||||
|
if (this.props.src !== nextProps.src) {
|
||||||
|
this.loadImage(nextProps);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
loadImage (props) {
|
||||||
|
this.removeEventListeners();
|
||||||
|
this.setState({ loading: true, error: false });
|
||||||
|
Promise.all([
|
||||||
|
this.loadPreviewCanvas(props),
|
||||||
|
this.loadOriginalImage(props),
|
||||||
|
])
|
||||||
|
.then(() => {
|
||||||
|
this.setState({ loading: false, error: false });
|
||||||
|
this.clearPreviewCanvas();
|
||||||
|
})
|
||||||
|
.catch(() => this.setState({ loading: false, error: true }));
|
||||||
|
}
|
||||||
|
|
||||||
|
loadPreviewCanvas = ({ previewSrc, width, height }) => new Promise((resolve, reject) => {
|
||||||
const image = new Image();
|
const image = new Image();
|
||||||
|
const removeEventListeners = () => {
|
||||||
|
image.removeEventListener('error', handleError);
|
||||||
|
image.removeEventListener('load', handleLoad);
|
||||||
|
};
|
||||||
|
const handleError = () => {
|
||||||
|
removeEventListeners();
|
||||||
|
reject();
|
||||||
|
};
|
||||||
|
const handleLoad = () => {
|
||||||
|
removeEventListeners();
|
||||||
|
this.canvasContext.drawImage(image, 0, 0, width, height);
|
||||||
|
resolve();
|
||||||
|
};
|
||||||
|
image.addEventListener('error', handleError);
|
||||||
|
image.addEventListener('load', handleLoad);
|
||||||
|
image.src = previewSrc;
|
||||||
|
this.removers.push(removeEventListeners);
|
||||||
|
})
|
||||||
|
|
||||||
image.onerror = () => this.setState({ loading: false, error: true });
|
clearPreviewCanvas () {
|
||||||
image.onload = () => this.setState({ loading: false, error: false });
|
const { width, height } = this.canvas;
|
||||||
|
this.canvasContext.clearRect(0, 0, width, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
loadOriginalImage = ({ src }) => new Promise((resolve, reject) => {
|
||||||
|
const image = new Image();
|
||||||
|
const removeEventListeners = () => {
|
||||||
|
image.removeEventListener('error', handleError);
|
||||||
|
image.removeEventListener('load', handleLoad);
|
||||||
|
};
|
||||||
|
const handleError = () => {
|
||||||
|
removeEventListeners();
|
||||||
|
reject();
|
||||||
|
};
|
||||||
|
const handleLoad = () => {
|
||||||
|
removeEventListeners();
|
||||||
|
resolve();
|
||||||
|
};
|
||||||
|
image.addEventListener('error', handleError);
|
||||||
|
image.addEventListener('load', handleLoad);
|
||||||
image.src = src;
|
image.src = src;
|
||||||
|
this.removers.push(removeEventListeners);
|
||||||
|
});
|
||||||
|
|
||||||
this.setState({ loading: true });
|
removeEventListeners () {
|
||||||
|
this.removers.forEach(listeners => listeners());
|
||||||
|
this.removers = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
setCanvasRef = c => {
|
||||||
|
this.canvas = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { alt, src, previewSrc, width, height } = this.props;
|
const { alt, src, width, height } = this.props;
|
||||||
const { loading } = this.state;
|
const { loading } = this.state;
|
||||||
|
|
||||||
|
const className = classNames('image-loader', {
|
||||||
|
'image-loader--loading': loading,
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='image-loader'>
|
<div className={className}>
|
||||||
|
<canvas
|
||||||
|
className='image-loader__preview-canvas'
|
||||||
|
width={width}
|
||||||
|
height={height}
|
||||||
|
ref={this.setCanvasRef}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{!loading && (
|
||||||
<img
|
<img
|
||||||
alt={alt}
|
alt={alt}
|
||||||
className='image-loader__img'
|
className='image-loader__img'
|
||||||
|
@ -52,14 +135,7 @@ export default class ImageLoader extends React.PureComponent {
|
||||||
width={width}
|
width={width}
|
||||||
height={height}
|
height={height}
|
||||||
/>
|
/>
|
||||||
|
)}
|
||||||
{loading &&
|
|
||||||
<img
|
|
||||||
alt=''
|
|
||||||
src={previewSrc}
|
|
||||||
className='image-loader__preview-img'
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1099,20 +1099,22 @@
|
||||||
|
|
||||||
.image-loader {
|
.image-loader {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
&.image-loader--loading {
|
||||||
|
.image-loader__preview-canvas {
|
||||||
|
filter: blur(2px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-loader__preview-img {
|
.image-loader__img {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
filter: blur(2px);
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-modal img.image-loader__preview-img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-bar {
|
.navigation-bar {
|
||||||
|
@ -2933,6 +2935,7 @@ button.icon-button.active i.fa-retweet {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
img,
|
img,
|
||||||
|
canvas,
|
||||||
video {
|
video {
|
||||||
max-width: 80vw;
|
max-width: 80vw;
|
||||||
max-height: 80vh;
|
max-height: 80vh;
|
||||||
|
@ -2940,7 +2943,8 @@ button.icon-button.active i.fa-retweet {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img,
|
||||||
|
canvas {
|
||||||
display: block;
|
display: block;
|
||||||
background: url('../images/void.png') repeat;
|
background: url('../images/void.png') repeat;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue