mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 06:38:13 +00:00
Summary: Changelog: ---------- [iOS] [Fixed] - Fix SectionList layout of RNTester on iOS Pull Request resolved: https://github.com/facebook/react-native/pull/23119 Differential Revision: D13781561 Pulled By: cpojer fbshipit-source-id: 9cc89c76a4139fe419c61a55b02a8a2992e76f4e
107 lines
2.2 KiB
JavaScript
107 lines
2.2 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const StyleSheet = require('StyleSheet');
|
|
const TextInput = require('TextInput');
|
|
const View = require('View');
|
|
|
|
type Props = {
|
|
filter: Function,
|
|
render: Function,
|
|
sections: Object,
|
|
disableSearch?: boolean,
|
|
testID?: string,
|
|
};
|
|
|
|
type State = {
|
|
filter: string,
|
|
};
|
|
|
|
class RNTesterExampleFilter extends React.Component<Props, State> {
|
|
state = {filter: ''};
|
|
|
|
render() {
|
|
const filterText = this.state.filter;
|
|
let filterRegex = /.*/;
|
|
|
|
try {
|
|
filterRegex = new RegExp(String(filterText), 'i');
|
|
} catch (error) {
|
|
console.warn(
|
|
'Failed to create RegExp: %s\n%s',
|
|
filterText,
|
|
error.message,
|
|
);
|
|
}
|
|
|
|
const filter = example =>
|
|
this.props.disableSearch || this.props.filter({example, filterRegex});
|
|
|
|
const filteredSections = this.props.sections.map(section => ({
|
|
...section,
|
|
data: section.data.filter(filter),
|
|
}));
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
{this._renderTextInput()}
|
|
{this.props.render({filteredSections})}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
_renderTextInput(): ?React.Element<any> {
|
|
if (this.props.disableSearch) {
|
|
return null;
|
|
}
|
|
return (
|
|
<View style={styles.searchRow}>
|
|
<TextInput
|
|
autoCapitalize="none"
|
|
autoCorrect={false}
|
|
clearButtonMode="always"
|
|
onChangeText={text => {
|
|
this.setState(() => ({filter: text}));
|
|
}}
|
|
placeholder="Search..."
|
|
underlineColorAndroid="transparent"
|
|
style={styles.searchTextInput}
|
|
testID={this.props.testID}
|
|
value={this.state.filter}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
searchRow: {
|
|
backgroundColor: '#eeeeee',
|
|
padding: 10,
|
|
},
|
|
searchTextInput: {
|
|
backgroundColor: 'white',
|
|
borderColor: '#cccccc',
|
|
borderRadius: 3,
|
|
borderWidth: 1,
|
|
paddingLeft: 8,
|
|
paddingVertical: 0,
|
|
height: 35,
|
|
},
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
module.exports = RNTesterExampleFilter;
|