-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSearchBar.jsx
More file actions
188 lines (176 loc) · 4.72 KB
/
Copy pathSearchBar.jsx
File metadata and controls
188 lines (176 loc) · 4.72 KB
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
import React, { useEffect, useRef, useState } from "react";
import { TouchableWithoutFeedback } from "react-native";
import { Close, Search } from "@bigbinary/neeto-icons-rn";
import PropTypes from "prop-types";
import { Easing, useSharedValue, withTiming } from "react-native-reanimated";
import { moderateScale } from "react-native-size-matters";
import styled from "styled-components/native";
import {
flexbox,
space,
border,
buttonStyle,
typography,
color,
} from "styled-system";
import { useDebounce } from "@hooks";
import { theme } from "@theme";
import { Container } from "./Container";
import { Touchable } from "./Touchable";
const TextInput = styled.TextInput`
${flexbox}
${space}
${border}
${buttonStyle}
${typography}
${color}
`;
/**
* SearchBars are used to search or filter items.
*
* <div class="screenshots">
* <img src="screenshots/searchbar/searchbar.png" />
* </div>
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Container, SearchBar } from '@bigbinary/neetoui-rn';
*
* export default function Main() {
* return (
* <Container>
* <SearchBar placeholder="Search" onChangeText={() => {}} />
* </Container>
* );
* }
* ```
*/
export const SearchBar = ({
placeholder = "Search",
onChangeText = () => {},
onCancel = () => {},
debounceDelay = 1000,
showCancelButton = true,
containerProps,
searchbarProps,
}) => {
const inputRef = useRef();
const [searchText, setSearchText] = useState("");
const debouncedSearchTextValue = useDebounce(
searchText.trim(),
Number(debounceDelay)
);
const buttonWidth = useSharedValue(0);
const buttonOpacity = useSharedValue(0);
useEffect(() => {
onChangeText(debouncedSearchTextValue);
}, [debouncedSearchTextValue, onChangeText]);
const animateSearchInput = val => {
buttonWidth.value = withTiming(val, {
easing: Easing.linear,
duration: 200,
});
buttonOpacity.value = withTiming(val, {
easing: Easing.linear,
duration: 100,
});
};
const onCancelHandle = () => {
setSearchText("");
inputRef.current.blur();
onCancel();
};
return (
<Container alignItems="center" flexDirection="row">
<TouchableWithoutFeedback
onPress={() => {
if (!inputRef?.current?.isFocused()) {
inputRef?.current?.focus();
}
}}
>
<Container
alignItems="center"
borderColor={theme.colors.border.grey400}
borderRadius={moderateScale(8)}
borderWidth={moderateScale(1)}
flex={1}
flexDirection="row"
height={moderateScale(42)}
{...containerProps}
>
<Container px={moderateScale(8)}>
<Search
color={theme.colors.font.grey600}
size={moderateScale(22)}
/>
</Container>
<TextInput
autoCapitalize="none"
color="font.primary"
flex={1}
fontSize={moderateScale(16)}
padding={0}
placeholder={placeholder}
placeholderTextColor={theme.colors.font.grey600}
ref={inputRef}
returnKeyType="search"
value={searchText}
onChangeText={setSearchText}
onBlur={() => {
if (!searchText) animateSearchInput(0);
}}
onFocus={() => {
animateSearchInput(1);
}}
{...searchbarProps}
/>
{showCancelButton && (
<Container>
<Touchable
flexGrow={1}
height={moderateScale(42)}
justifyContent="center"
px={moderateScale(8)}
onPress={onCancelHandle}
>
<Close
color={theme.colors.font.grey600}
size={moderateScale(22)}
/>
</Touchable>
</Container>
)}
</Container>
</TouchableWithoutFeedback>
</Container>
);
};
SearchBar.propTypes = {
/**
* Set the placeholder text
*/
placeholder: PropTypes.string,
/**
* Method to fire when text is changed
*/
onChangeText: PropTypes.func.isRequired,
/**
* Takes numeric value which is used to set the debounce delay
*/
debounceDelay: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* Takes an object and accepts all the props accepted by TextInput component from React Native.
*/
searchbarProps: PropTypes.object,
/**
* Method called when the cancel button is pressed.
*/
onCancel: PropTypes.func,
/**
* option to hide the cancel button. Default is true
*/
showCancelButton: PropTypes.bool,
containerProps: PropTypes.object,
};