blob: 322742305d8a4eb2d1e137328b2a07b9d953e32a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import PropTypes from 'prop-types';
import {postListScrollChange} from 'actions/global_actions.jsx';
export default class PostImageEmbed extends React.PureComponent {
static propTypes = {
/**
* The link to load the image from
*/
link: PropTypes.string.isRequired,
/**
* Function to call when image is loaded
*/
onLinkLoaded: PropTypes.func,
/**
* The function to call if image load fails
*/
onLinkLoadError: PropTypes.func
}
constructor(props) {
super(props);
this.handleLoadComplete = this.handleLoadComplete.bind(this);
this.handleLoadError = this.handleLoadError.bind(this);
this.state = {
loaded: false,
errored: false
};
}
componentWillMount() {
this.loadImg(this.props.link);
}
componentWillReceiveProps(nextProps) {
if (nextProps.link !== this.props.link) {
this.setState({
loaded: false,
errored: false
});
}
}
componentDidUpdate(prevProps) {
if (!this.state.loaded && prevProps.link !== this.props.link) {
this.loadImg(this.props.link);
}
}
loadImg(src) {
const img = new Image();
img.onload = this.handleLoadComplete;
img.onerror = this.handleLoadError;
img.src = src;
}
handleLoadComplete() {
this.setState({
loaded: true,
errored: false
});
postListScrollChange();
if (this.props.onLinkLoaded) {
this.props.onLinkLoaded();
}
}
handleLoadError() {
this.setState({
errored: true,
loaded: true
});
if (this.props.onLinkLoadError) {
this.props.onLinkLoadError();
}
}
render() {
if (this.state.errored || !this.state.loaded) {
return null;
}
return (
<div
className='post__embed-container'
>
<img
className='img-div'
src={this.props.link}
/>
</div>
);
}
}
|