mattermost-mobile/app/components/post/post.js
Chris Duarte 3b7a6df617 PLT-5530 Render placeholder icons + metadata for file attachments in posts list (#249)
* Add icons for file types

* Compress image files for file type icons

* Add constants for file types

* Add utils for file metadata

* Add actions & reducers for fetching file attachments

* Render file attachments in posts

* Add reducers for handling files requests

* Refactor getFileType in file utils

* Refactor getFileIconPath in file utils

* Refactor getFormattedFileSize in file utils

* Trim trailing whitespace in getTruncatedFilename

* Style file attachment metadata

* Remove entity store reducer for files fetch failure

* Change filesForPost to fileIdsForPost in files store

* Use a selector for getFilesForPost

* Memoize getFilesForPost selector

* Dispatch postId with getFilesForPost

* Add test for getFilesForPost

* Upload seed file in getFilesForPost test

* Display correct icon for image attachments

* Fix reducers for receiving files for post

Expect response data to be array not object

* Style attachment post

* Merge headers (defaults + opts) in Client.doFetch

* Upload file as FormData

* Use form-data lib instead of built-in polyfill

* Associate file with post in getFilesForPost test

* Improve assertions in getFilesForPost test

* Check for createPost failure in getFilesForPost test

* Use correct post id in getFilesForPost test

* Use client not action to create post in getFilesForPost test

* Fix file upload in getFilesForPost test

* Add assertion for name of uploaded file

* Update attachment post style

* Fix spelling of loadFilesForPostIfNecessary

* Remove eslint-disable no-magic-numbers from file_utils.js

* Remove unused index prop from FileAttachment

* Clarify code for merging headers in Client.getOptions

* Dynamically truncate file attachment names

* Extract component for FileAttachmentIcon

* Use white bg for FileAttachmentIcon to match webapp styles

* Match webapp styles for file attachment borders

* Move file icon path lookup to FileAttachmentIcon

* Use more logical ordering for file type lookup
2017-02-17 17:40:40 -05:00

310 lines
9.6 KiB
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import {
Image,
StyleSheet,
Text,
TouchableHighlight,
View
} from 'react-native';
import FormattedText from 'app/components/formatted_text';
import FormattedTime from 'app/components/formatted_time';
import MattermostIcon from 'app/components/mattermost_icon';
import ProfilePicture from 'app/components/profile_picture';
import FileAttachmentList from 'app/components/file_attachment_list/file_attachment_list_container';
import {makeStyleSheetFromTheme} from 'app/utils/theme';
import {isSystemMessage} from 'service/utils/post_utils.js';
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return StyleSheet.create({
container: {
backgroundColor: theme.centerChannelBg,
flexDirection: 'row'
},
rightColumn: {
flex: 1,
flexDirection: 'column',
marginRight: 12
},
postInfoContainer: {
alignItems: 'center',
flexDirection: 'row',
marginTop: 10
},
messageContainerWithReplyBar: {
flexDirection: 'row'
},
profilePictureContainer: {
marginBottom: 10,
marginRight: 10,
marginLeft: 12,
marginTop: 10
},
replyBar: {
backgroundColor: theme.centerChannelColor,
opacity: 0.1,
marginRight: 10,
width: 3,
flexBasis: 3
},
replyBarFirst: {
marginTop: 10
},
replyBarLast: {
marginBottom: 10
},
displayName: {
fontSize: 14,
fontWeight: '600',
marginRight: 10,
color: theme.centerChannelColor
},
time: {
color: theme.centerChannelColor,
fontSize: 12,
opacity: 0.5
},
commentedOn: {
color: theme.centerChannelColor,
lineHeight: 21
},
message: {
color: theme.centerChannelColor,
fontSize: 14,
lineHeight: 21,
marginBottom: 10
},
systemMessage: {
opacity: 0.5
},
webhookMessage: {
color: theme.centerChannelColor,
fontSize: 16,
fontWeight: '600'
}
});
});
export default class Post extends React.Component {
static propTypes = {
style: React.PropTypes.oneOfType([React.PropTypes.object, React.PropTypes.number]),
post: React.PropTypes.object.isRequired,
user: React.PropTypes.object,
displayName: React.PropTypes.string,
renderReplies: React.PropTypes.bool,
isFirstReply: React.PropTypes.bool,
isLastReply: React.PropTypes.bool,
commentedOnPost: React.PropTypes.object,
commentedOnDisplayName: React.PropTypes.string,
theme: React.PropTypes.object.isRequired,
onPress: React.PropTypes.func
};
handlePress = () => {
if (this.props.onPress) {
this.props.onPress(this.props.post);
}
}
renderCommentedOnMessage = (style) => {
if (!this.props.renderReplies || !this.props.commentedOnPost) {
return null;
}
const displayName = this.props.commentedOnDisplayName;
let name;
if (displayName) {
name = displayName;
} else {
name = (
<FormattedText
id='channel_loader.someone'
defaultMessage='Someone'
/>
);
}
let apostrophe;
if (displayName && displayName.slice(-1) === 's') {
apostrophe = '\'';
} else {
apostrophe = '\'s';
}
return (
<FormattedText
id='post_body.commentedOn'
defaultMessage='Commented on {name}{apostrophe} message: '
values={{
name,
apostrophe
}}
style={style.commentedOn}
/>
);
}
renderReplyBar = (style) => {
if (!this.props.renderReplies || !this.props.post.root_id) {
return null;
}
const replyBarStyle = [style.replyBar];
if (this.props.isFirstReply && !this.props.commentedOnPost) {
replyBarStyle.push(style.replyBarFirst);
}
if (this.props.isLastReply) {
replyBarStyle.push(style.replyBarLast);
}
return <View style={replyBarStyle}/>;
}
renderFileAttachments() {
const {post} = this.props;
const fileIds = post.file_ids || [];
let attachments;
if (fileIds.length > 0) {
attachments = (<FileAttachmentList post={post}/>);
}
return attachments;
}
render() {
const style = getStyleSheet(this.props.theme);
const PROFILE_PICTURE_SIZE = 32;
let profilePicture;
let displayName;
let messageStyle;
if (isSystemMessage(this.props.post)) {
profilePicture = (
<View style={style.profilePicture}>
<MattermostIcon
color={this.props.theme.centerChannelColor}
height={PROFILE_PICTURE_SIZE}
width={PROFILE_PICTURE_SIZE}
/>
</View>
);
displayName = (
<FormattedText
id='post_info.system'
defaultMessage='System'
/>
);
messageStyle = [style.message, style.systemMessage];
} else if (this.props.post.props && this.props.post.props.from_webhook) {
profilePicture = (
<View style={style.profilePicture}>
<Image
source={{uri: this.props.post.props.override_icon_url}}
style={{
height: PROFILE_PICTURE_SIZE,
width: PROFILE_PICTURE_SIZE,
borderRadius: PROFILE_PICTURE_SIZE / 2
}}
/>
</View>
);
displayName = this.props.post.props.override_username;
messageStyle = [style.message, style.webhookMessage];
} else {
profilePicture = (
<ProfilePicture
user={this.props.user}
size={PROFILE_PICTURE_SIZE}
/>
);
if (this.props.displayName) {
displayName = this.props.displayName;
} else {
displayName = (
<FormattedText
id='channel_loader.someone'
defaultMessage='Someone'
/>
);
}
messageStyle = style.message;
}
let contents;
if (this.props.commentedOnPost) {
contents = (
<View style={[style.container, this.props.style]}>
<View style={style.profilePictureContainer}>
{profilePicture}
</View>
<View style={style.rightColumn}>
<View style={style.postInfoContainer}>
<Text style={style.displayName}>
{displayName}
</Text>
<Text style={style.time}>
<FormattedTime value={this.props.post.create_at}/>
</Text>
</View>
<View>
{this.renderCommentedOnMessage(style)}
</View>
<View style={style.messageContainerWithReplyBar}>
{this.renderReplyBar(style)}
{this.renderFileAttachments()}
<Text style={messageStyle}>
{this.props.post.message}
</Text>
</View>
</View>
</View>
);
} else {
contents = (
<View style={[style.container, this.props.style]}>
<View style={style.profilePictureContainer}>
{profilePicture}
</View>
{this.renderReplyBar(style)}
<View style={style.rightColumn}>
<View style={style.postInfoContainer}>
<Text style={style.displayName}>
{displayName}
</Text>
<Text style={style.time}>
<FormattedTime value={this.props.post.create_at}/>
</Text>
</View>
<View style={style.messageContainer}>
{this.renderFileAttachments()}
<Text style={messageStyle}>
{this.props.post.message}
</Text>
</View>
</View>
</View>
);
}
if (this.props.onPress) {
return (
<TouchableHighlight onPress={this.handlePress}>
{contents}
</TouchableHighlight>
);
}
return contents;
}
}