mattermost-mobile/app/components/post_draft/read_only/index.tsx
Joseph Baylon 5f6fd6df7a
MM-30286 Detox/E2E: Add e2e test for MM-T3236 and added basic unit tests (#4969)
* MM-30286 Detox/E2E: Add e2e test for MM-T3236

* Fix more testID hierarchies

* Fix typo

* Fix failing test

* Remove extra lines

* Updated to use string interpolation

* Update channels list element query

* Updated channel item unit test to be more consistent

* Fix error text testID hierarchies; fix edit channel info testIDs

* Fix snap file

* Fix line return
2020-11-24 16:58:09 +08:00

70 lines
No EOL
1.9 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {ReactNode} from 'react';
import {View} from 'react-native';
import {SafeAreaView} from 'react-native-safe-area-context';
import CompassIcon from '@components/compass_icon';
import FormattedText from '@components/formatted_text';
import type {Theme} from '@mm-redux/types/preferences';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
interface ReadOnlyProps {
testID?: string;
theme: Theme;
}
const ReadOnlyChannnel = ({testID, theme}: ReadOnlyProps): ReactNode => {
const style = getStyle(theme);
return (
<SafeAreaView
edges={['bottom']}
style={style.background}
>
<View
testID={testID}
style={style.container}
>
<CompassIcon
name='glasses'
style={style.icon}
color={theme.centerChannelColor}
/>
<FormattedText
id='mobile.create_post.read_only'
defaultMessage='This channel is read-only.'
style={style.text}
/>
</View>
</SafeAreaView>
);
};
const getStyle = makeStyleSheetFromTheme((theme: Theme) => ({
background: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.04),
},
container: {
alignItems: 'center',
borderTopColor: changeOpacity(theme.centerChannelColor, 0.20),
borderTopWidth: 1,
flexDirection: 'row',
height: 50,
paddingHorizontal: 12,
},
icon: {
fontSize: 20,
lineHeight: 22,
opacity: 0.56,
},
text: {
color: theme.centerChannelColor,
fontSize: 15,
lineHeight: 20,
marginLeft: 9,
opacity: 0.56,
},
}));
export default ReadOnlyChannnel;