ImagesAsGif.js
1.42 KB
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
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var createReactClass = require('create-react-class');
var {
} = React;
import PropTypes from 'prop-types';
var {
Image,
} = ReactNative;
var TimerMixin = require('react-timer-mixin');
module.exports = createReactClass({
propTypes: {
images: PropTypes.array.isRequired,
repeatCount: PropTypes.number,
duration: PropTypes.number,
},
mixins: [TimerMixin],
getInitialState: function() {
return {
imageIndex: 0,
};
},
getDefaultProps() {
return {
repeatCount: 1000,
duration: 100,
}
},
componentDidMount: function() {
this.repeatCount = this.props.repeatCount;
this.intervalId = this.setInterval(()=>{
var imageIndex = this.state.imageIndex+1;
if (imageIndex >= this.props.images.length) {
imageIndex = 0;
if (this.repeatCount === 1) {
this.clearInterval(this.intervalId);
return;
}
this.repeatCount--;
}
this.setState({imageIndex:imageIndex})
}, this.props.duration);
},
render: function() {
return (
<Image
{...this.props}
source={this.props.images[this.state.imageIndex]}
/>
);
}
});