* MM-64415 Attachment style updated for draft and Edit post screen * Minor * constants * Addressed Review comments * UX review comments * Error state changes * Fix the style issue for retry state on the attachment * Fix some styling * Fix the space extra char issue in post
295 lines
9.5 KiB
TypeScript
295 lines
9.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useEffect, useMemo, useRef, useState} from 'react';
|
|
import {TouchableWithoutFeedback, View, Text} from 'react-native';
|
|
import Animated from 'react-native-reanimated';
|
|
|
|
import {updateDraftFile} from '@actions/local/draft';
|
|
import FileIcon from '@components/files/file_icon';
|
|
import ImageFile from '@components/files/image_file';
|
|
import ProgressBar from '@components/progress_bar';
|
|
import {useEditPost} from '@context/edit_post';
|
|
import {useServerUrl} from '@context/server';
|
|
import {useTheme} from '@context/theme';
|
|
import useDidUpdate from '@hooks/did_update';
|
|
import {useGalleryItem} from '@hooks/gallery';
|
|
import DraftEditPostUploadManager from '@managers/draft_upload_manager';
|
|
import {isImage, getFormattedFileSize} from '@utils/file';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
import UploadRemove from './upload_remove';
|
|
import UploadRetry from './upload_retry';
|
|
|
|
type Props = {
|
|
channelId: string;
|
|
galleryIdentifier: string;
|
|
index: number;
|
|
file: FileInfo;
|
|
openGallery: (file: FileInfo) => void;
|
|
rootId: string;
|
|
}
|
|
|
|
// Constants for dimensions
|
|
const DIMENSIONS = {
|
|
THUMBNAIL_SIZE: 64,
|
|
ICON_SIZE: 48,
|
|
FILE_CONTAINER_WIDTH: 264,
|
|
FILE_CONTAINER_HEIGHT: 64,
|
|
} as const;
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
preview: {
|
|
paddingTop: 5,
|
|
marginLeft: 12,
|
|
},
|
|
previewContainer: {
|
|
borderRadius: 4,
|
|
borderWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.16),
|
|
backgroundColor: theme.centerChannelBg,
|
|
alignItems: 'center',
|
|
position: 'relative',
|
|
},
|
|
imageOnlyContainer: {
|
|
width: DIMENSIONS.THUMBNAIL_SIZE,
|
|
height: DIMENSIONS.THUMBNAIL_SIZE,
|
|
padding: 0,
|
|
},
|
|
fileWithInfoContainer: {
|
|
width: DIMENSIONS.FILE_CONTAINER_WIDTH,
|
|
height: DIMENSIONS.FILE_CONTAINER_HEIGHT,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
flexShrink: 0,
|
|
gap: 8,
|
|
paddingVertical: 12,
|
|
paddingLeft: 8,
|
|
paddingRight: 16,
|
|
},
|
|
iconContainer: {
|
|
width: DIMENSIONS.ICON_SIZE,
|
|
height: DIMENSIONS.ICON_SIZE,
|
|
borderRadius: 4,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
imageContainer: {
|
|
width: DIMENSIONS.THUMBNAIL_SIZE,
|
|
height: DIMENSIONS.THUMBNAIL_SIZE,
|
|
borderRadius: 4,
|
|
marginRight: 8,
|
|
overflow: 'hidden',
|
|
borderWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.16),
|
|
shadowColor: '#000000',
|
|
shadowOffset: {
|
|
width: 0,
|
|
height: 2,
|
|
},
|
|
shadowOpacity: 0.08,
|
|
shadowRadius: 3,
|
|
elevation: 1,
|
|
},
|
|
imageOnlyThumbnail: {
|
|
width: DIMENSIONS.THUMBNAIL_SIZE,
|
|
height: DIMENSIONS.THUMBNAIL_SIZE,
|
|
borderRadius: 4,
|
|
overflow: 'hidden',
|
|
shadowColor: '#000000',
|
|
shadowOffset: {
|
|
width: 0,
|
|
height: 2,
|
|
},
|
|
shadowOpacity: 0.08,
|
|
shadowRadius: 3,
|
|
elevation: 1,
|
|
},
|
|
fileInfo: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'flex-start',
|
|
},
|
|
fileName: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 200, 'SemiBold'),
|
|
marginBottom: 2,
|
|
},
|
|
fileSize: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.64),
|
|
...typography('Body', 75, 'Regular'),
|
|
},
|
|
progress: {
|
|
position: 'absolute',
|
|
left: 0,
|
|
right: 0,
|
|
top: 0,
|
|
bottom: 0,
|
|
backgroundColor: 'rgba(0, 0, 0, 0.1)',
|
|
borderRadius: 4,
|
|
justifyContent: 'flex-end',
|
|
},
|
|
progressContainer: {
|
|
paddingVertical: undefined,
|
|
position: undefined,
|
|
justifyContent: undefined,
|
|
},
|
|
};
|
|
});
|
|
|
|
export default function UploadItem({
|
|
channelId, galleryIdentifier, index, file,
|
|
rootId, openGallery,
|
|
}: Props) {
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
const serverUrl = useServerUrl();
|
|
const removeCallback = useRef<(() => void) | undefined>(undefined);
|
|
const [progress, setProgress] = useState(0);
|
|
const {updateFileCallback, isEditMode} = useEditPost();
|
|
|
|
const loading = DraftEditPostUploadManager.isUploading(file.clientId!);
|
|
|
|
const handlePress = useCallback(() => {
|
|
openGallery(file);
|
|
}, [openGallery, file]);
|
|
|
|
useEffect(() => {
|
|
if (file.clientId) {
|
|
removeCallback.current = DraftEditPostUploadManager.registerProgressHandler(file.clientId, setProgress);
|
|
}
|
|
return () => {
|
|
removeCallback.current?.();
|
|
removeCallback.current = undefined;
|
|
};
|
|
}, []);
|
|
|
|
useDidUpdate(() => {
|
|
if (loading && file.clientId) {
|
|
removeCallback.current = DraftEditPostUploadManager.registerProgressHandler(file.clientId, setProgress);
|
|
}
|
|
return () => {
|
|
removeCallback.current?.();
|
|
removeCallback.current = undefined;
|
|
};
|
|
}, [file.failed, file.id]);
|
|
|
|
const retryFileUpload = useCallback(() => {
|
|
if (!file.failed) {
|
|
return;
|
|
}
|
|
|
|
const newFile = {...file};
|
|
newFile.failed = false;
|
|
|
|
if (isEditMode && updateFileCallback) {
|
|
// In edit mode, use the context callback to update the file
|
|
updateFileCallback(newFile);
|
|
DraftEditPostUploadManager.prepareUpload(
|
|
serverUrl,
|
|
newFile,
|
|
channelId,
|
|
rootId,
|
|
newFile.bytesRead,
|
|
true, // isEditPost = true
|
|
updateFileCallback,
|
|
);
|
|
} else {
|
|
// In draft mode, use the draft file system
|
|
updateDraftFile(serverUrl, channelId, rootId, newFile);
|
|
DraftEditPostUploadManager.prepareUpload(serverUrl, newFile, channelId, rootId, newFile.bytesRead);
|
|
}
|
|
|
|
DraftEditPostUploadManager.registerProgressHandler(newFile.clientId!, setProgress);
|
|
}, [serverUrl, channelId, rootId, file, isEditMode, updateFileCallback]);
|
|
|
|
const {styles, onGestureEvent, ref} = useGalleryItem(galleryIdentifier, index, handlePress);
|
|
|
|
const fileDisplayComponent = () => {
|
|
if (isImage(file)) {
|
|
return (
|
|
<View style={style.imageOnlyThumbnail}>
|
|
<ImageFile
|
|
file={file}
|
|
forwardRef={ref}
|
|
contentFit='cover'
|
|
inViewPort={true}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
return (
|
|
<View style={style.iconContainer}>
|
|
<FileIcon
|
|
iconSize={48}
|
|
file={file}
|
|
testID={file.id}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const fileExtension = file.extension?.toUpperCase() || file.name?.split('.').pop()?.toUpperCase() || '';
|
|
|
|
const formattedSize = getFormattedFileSize(file.size || 0);
|
|
|
|
const isImageFile = isImage(file);
|
|
const containerStyle = useMemo(() => [
|
|
style.previewContainer,
|
|
isImageFile ? style.imageOnlyContainer : style.fileWithInfoContainer,
|
|
], [isImageFile, style.fileWithInfoContainer, style.imageOnlyContainer, style.previewContainer]);
|
|
|
|
return (
|
|
<View
|
|
key={file.clientId}
|
|
style={style.preview}
|
|
>
|
|
<View style={containerStyle}>
|
|
<TouchableWithoutFeedback onPress={onGestureEvent}>
|
|
<Animated.View style={styles}>
|
|
{fileDisplayComponent()}
|
|
</Animated.View>
|
|
</TouchableWithoutFeedback>
|
|
|
|
{!isImageFile && (
|
|
<View style={style.fileInfo}>
|
|
<Text
|
|
style={style.fileName}
|
|
numberOfLines={1}
|
|
ellipsizeMode='tail'
|
|
>
|
|
{file.name || 'Unknown file'}
|
|
</Text>
|
|
<Text style={style.fileSize}>
|
|
{fileExtension && `${fileExtension} `}{formattedSize}
|
|
</Text>
|
|
</View>
|
|
)}
|
|
|
|
{file.failed &&
|
|
<UploadRetry
|
|
onPress={retryFileUpload}
|
|
/>
|
|
}
|
|
{loading && !file.failed &&
|
|
<View style={style.progress}>
|
|
<ProgressBar
|
|
progress={progress || 0}
|
|
color={theme.buttonBg}
|
|
containerStyle={style.progressContainer}
|
|
/>
|
|
</View>
|
|
}
|
|
</View>
|
|
<UploadRemove
|
|
clientId={file.clientId!}
|
|
channelId={channelId}
|
|
rootId={rootId}
|
|
fileId={file.id!}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|