2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07: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.
|
2015-01-29 17:10:49 -08:00
|
|
|
*
|
2015-05-14 08:36:35 -07:00
|
|
|
* @providesModule StaticRenderer
|
2015-03-25 15:36:50 -07:00
|
|
|
* @flow
|
2015-01-29 17:10:49 -08:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('React');
|
|
|
|
|
2016-07-26 01:00:02 -07:00
|
|
|
class StaticRenderer extends React.Component {
|
|
|
|
props: {
|
|
|
|
shouldUpdate: boolean,
|
|
|
|
render: Function,
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2015-01-29 17:10:49 -08:00
|
|
|
shouldUpdate: React.PropTypes.bool.isRequired,
|
|
|
|
render: React.PropTypes.func.isRequired,
|
2016-07-26 01:00:02 -07:00
|
|
|
};
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2016-07-26 01:00:02 -07:00
|
|
|
shouldComponentUpdate(nextProps: { shouldUpdate: boolean }): boolean {
|
2015-01-29 17:10:49 -08:00
|
|
|
return nextProps.shouldUpdate;
|
2016-07-26 01:00:02 -07:00
|
|
|
}
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2016-10-16 04:11:59 -07:00
|
|
|
render(): React.Element<any> {
|
2015-01-29 17:10:49 -08:00
|
|
|
return this.props.render();
|
2016-07-26 01:00:02 -07:00
|
|
|
}
|
|
|
|
}
|
2015-01-29 17:10:49 -08:00
|
|
|
|
|
|
|
module.exports = StaticRenderer;
|