2016-04-17 22:03:43 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule LazyRenderer
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('React');
|
2017-07-07 21:24:25 +00:00
|
|
|
var createReactClass = require('create-react-class');
|
2017-04-12 23:09:48 +00:00
|
|
|
var PropTypes = require('prop-types');
|
2016-09-09 17:05:39 +00:00
|
|
|
var TimerMixin = require('react-timer-mixin');
|
2016-04-17 22:03:43 +00:00
|
|
|
|
2017-07-07 21:24:25 +00:00
|
|
|
var LazyRenderer = createReactClass({
|
|
|
|
displayName: 'LazyRenderer',
|
2016-04-17 22:03:43 +00:00
|
|
|
mixin: [TimerMixin],
|
|
|
|
|
|
|
|
propTypes: {
|
2017-04-12 23:09:48 +00:00
|
|
|
render: PropTypes.func.isRequired,
|
2016-04-17 22:03:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function(): void {
|
|
|
|
this.setState({
|
|
|
|
_lazyRender : true,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function(): void {
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
this.setState({
|
|
|
|
_lazyRender : false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-10-14 15:53:57 +00:00
|
|
|
render: function(): ?React.Element {
|
2016-04-17 22:03:43 +00:00
|
|
|
return this.state._lazyRender ? null : this.props.render();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = LazyRenderer;
|