forked from Ivasoft/mattermost-mobile
* Group autocomplete -
* Styling fixes
* Loading indicator
* Displays group name and display name
* PR Feedback
* Cleans up styling
* Adds constraints to group searches
* Channel Team before current team
* PR Feedback; displayName > name, model observable
* PR Feedback; rename fetch + model observable
* PR Feedback: return {error}, spelling fix
* PR Feedback: Add forceLogoutIfNecessary to fetch calls
* Remove doubled up logout
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useMemo} from 'react';
|
|
import {ActivityIndicator, View} from 'react-native';
|
|
import {useSafeAreaInsets} from 'react-native-safe-area-context';
|
|
|
|
import FormattedText from '@components/formatted_text';
|
|
import {useTheme} from '@context/theme';
|
|
import {makeStyleSheetFromTheme, changeOpacity} from '@utils/theme';
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
section: {
|
|
flexDirection: 'row',
|
|
paddingHorizontal: 16,
|
|
},
|
|
sectionText: {
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
textTransform: 'uppercase',
|
|
color: changeOpacity(theme.centerChannelColor, 0.56),
|
|
paddingTop: 16,
|
|
paddingBottom: 8,
|
|
flex: 1,
|
|
},
|
|
sectionWrapper: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
},
|
|
loading: {paddingTop: 16},
|
|
};
|
|
});
|
|
|
|
type Props = {
|
|
defaultMessage: string;
|
|
id: string;
|
|
loading: boolean;
|
|
}
|
|
|
|
const AutocompleteSectionHeader = ({
|
|
defaultMessage,
|
|
id,
|
|
loading,
|
|
}: Props) => {
|
|
const insets = useSafeAreaInsets();
|
|
const theme = useTheme();
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
const sectionStyles = useMemo(() => {
|
|
return [style.section, {marginLeft: insets.left, marginRight: insets.right}];
|
|
}, [style, insets]);
|
|
|
|
return (
|
|
<View style={style.sectionWrapper}>
|
|
<View style={sectionStyles}>
|
|
<FormattedText
|
|
id={id}
|
|
defaultMessage={defaultMessage}
|
|
style={style.sectionText}
|
|
/>
|
|
{loading &&
|
|
<ActivityIndicator
|
|
size='small'
|
|
style={style.loading}
|
|
color={changeOpacity(theme.centerChannelColor, 0.56)}
|
|
/>
|
|
}
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default AutocompleteSectionHeader;
|