// 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 ( ); } return null; } } const getStyleFromTheme = makeStyleSheetFromTheme((theme) => { return { introductionTextView: { marginHorizontal: 15, }, introductionText: { color: theme.centerChannelColor, }, }; });