Files
react-native/packages/rn-tester/js/examples/RefreshControl/RefreshControlExample.js
T
Tim Yung c9ea05552f RN: Fix lint/sort-imports Errors (#47109)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47109

Fixes the `lint/sort-imports` errors that are now surfaced after fixing the lint configuration.

For a couple files, I added lint suppressions instead because the unsorted import ordering is important due to interleaved calls with side effects.

Changelog:
[Internal]

Reviewed By: GijsWeterings

Differential Revision: D64569485

fbshipit-source-id: 26415d792e2b9efe08c05d1436f723faae549882
2024-10-18 04:07:02 -07:00

129 lines
2.8 KiB
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
'use strict';
import RNTesterText from '../../components/RNTesterText';
import React from 'react';
import {
RefreshControl,
ScrollView,
StyleSheet,
TouchableWithoutFeedback,
View,
} from 'react-native';
const styles = StyleSheet.create({
row: {
borderColor: 'grey',
borderWidth: 1,
padding: 20,
backgroundColor: '#3a5795',
margin: 5,
},
text: {
alignSelf: 'center',
color: '#fff',
},
scrollview: {
flex: 1,
},
});
class Row extends React.Component {
_onClick = () => {
this.props.onClick(this.props.data);
};
render() {
return (
<TouchableWithoutFeedback onPress={this._onClick}>
<View style={styles.row}>
<RNTesterText testID="refresh_control_row" style={styles.text}>
{this.props.data.text + ' (' + this.props.data.clicks + ' clicks)'}
</RNTesterText>
</View>
</TouchableWithoutFeedback>
);
}
}
class RefreshControlExample extends React.Component {
state = {
isRefreshing: false,
loaded: 0,
rowData: Array.from(new Array(20)).map((val, i) => ({
text: 'Initial row ' + i,
clicks: 0,
})),
};
_onClick = row => {
row.clicks++;
this.setState({
rowData: this.state.rowData,
});
};
render() {
const rows = this.state.rowData.map((row, ii) => {
return <Row key={ii} data={row} onClick={this._onClick} />;
});
return (
<ScrollView
style={styles.scrollview}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this._onRefresh}
tintColor="#ff0000"
title="Loading..."
titleColor="#00ff00"
colors={['#ff0000', '#00ff00', '#0000ff']}
progressBackgroundColor="#ffff00"
/>
}>
{rows}
</ScrollView>
);
}
_onRefresh = () => {
this.setState({isRefreshing: true});
setTimeout(() => {
// prepend 10 items
const rowData = Array.from(new Array(10))
.map((val, i) => ({
text: 'Loaded row ' + (+this.state.loaded + i),
clicks: 0,
}))
.concat(this.state.rowData);
this.setState({
loaded: this.state.loaded + 10,
isRefreshing: false,
rowData: rowData,
});
}, 5000);
};
}
exports.title = 'RefreshControl';
exports.category = 'Basic';
exports.documentationURL = 'https://reactnative.dev/docs/refreshcontrol';
exports.description = 'Adds pull-to-refresh support to a scrollview.';
exports.examples = [
{
title: 'Simple refresh',
render(): React.MixedElement {
return <RefreshControlExample />;
},
},
];