1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | 1x 4x 1x 1x 3x 1x 1x 4x 4x 1x 1x 1x | import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { ActivityIndicator, View, StyleSheet, TextInput, Platform, Text as NativeText, } from 'react-native'; import Icon from 'react-native-vector-icons/MaterialIcons'; import colors from '../config/colors'; import normalize from '../helpers/normalizeText'; import ViewPropTypes from '../config/ViewPropTypes'; class Search extends Component { getRef = () => { return this.input || this.refs[this.props.textInputRef]; }; getRefHandler = () => { if (this.props.textInputRef) { Iif (typeof this.props.textInputRef === 'function') { return input => { this.input = input; this.props.textInputRef(input); }; } else { return this.props.textInputRef; } } else { return input => (this.input = input); } }; focus() { this.getRef() && this.getRef().focus(); } blur() { this.getRef() && this.getRef().blur(); } clearText() { this.getRef() && this.getRef().clear(); this.props.onChangeText && this.props.onChangeText(''); } render() { const { containerStyle, inputStyle, icon, noIcon, lightTheme, round, showLoadingIcon, loadingIcon, clearIcon, containerRef, selectionColor, underlineColorAndroid, ...attributes } = this.props; return ( <View ref={containerRef} style={[ styles.container, lightTheme && styles.containerLight, containerStyle && containerStyle, ]} > <TextInput ref={this.getRefHandler()} selectionColor={selectionColor || colors.grey3} underlineColorAndroid={ underlineColorAndroid ? underlineColorAndroid : 'transparent' } style={[ styles.input, lightTheme && styles.inputLight, noIcon && { paddingLeft: 9 }, round && { borderRadius: Platform.OS === 'ios' ? 15 : 20 }, inputStyle && inputStyle, clearIcon && showLoadingIcon && { paddingRight: 50 }, ((clearIcon && !showLoadingIcon) || (!clearIcon && showLoadingIcon)) && { paddingRight: 30 }, ]} {...attributes} /> {!noIcon && <Icon size={16} style={[styles.icon, styles.searchIcon, icon.style && icon.style]} name={icon.name || 'search'} color={icon.color || colors.grey3} />} {clearIcon && <Icon size={16} style={[ styles.icon, styles.clearIcon, clearIcon.style && clearIcon.style, ]} name={clearIcon.name || 'close'} onPress={this.clearText.bind(this)} color={clearIcon.color || colors.grey3} />} {showLoadingIcon && <ActivityIndicator style={[ styles.loadingIcon, loadingIcon.style && loadingIcon.style, clearIcon && { right: 35 }, ]} color={icon.color || colors.grey3} />} </View> ); } } Search.propTypes = { icon: PropTypes.object, noIcon: PropTypes.bool, lightTheme: PropTypes.bool, containerStyle: ViewPropTypes.style, inputStyle: NativeText.propTypes.style, round: PropTypes.bool, showLoadingIcon: PropTypes.bool, loadingIcon: PropTypes.object, clearIcon: PropTypes.oneOfType([PropTypes.object, PropTypes.bool]), // Deprecated textInputRef: PropTypes.oneOfType([PropTypes.string, PropTypes.func]), // Deprecated containerRef: PropTypes.oneOfType([PropTypes.string, PropTypes.func]), selectionColor: PropTypes.string, underlineColorAndroid: PropTypes.string, onChangeText: PropTypes.func, }; Search.defaultProps = { placeholderTextColor: colors.grey3, lightTheme: false, noIcon: false, round: false, icon: {}, showLoadingIcon: false, loadingIcon: {}, }; const styles = StyleSheet.create({ container: { borderTopWidth: 1, borderBottomWidth: 1, borderBottomColor: '#000', borderTopColor: '#000', backgroundColor: colors.grey0, }, containerLight: { backgroundColor: colors.grey5, borderTopColor: '#e1e1e1', borderBottomColor: '#e1e1e1', }, icon: { backgroundColor: 'transparent', position: 'absolute', top: 15.5, ...Platform.select({ android: { top: 20, }, }), }, loadingIcon: { backgroundColor: 'transparent', position: 'absolute', right: 16, top: 13, ...Platform.select({ android: { top: 18, }, }), }, input: { paddingLeft: 26, paddingRight: 19, margin: 8, borderRadius: 3, overflow: 'hidden', backgroundColor: colors.searchBg, fontSize: normalize(14), color: colors.grey3, height: 40, ...Platform.select({ ios: { height: 30, }, android: { borderWidth: 0, }, }), }, inputLight: { backgroundColor: colors.grey4, }, searchIcon: { left: 16, }, clearIcon: { right: 16, }, }); export default Search; |