* Add Floating Label Autocomplete Selector * Address feedback * Revert unintended change * Move database connection to index file
146 lines
4.3 KiB
TypeScript
146 lines
4.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {
|
|
useState,
|
|
useRef,
|
|
useImperativeHandle,
|
|
forwardRef,
|
|
useCallback,
|
|
} from 'react';
|
|
import {
|
|
TextInput,
|
|
type TextInputProps,
|
|
} from 'react-native';
|
|
|
|
import {CHIP_HEIGHT} from '@components/chips/constants';
|
|
import SelectedChip from '@components/chips/selected_chip';
|
|
import {changeOpacity, getKeyboardAppearanceFromTheme, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
import FloatingInputContainer from './floating_input_container';
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
|
|
input: {
|
|
paddingHorizontal: 15,
|
|
paddingVertical: 0,
|
|
flexGrow: 1,
|
|
flexShrink: 0,
|
|
alignSelf: 'stretch',
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
justifyContent: 'flex-start',
|
|
alignContent: 'flex-start',
|
|
alignItems: 'flex-start',
|
|
textAlignVertical: 'top',
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 100),
|
|
},
|
|
}));
|
|
|
|
type Ref = {
|
|
blur: () => void;
|
|
focus: () => void;
|
|
isFocused: () => boolean;
|
|
}
|
|
|
|
type Props = {
|
|
label: string;
|
|
testID?: string;
|
|
theme: Theme;
|
|
chipsValues?: string[];
|
|
textInputValue: string;
|
|
onTextInputChange: TextInputProps['onChangeText'];
|
|
onChipRemove: (value: string) => void;
|
|
onTextInputSubmitted: () => void;
|
|
blurOnSubmit?: TextInputProps['blurOnSubmit'];
|
|
returnKeyType?: TextInputProps['returnKeyType'];
|
|
}
|
|
|
|
const FloatingTextChipsInput = forwardRef<Ref, Props>(({
|
|
textInputValue,
|
|
onTextInputChange,
|
|
onTextInputSubmitted,
|
|
chipsValues,
|
|
onChipRemove,
|
|
theme,
|
|
label = '',
|
|
testID,
|
|
...textInputProps
|
|
}, ref) => {
|
|
const hasValues = textInputValue.length > 0 || (chipsValues?.length ?? 0) > 0;
|
|
|
|
const [focused, setIsFocused] = useState(false);
|
|
const focusedLabel = focused || hasValues;
|
|
|
|
const inputRef = useRef<TextInput>(null);
|
|
|
|
const styles = getStyleSheet(theme);
|
|
|
|
// Exposes the blur, focus and isFocused methods to the parent component
|
|
useImperativeHandle(ref, () => ({
|
|
blur: () => inputRef.current?.blur(),
|
|
focus: () => inputRef.current?.focus(),
|
|
isFocused: () => inputRef.current?.isFocused() || false,
|
|
}), [inputRef]);
|
|
|
|
const onTextInputBlur = useCallback(() => {
|
|
setIsFocused(false);
|
|
}, []);
|
|
|
|
const onTextInputFocus = useCallback(() => {
|
|
setIsFocused(true);
|
|
}, []);
|
|
|
|
const focus = useCallback(() => {
|
|
inputRef.current?.focus();
|
|
}, []);
|
|
|
|
const height = CHIP_HEIGHT * 2.5;
|
|
return (
|
|
<FloatingInputContainer
|
|
hasValue={hasValues}
|
|
defaultHeight={height}
|
|
canGrow={true}
|
|
label={label}
|
|
theme={theme}
|
|
focus={focus}
|
|
focused={focused}
|
|
focusedLabel={focusedLabel}
|
|
editable={true}
|
|
testID={testID || 'floating-text-chips-input'}
|
|
wrapChildren={true}
|
|
>
|
|
{chipsValues && chipsValues?.length > 0 && chipsValues.map((chipValue) => (
|
|
<SelectedChip
|
|
key={chipValue}
|
|
id={chipValue}
|
|
text={chipValue}
|
|
testID={`${testID}.${chipValue}`}
|
|
onRemove={onChipRemove}
|
|
/>
|
|
))}
|
|
<TextInput
|
|
{...textInputProps}
|
|
ref={inputRef}
|
|
testID={testID}
|
|
placeholderTextColor={changeOpacity(theme.centerChannelColor, 0.64)}
|
|
underlineColorAndroid='transparent'
|
|
editable={true}
|
|
multiline={false}
|
|
style={styles.input}
|
|
onFocus={onTextInputFocus}
|
|
onBlur={onTextInputBlur}
|
|
onChangeText={onTextInputChange}
|
|
onSubmitEditing={onTextInputSubmitted}
|
|
value={textInputValue}
|
|
keyboardAppearance={getKeyboardAppearanceFromTheme(theme)}
|
|
textAlignVertical='top'
|
|
/>
|
|
</FloatingInputContainer>
|
|
);
|
|
});
|
|
|
|
FloatingTextChipsInput.displayName = 'FloatingTextChipsInput';
|
|
export default FloatingTextChipsInput;
|