* upgrade reanimated * update devDependencies * upgrade react-intl * update react-native and some dependencies * update react-native-permissions * update RN * use Share sheet for Report a problem * update Sentry * remove step to downloadWebRTC * update detox deps * feedback review
72 lines
1.9 KiB
TypeScript
72 lines
1.9 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 {type Edge, SafeAreaView} from 'react-native-safe-area-context';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import FormattedText from '@components/formatted_text';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
interface ReadOnlyProps {
|
|
testID?: string;
|
|
}
|
|
|
|
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,
|
|
},
|
|
}));
|
|
|
|
const edges: Edge[] = ['bottom'];
|
|
|
|
const ReadOnlyChannnel = ({testID}: ReadOnlyProps) => {
|
|
const theme = useTheme();
|
|
const style = getStyle(theme);
|
|
return (
|
|
<SafeAreaView
|
|
edges={edges}
|
|
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>
|
|
);
|
|
};
|
|
|
|
export default ReadOnlyChannnel;
|