* Initial commit post input * Fix message posting, add create direct channel and minor fixes * Fix "is typing" and "react to last post" behaviour * Some reordering, better handling of upload error, properly clear draft on send message, and fix minor progress bar misbehavior * Add keyboard listener for shift-enter, add selection between video or photo while attaching, add alert when trying to attach more than you are allowed, add paste functionality, minor fixes and reordering * Add library patch * Fix lint * Address feedback * Address feedback * Add missing negation * Check for group name and fix typo on draft comparisons * Address feedback * Address feedback * Address feedback * Address feedback * Fix several bugs * Remove @app imports * Address feedback * fix post list & post draft layout on iOS * Fix post draft cursor position * Fix file upload route * Allow to pick multiple images using the image picker * accurately get the channel member count * remove android cursor workaround * Remove local const INPUT_LINE_HEIGHT * move getPlaceHolder out of the component * use substring instead of legacy substr for hardward keyboard * Move onAppStateChange above the effects * Fix camera action bottom sheet * no need to memo SendButton * properly use memberCount in sender handler * Refactor how to get memberCount * Fix queryRecentPostsInThread * Remove unused isDirectChannelVisible && isGroupChannelVisible util functions * rename errorBadUser to errorUnkownUser * extract localized strings * use ClientErrorProps instead of ClientError * Minor improvements Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {View} from 'react-native';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import ErrorTextComponent from '@components/error_text';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type DisplayErrorProps = {
|
|
error: Partial<ClientErrorProps> | string;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
errorContainer: {
|
|
backgroundColor: changeOpacity(theme.errorTextColor, 0.08),
|
|
width: '100%',
|
|
maxHeight: 48,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
},
|
|
text: {
|
|
...typography('Heading', 100),
|
|
color: theme.centerChannelColor,
|
|
},
|
|
icon: {
|
|
color: changeOpacity(theme.dndIndicator, 0.64),
|
|
...typography('Heading', 300),
|
|
marginRight: 9,
|
|
},
|
|
};
|
|
});
|
|
|
|
const ProfileError = ({error}: DisplayErrorProps) => {
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
|
|
return (
|
|
<View style={style.errorContainer}>
|
|
<CompassIcon
|
|
style={style.icon}
|
|
size={18}
|
|
name='alert-outline'
|
|
/>
|
|
<ErrorTextComponent
|
|
theme={theme}
|
|
testID='edit_profile.error.text'
|
|
error={error}
|
|
textStyle={style.text}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default ProfileError;
|