react-native/Libraries/Components/StaticRenderer.js

38 lines
756 B
JavaScript
Raw Normal View History

2015-01-29 17:10:49 -08:00
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
2015-01-29 17:10:49 -08:00
*
* @format
* @flow
2015-01-29 17:10:49 -08:00
*/
2015-01-29 17:10:49 -08:00
'use strict';
const React = require('React');
2015-01-29 17:10:49 -08:00
type Props = $ReadOnly<{|
/**
* Indicates whether the render function needs to be called again
*/
shouldUpdate: boolean,
/**
* () => renderable
* A function that returns a renderable component
*/
render: () => React.Node,
|}>;
2015-01-29 17:10:49 -08:00
class StaticRenderer extends React.Component<Props> {
shouldComponentUpdate(nextProps: Props): boolean {
2015-01-29 17:10:49 -08:00
return nextProps.shouldUpdate;
}
2015-01-29 17:10:49 -08:00
render(): React.Node {
2015-01-29 17:10:49 -08:00
return this.props.render();
}
}
2015-01-29 17:10:49 -08:00
module.exports = StaticRenderer;