From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../file_attachment_list/file_attachment_list.jsx | 106 --------------------- webapp/components/file_attachment_list/index.js | 40 -------- 2 files changed, 146 deletions(-) delete mode 100644 webapp/components/file_attachment_list/file_attachment_list.jsx delete mode 100644 webapp/components/file_attachment_list/index.js (limited to 'webapp/components/file_attachment_list') diff --git a/webapp/components/file_attachment_list/file_attachment_list.jsx b/webapp/components/file_attachment_list/file_attachment_list.jsx deleted file mode 100644 index a497a0004..000000000 --- a/webapp/components/file_attachment_list/file_attachment_list.jsx +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import ViewImageModal from 'components/view_image.jsx'; -import FileAttachment from 'components/file_attachment.jsx'; -import Constants from 'utils/constants.jsx'; - -import PropTypes from 'prop-types'; - -import React from 'react'; - -export default class FileAttachmentList extends React.Component { - static propTypes = { - - /* - * The post the files are attached to - */ - post: PropTypes.object.isRequired, - - /* - * The number of files attached to the post - */ - fileCount: PropTypes.number.isRequired, - - /* - * Array of metadata for each file attached to the post - */ - fileInfos: PropTypes.arrayOf(PropTypes.object), - - /* - * Set to render compactly - */ - compactDisplay: PropTypes.bool, - - actions: PropTypes.shape({ - - /* - * Function to get file metadata for a post - */ - getMissingFilesForPost: PropTypes.func.isRequired - }).isRequired - } - - constructor(props) { - super(props); - - this.handleImageClick = this.handleImageClick.bind(this); - - this.state = {showPreviewModal: false, startImgIndex: 0}; - } - - componentDidMount() { - if (this.props.post.file_ids || this.props.post.filenames) { - this.props.actions.getMissingFilesForPost(this.props.post.id); - } - } - - handleImageClick(indexClicked) { - this.setState({showPreviewModal: true, startImgIndex: indexClicked}); - } - - render() { - const postFiles = []; - let fileInfos = []; - if (this.props.fileInfos && this.props.fileInfos.length > 0) { - fileInfos = this.props.fileInfos.sort((a, b) => a.create_at - b.create_at); - for (let i = 0; i < Math.min(fileInfos.length, Constants.MAX_DISPLAY_FILES); i++) { - const fileInfo = fileInfos[i]; - - postFiles.push( - - ); - } - } else if (this.props.fileCount > 0) { - for (let i = 0; i < Math.min(this.props.fileCount, Constants.MAX_DISPLAY_FILES); i++) { - // Add a placeholder to avoid pop-in once we get the file infos for this post - postFiles.push( -
- ); - } - } - - return ( -
-
- {postFiles} -
- this.setState({showPreviewModal: false})} - startId={this.state.startImgIndex} - fileInfos={fileInfos} - /> -
- ); - } -} diff --git a/webapp/components/file_attachment_list/index.js b/webapp/components/file_attachment_list/index.js deleted file mode 100644 index 1e901114b..000000000 --- a/webapp/components/file_attachment_list/index.js +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import {connect} from 'react-redux'; -import {bindActionCreators} from 'redux'; -import {getMissingFilesForPost} from 'mattermost-redux/actions/files'; -import {makeGetFilesForPost} from 'mattermost-redux/selectors/entities/files'; - -import FileAttachmentList from './file_attachment_list.jsx'; - -function makeMapStateToProps() { - const selectFilesForPost = makeGetFilesForPost(); - return function mapStateToProps(state, ownProps) { - const postId = ownProps.post ? ownProps.post.id : ''; - const fileInfos = selectFilesForPost(state, postId); - - let fileCount = 0; - if (ownProps.post.file_ids) { - fileCount = ownProps.post.file_ids.length; - } else if (ownProps.post.filenames) { - fileCount = ownProps.post.filenames.length; - } - - return { - ...ownProps, - fileInfos, - fileCount - }; - }; -} - -function mapDispatchToProps(dispatch) { - return { - actions: bindActionCreators({ - getMissingFilesForPost - }, dispatch) - }; -} - -export default connect(makeMapStateToProps, mapDispatchToProps)(FileAttachmentList); -- cgit v1.2.3-1-g7c22