fix: cleanup

pull/3170/head
yougotwill 8 months ago
parent 737dbd45c1
commit 340361f2d9

@ -13,7 +13,8 @@ import { useEncryptedFileFetch } from '../../hooks/useEncryptedFileFetch';
type Props = {
alt: string;
attachment: AttachmentTypeWithPath | AttachmentType;
url: string | undefined; // url is undefined if the message is not visible yet
/** undefined if the message is not visible yet, '' if the attachment is broken */
url: string | undefined;
imageBroken?: boolean;
height?: number | string;
@ -36,6 +37,7 @@ type Props = {
onClickClose?: (attachment: AttachmentTypeWithPath | AttachmentType) => void;
onError?: () => void;
/** used for debugging */
timestamp?: number;
};
@ -104,27 +106,18 @@ export const Image = (props: Props) => {
if (mounted && url === '') {
setPending(false);
onErrorUrlFilterering();
window.log.debug(
`WIP: [Image] timestamp ${timestamp} fail url ${url !== '' ? url : 'empty'} urlToLoad ${urlToLoad !== '' ? urlToLoad : 'empty'} loading ${loading} pending ${pending} imageBroken ${imageBroken}`
);
}
if (mounted && imageBroken && urlToLoad === '') {
setPending(false);
onErrorUrlFilterering();
window.log.debug(
`WIP: [Image] timestamp ${timestamp} fail url ${url !== '' ? url : 'empty'} urlToLoad ${urlToLoad !== '' ? urlToLoad : 'empty'} loading ${loading} pending ${pending} imageBroken ${imageBroken}`
);
}
if (url) {
setPending(false);
setMounted(!loading && !pending);
window.log.debug(
`WIP: [Image] timestamp ${timestamp} success url ${url !== '' ? url : 'empty'} urlToLoad ${urlToLoad !== '' ? urlToLoad : 'empty'} loading ${loading} pending ${pending} imageBroken ${imageBroken}`
);
}
}, [imageBroken, loading, mounted, onErrorUrlFilterering, pending, timestamp, url, urlToLoad]);
}, [imageBroken, loading, mounted, onErrorUrlFilterering, pending, url, urlToLoad]);
if (mounted && imageBroken) {
return (
@ -220,7 +213,7 @@ export const Image = (props: Props) => {
className="module-image__close-button"
/>
) : null}
{!pending && playIconOverlay ? (
{mounted && playIconOverlay ? (
<div className="module-image__play-overlay__circle">
<div className="module-image__play-overlay__icon" />
</div>

@ -7,11 +7,13 @@ import {
import { perfEnd, perfStart } from '../session/utils/Performance';
export const useEncryptedFileFetch = (
/** undefined if the message is not visible yet, url is '' if something is broken */
url: string | undefined,
contentType: string,
isAvatar: boolean,
timestamp?: number
) => {
/** undefined if the attachment is not decrypted yet, '' if the attachment fails to decrypt */
const [urlToLoad, setUrlToLoad] = useState<string | undefined>(undefined);
const [loading, setLoading] = useState(true);
@ -20,10 +22,6 @@ export const useEncryptedFileFetch = (
const fetchUrl = useCallback(
async (mediaUrl: string | undefined) => {
if (alreadyDecrypted || !mediaUrl) {
window.log.debug(
`WIP: [Image] timestamp ${timestamp} alreadyDecrypted ${alreadyDecrypted !== '' ? alreadyDecrypted : 'empty'} mediaUrl ${mediaUrl !== '' ? mediaUrl : 'empty'}`
);
if (alreadyDecrypted) {
setUrlToLoad(alreadyDecrypted);
setLoading(false);
@ -34,16 +32,14 @@ export const useEncryptedFileFetch = (
setLoading(true);
try {
perfStart(`getDecryptedMediaUrl-${mediaUrl}`);
perfStart(`getDecryptedMediaUrl-${mediaUrl}-${timestamp}`);
const decryptedUrl = await getDecryptedMediaUrl(mediaUrl, contentType, isAvatar);
perfEnd(`getDecryptedMediaUrl-${mediaUrl}`, `getDecryptedMediaUrl-${mediaUrl}`);
window.log.debug(
`WIP: [Image] timestamp ${timestamp} decryptedUrl ${decryptedUrl !== '' ? decryptedUrl : 'empty'}`
perfEnd(
`getDecryptedMediaUrl-${mediaUrl}-${timestamp}`,
`getDecryptedMediaUrl-${mediaUrl}-${timestamp}`
);
setUrlToLoad(decryptedUrl);
} catch (error) {
window.log.error(`WIP: [Image] timestamp ${timestamp} error ${error}`);
setUrlToLoad('');
} finally {
setLoading(false);

Loading…
Cancel
Save