2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +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.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
2015-05-14 15:36:35 +00:00
|
|
|
* @providesModule StaticRenderer
|
2015-03-25 22:36:50 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('React');
|
|
|
|
|
2017-04-12 23:09:48 +00:00
|
|
|
var PropTypes = require('prop-types');
|
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class StaticRenderer extends React.Component<{
|
|
|
|
shouldUpdate: boolean,
|
|
|
|
render: Function,
|
|
|
|
}> {
|
2016-07-26 08:00:02 +00:00
|
|
|
static propTypes = {
|
2017-04-12 23:09:48 +00:00
|
|
|
shouldUpdate: PropTypes.bool.isRequired,
|
|
|
|
render: PropTypes.func.isRequired,
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
shouldComponentUpdate(nextProps: { shouldUpdate: boolean }): boolean {
|
2015-01-30 01:10:49 +00:00
|
|
|
return nextProps.shouldUpdate;
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
render(): React.Node {
|
2015-01-30 01:10:49 +00:00
|
|
|
return this.props.render();
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
module.exports = StaticRenderer;
|