* MM-18464 Updated Dialog Items to support isLandscape for SafeArea View * MM-18464 Updated SafeAreaView Updated Autoselector Component * MM-18464 Resolved Issues Resolved issues for MM-18464 * MM-18464 Resolved Snapshot Resolved snapshots
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import {View} from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Markdown from 'app/components/markdown';
|
|
|
|
import {getMarkdownTextStyles, getMarkdownBlockStyles} from 'app/utils/markdown';
|
|
import {makeStyleSheetFromTheme} from 'app/utils/theme';
|
|
import {paddingHorizontal as padding} from 'app/components/safe_area_view/iphone_x_spacing';
|
|
|
|
export default class DialogIntroductionText extends PureComponent {
|
|
static propTypes = {
|
|
value: PropTypes.string.isRequired,
|
|
theme: PropTypes.object.isRequired,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
value,
|
|
theme,
|
|
isLandscape,
|
|
} = this.props;
|
|
|
|
if (value) {
|
|
const style = getStyleFromTheme(theme);
|
|
const blockStyles = getMarkdownBlockStyles(theme);
|
|
const textStyles = getMarkdownTextStyles(theme);
|
|
|
|
return (
|
|
<View style={[style.introductionTextView, padding(isLandscape)]}>
|
|
<Markdown
|
|
baseTextStyle={style.introductionText}
|
|
textStyles={textStyles}
|
|
blockStyles={blockStyles}
|
|
value={value}
|
|
disableHashtags={true}
|
|
disableAtMentions={true}
|
|
disableChannelLink={true}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
introductionTextView: {
|
|
marginHorizontal: 15,
|
|
},
|
|
introductionText: {
|
|
color: theme.centerChannelColor,
|
|
},
|
|
};
|
|
});
|