mattermost-mobile/app/components/autocomplete/autocomplete_section_header.tsx
Daniel Espino García a8ee3a1b5a
Fix and unify channel and user list items (#7175)
* Fix channel and user list items

* Fixes on members and create a dm lists

* Fix tutorial and ipad

* Fix test

* Address feedback

* Several fixes on Android

* Fix tests

* Address feedback

* Add more non breaking strings

---------

Co-authored-by: Daniel Espino <danielespino@MacBook-Pro-de-Daniel.local>
2023-04-19 10:13:14 +02:00

72 lines
2 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';
import {typography} from '@utils/typography';
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
return {
section: {
flexDirection: 'row',
},
sectionText: {
...typography('Body', 75, 'SemiBold'),
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;