// 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 Markdown from '@components/markdown'; import {useTheme} from '@context/theme'; import {getMarkdownBlockStyles, getMarkdownTextStyles} from '@utils/markdown'; import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme'; const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { return { helpTextContainer: { marginHorizontal: 15, marginTop: 10, }, helpText: { fontSize: 12, color: changeOpacity(theme.centerChannelColor, 0.5), }, errorTextContainer: { marginHorizontal: 15, marginVertical: 10, }, errorText: { fontSize: 12, color: theme.errorTextColor, }, }; }); type Props = { disabled: boolean; disabledText?: string; helpText?: string; errorText?: string; } function Footer({ disabled, disabledText, helpText, errorText, }: Props) { const theme = useTheme(); const style = getStyleSheet(theme); const textStyles = getMarkdownTextStyles(theme); const blockStyles = getMarkdownBlockStyles(theme); return ( <> {disabled && Boolean(disabledText) && ( )} {Boolean(helpText) && ( )} {Boolean(errorText) && ( )} ); } export default Footer;