Rocket.Chat.ReactNative/app/containers/message/Video.tsx

202 lines
5.7 KiB
TypeScript
Raw Normal View History

import React, { useContext, useEffect, useRef, useState } from 'react';
import { StyleProp, StyleSheet, TextStyle, View, Text } from 'react-native';
import { dequal } from 'dequal';
import Touchable from './Touchable';
import Markdown from '../markdown';
import { isIOS } from '../../lib/methods/helpers';
import { CustomIcon } from '../CustomIcon';
import { themes } from '../../lib/constants';
import MessageContext from './Context';
import { fileDownload } from './helpers/fileDownload';
import EventEmitter from '../../lib/methods/helpers/events';
import { LISTENER } from '../Toast';
import I18n from '../../i18n';
import { IAttachment } from '../../definitions/IAttachment';
import RCActivityIndicator from '../ActivityIndicator';
import { TGetCustomEmoji } from '../../definitions/IEmoji';
import { useTheme } from '../../theme';
import { formatAttachmentUrl } from '../../lib/methods/helpers/formatAttachmentUrl';
import {
LOCAL_DOCUMENT_DIRECTORY,
cancelDownload,
downloadMediaFile,
isDownloadActive,
searchMediaFileAsync
} from '../../lib/methods/handleMediaDownload';
2023-06-07 21:15:37 +00:00
import { fetchAutoDownloadEnabled } from '../../lib/methods/autoDownloadPreference';
import sharedStyles from '../../views/Styles';
const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...(isIOS ? [] : ['video/3gp', 'video/mkv'])];
const isTypeSupported = (type: string) => SUPPORTED_TYPES.indexOf(type) !== -1;
const styles = StyleSheet.create({
button: {
flex: 1,
borderRadius: 4,
height: 150,
marginBottom: 6,
alignItems: 'center',
justifyContent: 'center'
},
cancelContainer: {
position: 'absolute',
top: 8,
right: 8
},
text: {
...sharedStyles.textRegular,
fontSize: 12
}
});
interface IMessageVideo {
file: IAttachment;
showAttachment?: (file: IAttachment) => void;
getCustomEmoji: TGetCustomEmoji;
2022-03-21 20:44:06 +00:00
style?: StyleProp<TextStyle>[];
isReply?: boolean;
}
const DownloadIndicator = ({ handleCancelDownload }: { handleCancelDownload(): void }) => {
const { colors } = useTheme();
return (
<>
<View style={styles.cancelContainer}>
<Touchable background={Touchable.Ripple(colors.bannerBackground)} onPress={handleCancelDownload}>
<Text style={[styles.text, { color: colors.auxiliaryText }]}>{I18n.t('Cancel')}</Text>
</Touchable>
</View>
<RCActivityIndicator size={48} />
</>
);
};
const Video = React.memo(
2023-06-07 21:15:37 +00:00
({ file, showAttachment, getCustomEmoji, style, isReply }: IMessageVideo) => {
const [videoCached, setVideoCached] = useState(file);
const [loading, setLoading] = useState(false);
const { baseUrl, user } = useContext(MessageContext);
const { theme } = useTheme();
const filePath = useRef('');
const video = formatAttachmentUrl(file.video_url, user.id, user.token, baseUrl);
useEffect(() => {
2023-06-07 21:15:37 +00:00
const handleVideoSearchAndDownload = async () => {
if (video) {
const cachedVideoResult = await searchMediaFileAsync({
2023-06-07 21:15:37 +00:00
type: 'video',
mimeType: file.video_type,
2023-06-07 21:15:37 +00:00
urlToCache: video
});
filePath.current = cachedVideoResult.filePath;
2023-06-07 21:15:37 +00:00
const downloadActive = isDownloadActive('video', video);
if (cachedVideoResult.file?.exists) {
2023-06-07 21:15:37 +00:00
setVideoCached(prev => ({
...prev,
video_url: cachedVideoResult.file?.uri
}));
if (downloadActive) {
2023-06-07 21:15:37 +00:00
cancelDownload('video', video);
}
return;
}
2023-06-26 23:33:24 +00:00
if (isReply) return;
if (downloadActive) return setLoading(true);
2023-06-07 21:15:37 +00:00
await handleAutoDownload();
}
};
2023-06-07 21:15:37 +00:00
handleVideoSearchAndDownload();
}, []);
if (!baseUrl) {
return null;
}
2023-06-07 21:15:37 +00:00
const handleAutoDownload = async () => {
const isAutoDownloadEnabled = fetchAutoDownloadEnabled('videoPreferenceDownload');
2023-06-07 21:15:37 +00:00
if (isAutoDownloadEnabled) {
await handleDownload();
}
};
const handleDownload = async () => {
setLoading(true);
2023-05-19 14:35:36 +00:00
try {
const videoUri = await downloadMediaFile({
downloadUrl: video,
2023-06-07 21:15:37 +00:00
mediaType: 'video',
2023-05-19 14:35:36 +00:00
path: filePath.current
});
2023-06-07 21:15:37 +00:00
setVideoCached(prev => ({
...prev,
2023-05-19 14:35:36 +00:00
video_url: videoUri
}));
2023-05-19 14:35:36 +00:00
} finally {
setLoading(false);
}
};
const onPress = async () => {
if (file.video_type && isTypeSupported(file.video_type) && showAttachment) {
if (LOCAL_DOCUMENT_DIRECTORY && !videoCached.video_url?.startsWith(LOCAL_DOCUMENT_DIRECTORY) && !loading) {
// Keep the video downloading while showing the video buffering
handleDownload();
}
2023-06-07 21:15:37 +00:00
return showAttachment(videoCached);
}
if (!isIOS && file.video_url) {
await downloadVideoToGallery(video);
return;
}
EventEmitter.emit(LISTENER, { message: I18n.t('Unsupported_format') });
};
const handleCancelDownload = () => {
if (loading) {
2023-06-07 21:15:37 +00:00
cancelDownload('video', video);
return setLoading(false);
}
};
const downloadVideoToGallery = async (uri: string) => {
setLoading(true);
const fileDownloaded = await fileDownload(uri, file);
setLoading(false);
if (fileDownloaded) {
EventEmitter.emit(LISTENER, { message: I18n.t('saved_to_gallery') });
return;
}
EventEmitter.emit(LISTENER, { message: I18n.t('error-save-video') });
};
return (
<>
<Markdown
msg={file.description}
username={user.username}
getCustomEmoji={getCustomEmoji}
2022-03-21 20:44:06 +00:00
style={[isReply && style]}
theme={theme}
/>
2022-03-21 20:44:06 +00:00
<Touchable
disabled={isReply}
onPress={onPress}
style={[styles.button, { backgroundColor: themes[theme].videoBackground }]}
2023-06-07 21:15:37 +00:00
background={Touchable.Ripple(themes[theme].bannerBackground)}
>
{loading ? (
<DownloadIndicator handleCancelDownload={handleCancelDownload} />
) : (
<CustomIcon name='play-filled' size={54} color={themes[theme].buttonText} />
)}
2022-03-21 20:44:06 +00:00
</Touchable>
</>
);
},
(prevProps, nextProps) => dequal(prevProps.file, nextProps.file)
);
export default Video;