mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-03 22:10:29 +03:00
Some checks failed
Deploy to Netlify (dev) / Deploy to Netlify (push) Has been cancelled
* Add support for MSC4193: Spoilers on Media * Clarify variable names and wording * Restore list atom * Improve spoilered image UX with autoload off * Use `aria-pressed` to indicate attachment spoiler state * Improve spoiler button tooltip wording, keep reveal button from conflicting with load errors * Make it possible to mark videos as spoilers * Allow videos to be marked as spoilers when uploaded * Apply requested changes * Show a loading spinner on spoiled media when unblurred --------- Co-authored-by: Ajay Bura <32841439+ajbura@users.noreply.github.com>
240 lines
7.1 KiB
TypeScript
240 lines
7.1 KiB
TypeScript
import React, { ReactNode, useCallback, useEffect, useState } from 'react';
|
|
import {
|
|
Badge,
|
|
Box,
|
|
Button,
|
|
Chip,
|
|
Icon,
|
|
Icons,
|
|
Spinner,
|
|
Text,
|
|
Tooltip,
|
|
TooltipProvider,
|
|
as,
|
|
} from 'folds';
|
|
import classNames from 'classnames';
|
|
import { BlurhashCanvas } from 'react-blurhash';
|
|
import { EncryptedAttachmentInfo } from 'browser-encrypt-attachment';
|
|
import {
|
|
IThumbnailContent,
|
|
IVideoInfo,
|
|
MATRIX_BLUR_HASH_PROPERTY_NAME,
|
|
} from '../../../../types/matrix/common';
|
|
import * as css from './style.css';
|
|
import { useMatrixClient } from '../../../hooks/useMatrixClient';
|
|
import { AsyncStatus, useAsyncCallback } from '../../../hooks/useAsyncCallback';
|
|
import { bytesToSize, millisecondsToMinutesAndSeconds } from '../../../utils/common';
|
|
import {
|
|
decryptFile,
|
|
downloadEncryptedMedia,
|
|
downloadMedia,
|
|
mxcUrlToHttp,
|
|
} from '../../../utils/matrix';
|
|
import { useMediaAuthentication } from '../../../hooks/useMediaAuthentication';
|
|
import { validBlurHash } from '../../../utils/blurHash';
|
|
|
|
type RenderVideoProps = {
|
|
title: string;
|
|
src: string;
|
|
onLoadedMetadata: () => void;
|
|
onError: () => void;
|
|
autoPlay: boolean;
|
|
controls: boolean;
|
|
};
|
|
type VideoContentProps = {
|
|
body: string;
|
|
mimeType: string;
|
|
url: string;
|
|
info: IVideoInfo & IThumbnailContent;
|
|
encInfo?: EncryptedAttachmentInfo;
|
|
autoPlay?: boolean;
|
|
markedAsSpoiler?: boolean;
|
|
spoilerReason?: string;
|
|
renderThumbnail?: () => ReactNode;
|
|
renderVideo: (props: RenderVideoProps) => ReactNode;
|
|
};
|
|
export const VideoContent = as<'div', VideoContentProps>(
|
|
(
|
|
{
|
|
className,
|
|
body,
|
|
mimeType,
|
|
url,
|
|
info,
|
|
encInfo,
|
|
autoPlay,
|
|
markedAsSpoiler,
|
|
spoilerReason,
|
|
renderThumbnail,
|
|
renderVideo,
|
|
...props
|
|
},
|
|
ref
|
|
) => {
|
|
const mx = useMatrixClient();
|
|
const useAuthentication = useMediaAuthentication();
|
|
const blurHash = validBlurHash(info.thumbnail_info?.[MATRIX_BLUR_HASH_PROPERTY_NAME]);
|
|
|
|
const [load, setLoad] = useState(false);
|
|
const [error, setError] = useState(false);
|
|
const [blurred, setBlurred] = useState(markedAsSpoiler ?? false);
|
|
|
|
const [srcState, loadSrc] = useAsyncCallback(
|
|
useCallback(async () => {
|
|
const mediaUrl = mxcUrlToHttp(mx, url, useAuthentication) ?? url;
|
|
const fileContent = encInfo
|
|
? await downloadEncryptedMedia(mediaUrl, (encBuf) =>
|
|
decryptFile(encBuf, mimeType, encInfo)
|
|
)
|
|
: await downloadMedia(mediaUrl);
|
|
return URL.createObjectURL(fileContent);
|
|
}, [mx, url, useAuthentication, mimeType, encInfo])
|
|
);
|
|
|
|
const handleLoad = () => {
|
|
setLoad(true);
|
|
};
|
|
const handleError = () => {
|
|
setLoad(false);
|
|
setError(true);
|
|
};
|
|
|
|
const handleRetry = () => {
|
|
setError(false);
|
|
loadSrc();
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (autoPlay) loadSrc();
|
|
}, [autoPlay, loadSrc]);
|
|
|
|
return (
|
|
<Box className={classNames(css.RelativeBase, className)} {...props} ref={ref}>
|
|
{typeof blurHash === 'string' && !load && (
|
|
<BlurhashCanvas
|
|
style={{ width: '100%', height: '100%' }}
|
|
width={32}
|
|
height={32}
|
|
hash={blurHash}
|
|
punch={1}
|
|
/>
|
|
)}
|
|
{renderThumbnail && !load && (
|
|
<Box
|
|
className={classNames(css.AbsoluteContainer, blurred && css.Blur)}
|
|
alignItems="Center"
|
|
justifyContent="Center"
|
|
>
|
|
{renderThumbnail()}
|
|
</Box>
|
|
)}
|
|
{!autoPlay && !blurred && srcState.status === AsyncStatus.Idle && (
|
|
<Box className={css.AbsoluteContainer} alignItems="Center" justifyContent="Center">
|
|
<Button
|
|
variant="Secondary"
|
|
fill="Solid"
|
|
radii="300"
|
|
size="300"
|
|
onClick={loadSrc}
|
|
before={<Icon size="Inherit" src={Icons.Play} filled />}
|
|
>
|
|
<Text size="B300">Watch</Text>
|
|
</Button>
|
|
</Box>
|
|
)}
|
|
{srcState.status === AsyncStatus.Success && (
|
|
<Box className={classNames(css.AbsoluteContainer, blurred && css.Blur)}>
|
|
{renderVideo({
|
|
title: body,
|
|
src: srcState.data,
|
|
onLoadedMetadata: handleLoad,
|
|
onError: handleError,
|
|
autoPlay: true,
|
|
controls: true,
|
|
})}
|
|
</Box>
|
|
)}
|
|
{blurred && !error && srcState.status !== AsyncStatus.Error && (
|
|
<Box className={css.AbsoluteContainer} alignItems="Center" justifyContent="Center">
|
|
<TooltipProvider
|
|
tooltip={
|
|
typeof spoilerReason === 'string' && (
|
|
<Tooltip variant="Secondary">
|
|
<Text>{spoilerReason}</Text>
|
|
</Tooltip>
|
|
)
|
|
}
|
|
position="Top"
|
|
align="Center"
|
|
>
|
|
{(triggerRef) => (
|
|
<Chip
|
|
ref={triggerRef}
|
|
variant="Secondary"
|
|
radii="Pill"
|
|
size="500"
|
|
outlined
|
|
onClick={() => {
|
|
setBlurred(false);
|
|
}}
|
|
>
|
|
<Text size="B300">Spoiler</Text>
|
|
</Chip>
|
|
)}
|
|
</TooltipProvider>
|
|
</Box>
|
|
)}
|
|
{(srcState.status === AsyncStatus.Loading || srcState.status === AsyncStatus.Success) &&
|
|
!load &&
|
|
!blurred && (
|
|
<Box className={css.AbsoluteContainer} alignItems="Center" justifyContent="Center">
|
|
<Spinner variant="Secondary" />
|
|
</Box>
|
|
)}
|
|
{(error || srcState.status === AsyncStatus.Error) && (
|
|
<Box className={css.AbsoluteContainer} alignItems="Center" justifyContent="Center">
|
|
<TooltipProvider
|
|
tooltip={
|
|
<Tooltip variant="Critical">
|
|
<Text>Failed to load video!</Text>
|
|
</Tooltip>
|
|
}
|
|
position="Top"
|
|
align="Center"
|
|
>
|
|
{(triggerRef) => (
|
|
<Button
|
|
ref={triggerRef}
|
|
size="300"
|
|
variant="Critical"
|
|
fill="Soft"
|
|
outlined
|
|
radii="300"
|
|
onClick={handleRetry}
|
|
before={<Icon size="Inherit" src={Icons.Warning} filled />}
|
|
>
|
|
<Text size="B300">Retry</Text>
|
|
</Button>
|
|
)}
|
|
</TooltipProvider>
|
|
</Box>
|
|
)}
|
|
{!load && typeof info.size === 'number' && (
|
|
<Box
|
|
className={css.AbsoluteFooter}
|
|
justifyContent="SpaceBetween"
|
|
alignContent="Center"
|
|
gap="200"
|
|
>
|
|
<Badge variant="Secondary" fill="Soft">
|
|
<Text size="L400">{millisecondsToMinutesAndSeconds(info.duration ?? 0)}</Text>
|
|
</Badge>
|
|
<Badge variant="Secondary" fill="Soft">
|
|
<Text size="L400">{bytesToSize(info.size)}</Text>
|
|
</Badge>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
}
|
|
);
|