// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {StyleProp, TextStyle, View, ViewStyle} from 'react-native'; import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme'; import EmbedSubBindings from './embedded_sub_bindings'; import EmbedText from './embed_text'; import EmbedTitle from './embed_title'; import {Theme} from '@mm-redux/types/preferences'; import {AppBinding} from '@mm-redux/types/apps'; import {copyAndFillBindings} from '@utils/apps'; type Props = { embed: AppBinding, baseTextStyle?: StyleProp, blockStyles?: StyleProp[], deviceHeight: number, postId: string, onPermalinkPress?: () => void, theme: Theme, textStyles?: StyleProp[], } export default function EmbeddedBinding(props: Props) { const { embed, baseTextStyle, blockStyles, deviceHeight, onPermalinkPress, postId, textStyles, theme, } = props; const style = getStyleSheet(theme); const bindings = copyAndFillBindings(embed)?.bindings; return ( <> ); } const getStyleSheet = makeStyleSheetFromTheme((theme:Theme) => { return { container: { borderBottomColor: changeOpacity(theme.centerChannelColor, 0.15), borderRightColor: changeOpacity(theme.centerChannelColor, 0.15), borderTopColor: changeOpacity(theme.centerChannelColor, 0.15), borderBottomWidth: 1, borderRightWidth: 1, borderTopWidth: 1, marginTop: 5, padding: 12, }, border: { borderLeftColor: changeOpacity(theme.linkColor, 0.6), borderLeftWidth: 3, }, }; });