forked from Ivasoft/mattermost-mobile
69 lines
2.1 KiB
JavaScript
69 lines
2.1 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 CustomPropTypes from 'app/constants/custom_prop_types';
|
|
|
|
import MessageAttachment from './message_attachment';
|
|
|
|
export default class MessageAttachments extends PureComponent {
|
|
static propTypes = {
|
|
attachments: PropTypes.array.isRequired,
|
|
baseTextStyle: CustomPropTypes.Style,
|
|
blockStyles: PropTypes.object,
|
|
deviceHeight: PropTypes.number.isRequired,
|
|
deviceWidth: PropTypes.number.isRequired,
|
|
postId: PropTypes.string.isRequired,
|
|
metadata: PropTypes.object,
|
|
onHashtagPress: PropTypes.func,
|
|
onPermalinkPress: PropTypes.func,
|
|
theme: PropTypes.object,
|
|
textStyles: PropTypes.object,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
attachments,
|
|
baseTextStyle,
|
|
blockStyles,
|
|
deviceHeight,
|
|
deviceWidth,
|
|
metadata,
|
|
onHashtagPress,
|
|
onPermalinkPress,
|
|
postId,
|
|
theme,
|
|
textStyles,
|
|
} = this.props;
|
|
const content = [];
|
|
|
|
attachments.forEach((attachment, i) => {
|
|
content.push(
|
|
<MessageAttachment
|
|
attachment={attachment}
|
|
baseTextStyle={baseTextStyle}
|
|
blockStyles={blockStyles}
|
|
deviceHeight={deviceHeight}
|
|
deviceWidth={deviceWidth}
|
|
key={'att_' + i}
|
|
metadata={metadata}
|
|
onHashtagPress={onHashtagPress}
|
|
onPermalinkPress={onPermalinkPress}
|
|
postId={postId}
|
|
theme={theme}
|
|
textStyles={textStyles}
|
|
/>,
|
|
);
|
|
});
|
|
|
|
return (
|
|
<View style={{flex: 1, flexDirection: 'column'}}>
|
|
{content}
|
|
</View>
|
|
);
|
|
}
|
|
}
|