// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import {connect} from 'react-redux'; import {getTheme} from 'mattermost-redux/selectors/entities/preferences'; import {getDimensions} from 'app/selectors/device'; import {checkForFileUploadingInChannel} from 'app/selectors/file'; import FileUploadPreview from './file_upload_preview'; function mapStateToProps(state, ownProps) { const {deviceHeight} = getDimensions(state); return { channelIsLoading: state.views.channel.loading, deviceHeight, filesUploadingForCurrentChannel: checkForFileUploadingInChannel(state, ownProps.channelId, ownProps.rootId), theme: getTheme(state), }; } export default connect(mapStateToProps)(FileUploadPreview);