import React from 'react'; import { StyleSheet, View, PermissionsAndroid } from 'react-native'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import CameraRoll from '@react-native-community/cameraroll'; import * as mime from 'react-native-mime-types'; import { FileSystem } from 'react-native-unimodules'; import { Video } from 'expo-av'; import SHA256 from 'js-sha256'; import { LISTENER } from '../containers/Toast'; import EventEmitter from '../utils/events'; import I18n from '../i18n'; import { withTheme } from '../theme'; import ImageViewer from '../presentation/ImageViewer'; import { themedHeader } from '../utils/navigation'; import { themes } from '../constants/colors'; import { formatAttachmentUrl } from '../lib/utils'; import RCActivityIndicator from '../containers/ActivityIndicator'; import { SaveButton, CloseModalButton } from '../containers/HeaderButton'; import { isAndroid } from '../utils/deviceInfo'; import { getUserSelector } from '../selectors/login'; const styles = StyleSheet.create({ container: { flex: 1 } }); class AttachmentView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => { const { theme } = screenProps; const attachment = navigation.getParam('attachment'); const from = navigation.getParam('from'); const handleSave = navigation.getParam('handleSave', () => {}); const { title, video_url } = attachment; const options = { title, ...themedHeader(theme), headerRight: !video_url ? : null }; if (from !== 'MessagesView') { options.gesturesEnabled = false; options.headerLeft = ; } return options; } static propTypes = { navigation: PropTypes.object, theme: PropTypes.string, baseUrl: PropTypes.string, user: PropTypes.shape({ id: PropTypes.string, token: PropTypes.string }) } constructor(props) { super(props); const attachment = props.navigation.getParam('attachment'); this.state = { attachment, loading: true }; } componentDidMount() { const { navigation } = this.props; navigation.setParams({ handleSave: this.handleSave }); this.willBlurListener = navigation.addListener('willBlur', () => { if (this.videoRef && this.videoRef.stopAsync) { this.videoRef.stopAsync(); } }); } componentWillUnmount() { if (this.willBlurListener && this.willBlurListener.remove) { this.willBlurListener.remove(); } } getVideoRef = ref => this.videoRef = ref; handleSave = async() => { const { attachment } = this.state; const { user, baseUrl } = this.props; const { image_url, image_type } = attachment; const img = formatAttachmentUrl(image_url, user.id, user.token, baseUrl); if (isAndroid) { const rationale = { title: I18n.t('Write_External_Permission'), message: I18n.t('Write_External_Permission_Message') }; const result = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE, rationale); if (!(result || result === PermissionsAndroid.RESULTS.GRANTED)) { return; } } this.setState({ loading: true }); try { const extension = `.${ mime.extension(image_type) || 'jpg' }`; const file = `${ FileSystem.documentDirectory + SHA256(image_url) + extension }`; const { uri } = await FileSystem.downloadAsync(img, file); await CameraRoll.save(uri, { album: 'Rocket.Chat' }); EventEmitter.emit(LISTENER, { message: I18n.t('saved_to_gallery') }); } catch (e) { EventEmitter.emit(LISTENER, { message: I18n.t('error-save-image') }); } this.setState({ loading: false }); }; renderImage = uri => ( this.setState({ loading: false })} /> ); renderVideo = uri => (