fix: cleanup

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

@ -13,7 +13,8 @@ import { useEncryptedFileFetch } from '../../hooks/useEncryptedFileFetch';
type Props = { type Props = {
alt: string; alt: string;
attachment: AttachmentTypeWithPath | AttachmentType; 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; imageBroken?: boolean;
height?: number | string; height?: number | string;
@ -36,6 +37,7 @@ type Props = {
onClickClose?: (attachment: AttachmentTypeWithPath | AttachmentType) => void; onClickClose?: (attachment: AttachmentTypeWithPath | AttachmentType) => void;
onError?: () => void; onError?: () => void;
/** used for debugging */
timestamp?: number; timestamp?: number;
}; };
@ -104,27 +106,18 @@ export const Image = (props: Props) => {
if (mounted && url === '') { if (mounted && url === '') {
setPending(false); setPending(false);
onErrorUrlFilterering(); 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 === '') { if (mounted && imageBroken && urlToLoad === '') {
setPending(false); setPending(false);
onErrorUrlFilterering(); 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) { if (url) {
setPending(false); setPending(false);
setMounted(!loading && !pending); 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) { if (mounted && imageBroken) {
return ( return (
@ -220,7 +213,7 @@ export const Image = (props: Props) => {
className="module-image__close-button" className="module-image__close-button"
/> />
) : null} ) : null}
{!pending && playIconOverlay ? ( {mounted && playIconOverlay ? (
<div className="module-image__play-overlay__circle"> <div className="module-image__play-overlay__circle">
<div className="module-image__play-overlay__icon" /> <div className="module-image__play-overlay__icon" />
</div> </div>

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

Loading…
Cancel
Save