123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- /* eslint-disable lines-around-comment */
- // @ts-ignore
- import Bourne from '@hapi/bourne';
- // @ts-ignore
- import { jitsiLocalStorage } from '@jitsi/js-utils/jitsi-local-storage';
- import React, { useCallback, useEffect, useState } from 'react';
- import { WithTranslation } from 'react-i18next';
- import { connect } from 'react-redux';
- import { makeStyles } from 'tss-react/mui';
-
- import { IReduxState } from '../../app/types';
- import { getMultipleVideoSendingSupportFeatureFlag } from '../../base/config/functions.any';
- import { translate } from '../../base/i18n/functions';
- import Icon from '../../base/icons/components/Icon';
- import { IconCloseLarge } from '../../base/icons/svg';
- import { withPixelLineHeight } from '../../base/styles/functions.web';
- import Tooltip from '../../base/tooltip/components/Tooltip';
- import Spinner from '../../base/ui/components/web/Spinner';
- import { BACKGROUNDS_LIMIT, IMAGES, type Image, VIRTUAL_BACKGROUND_TYPE } from '../constants';
- import { toDataURL } from '../functions';
- import logger from '../logger';
-
- import UploadImageButton from './UploadImageButton';
- import VirtualBackgroundPreview from './VirtualBackgroundPreview';
- /* eslint-enable lines-around-comment */
-
- interface IProps extends WithTranslation {
-
- /**
- * The list of Images to choose from.
- */
- _images: Array<Image>;
-
- /**
- * Returns the jitsi track that will have background effect applied.
- */
- _jitsiTrack: Object;
-
- /**
- * The current local flip x status.
- */
- _localFlipX: boolean;
-
- /**
- * Whether or not multi-stream send support is enabled.
- */
- _multiStreamModeEnabled: boolean;
-
- /**
- * If the upload button should be displayed or not.
- */
- _showUploadButton: boolean;
-
- /**
- * Returns the selected virtual background object.
- */
- _virtualBackground: any;
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Function;
-
- /**
- * The initial options copied in the state for the {@code VirtualBackground} component.
- *
- * NOTE: currently used only for electron in order to open the dialog in the correct state after desktop sharing
- * selection.
- */
- initialOptions?: Object;
-
- /**
- * Options change handler.
- */
- onOptionsChange: Function;
-
- /**
- * Virtual background options.
- */
- options: any;
-
- /**
- * Returns the selected thumbnail identifier.
- */
- selectedThumbnail: string;
- }
-
- const onError = (event: any) => {
- event.target.style.display = 'none';
- };
-
- const useStyles = makeStyles()(theme => {
- return {
- virtualBackgroundLoading: {
- width: '100%',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- height: '50px'
- },
-
- container: {
- width: '100%',
- display: 'flex',
- flexDirection: 'column'
- },
-
- thumbnailContainer: {
- width: '100%',
- display: 'inline-grid',
- gridTemplateColumns: '1fr 1fr 1fr 1fr 1fr',
- gap: theme.spacing(1),
-
- '@media (min-width: 608px) and (max-width: 712px)': {
- gridTemplateColumns: '1fr 1fr 1fr 1fr'
- },
-
- '@media (max-width: 607px)': {
- gridTemplateColumns: '1fr 1fr 1fr',
- gap: theme.spacing(2)
- }
- },
-
- thumbnail: {
- height: '54px',
- width: '100%',
- borderRadius: '4px',
- boxSizing: 'border-box',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- textAlign: 'center',
- ...withPixelLineHeight(theme.typography.labelBold),
- color: theme.palette.text01,
- objectFit: 'cover',
-
- [[ '&:hover', '&:focus' ] as any]: {
- opacity: 0.5,
- cursor: 'pointer',
-
- '& ~ .delete-image-icon': {
- display: 'block'
- }
- },
-
- '@media (max-width: 607px)': {
- height: '70px'
- }
- },
-
- selectedThumbnail: {
- border: `2px solid ${theme.palette.action01Hover}`
- },
-
- noneThumbnail: {
- backgroundColor: theme.palette.ui04
- },
-
- slightBlur: {
- boxShadow: 'inset 0 0 12px #000000',
- background: '#a4a4a4'
- },
-
- blur: {
- boxShadow: 'inset 0 0 12px #000000',
- background: '#7e8287'
- },
-
- storedImageContainer: {
- position: 'relative',
- display: 'flex',
- flexDirection: 'column',
-
- '&:focus-within .delete-image-container': {
- display: 'block'
- }
- },
-
- deleteImageIcon: {
- position: 'absolute',
- top: '3px',
- right: '3px',
- background: theme.palette.ui03,
- borderRadius: '3px',
- cursor: 'pointer',
- display: 'none',
-
- '@media (max-width: 607px)': {
- display: 'block',
- padding: '3px'
- },
-
- [[ '&:hover', '&:focus' ] as any]: {
- display: 'block'
- }
- }
- };
- });
-
- /**
- * Renders virtual background dialog.
- *
- * @returns {ReactElement}
- */
- function VirtualBackgrounds({
- _images,
- _jitsiTrack,
- _localFlipX,
- selectedThumbnail,
- _showUploadButton,
- _virtualBackground,
- onOptionsChange,
- options,
- initialOptions,
- t
- }: IProps) {
- const { classes, cx } = useStyles();
- const [ previewIsLoaded, setPreviewIsLoaded ] = useState(false);
- const localImages = jitsiLocalStorage.getItem('virtualBackgrounds');
- const [ storedImages, setStoredImages ] = useState<Array<Image>>((localImages && Bourne.parse(localImages)) || []);
- const [ loading, setLoading ] = useState(false);
-
- useEffect(() => {
- onOptionsChange({ ...initialOptions });
- }, []);
-
- const deleteStoredImage = useCallback(e => {
- const imageId = e.currentTarget.getAttribute('data-imageid');
-
- setStoredImages(storedImages.filter(item => item.id !== imageId));
- }, [ storedImages ]);
-
- const deleteStoredImageKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- deleteStoredImage(e);
- }
- }, [ deleteStoredImage ]);
-
- /**
- * Updates stored images on local storage.
- */
- useEffect(() => {
- try {
- jitsiLocalStorage.setItem('virtualBackgrounds', JSON.stringify(storedImages));
- } catch (err) {
- // Preventing localStorage QUOTA_EXCEEDED_ERR
- err && setStoredImages(storedImages.slice(1));
- }
- if (storedImages.length === BACKGROUNDS_LIMIT) {
- setStoredImages(storedImages.slice(1));
- }
- }, [ storedImages ]);
-
- const enableBlur = useCallback(async () => {
- onOptionsChange({
- backgroundType: VIRTUAL_BACKGROUND_TYPE.BLUR,
- enabled: true,
- blurValue: 25,
- selectedThumbnail: 'blur'
- });
- logger.info('"Blur" option set for virtual background preview!');
-
- }, []);
-
- const enableBlurKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- enableBlur();
- }
- }, [ enableBlur ]);
-
- const enableSlideBlur = useCallback(async () => {
- onOptionsChange({
- backgroundType: VIRTUAL_BACKGROUND_TYPE.BLUR,
- enabled: true,
- blurValue: 8,
- selectedThumbnail: 'slight-blur'
- });
- logger.info('"Slight-blur" option set for virtual background preview!');
-
- }, []);
-
- const enableSlideBlurKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- enableSlideBlur();
- }
- }, [ enableSlideBlur ]);
-
- const removeBackground = useCallback(async () => {
- onOptionsChange({
- enabled: false,
- selectedThumbnail: 'none'
- });
- logger.info('"None" option set for virtual background preview!');
-
- }, []);
-
- const removeBackgroundKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- removeBackground();
- }
- }, [ removeBackground ]);
-
- const setUploadedImageBackground = useCallback(async e => {
- const imageId = e.currentTarget.getAttribute('data-imageid');
- const image = storedImages.find(img => img.id === imageId);
-
- if (image) {
- onOptionsChange({
- backgroundType: 'image',
- enabled: true,
- url: image.src,
- selectedThumbnail: image.id
- });
- logger.info('Uploaded image set for virtual background preview!');
- }
- }, [ storedImages ]);
-
- const setImageBackground = useCallback(async e => {
- const imageId = e.currentTarget.getAttribute('data-imageid');
- const image = _images.find(img => img.id === imageId);
-
- if (image) {
- try {
- const url = await toDataURL(image.src);
-
- onOptionsChange({
- backgroundType: 'image',
- enabled: true,
- url,
- selectedThumbnail: image.id
- });
- logger.info('Image set for virtual background preview!');
- } catch (err) {
- logger.error('Could not fetch virtual background image:', err);
- }
-
- setLoading(false);
- }
- }, []);
-
- const setImageBackgroundKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- setImageBackground(e);
- }
- }, [ setImageBackground ]);
-
- const setUploadedImageBackgroundKeyPress = useCallback(e => {
- if (e.key === ' ' || e.key === 'Enter') {
- e.preventDefault();
- setUploadedImageBackground(e);
- }
- }, [ setUploadedImageBackground ]);
-
- const loadedPreviewState = useCallback(async loaded => {
- await setPreviewIsLoaded(loaded);
- }, []);
-
- return (
- <>
- <VirtualBackgroundPreview
- loadedPreview = { loadedPreviewState }
- options = { options } />
- {loading ? (
- <div className = { classes.virtualBackgroundLoading }>
- <Spinner />
- </div>
- ) : (
- <div className = { classes.container }>
- {_showUploadButton
- && <UploadImageButton
- setLoading = { setLoading }
- setOptions = { onOptionsChange }
- setStoredImages = { setStoredImages }
- showLabel = { previewIsLoaded }
- storedImages = { storedImages } />}
- <div
- className = { classes.thumbnailContainer }
- role = 'radiogroup'
- tabIndex = { -1 }>
- <Tooltip
- content = { t('virtualBackground.removeBackground') }
- position = { 'top' }>
- <div
- aria-checked = { selectedThumbnail === 'none' }
- aria-label = { t('virtualBackground.removeBackground') }
- className = { cx(classes.thumbnail, classes.noneThumbnail,
- selectedThumbnail === 'none' && classes.selectedThumbnail) }
- onClick = { removeBackground }
- onKeyPress = { removeBackgroundKeyPress }
- role = 'radio'
- tabIndex = { 0 } >
- {t('virtualBackground.none')}
- </div>
- </Tooltip>
- <Tooltip
- content = { t('virtualBackground.slightBlur') }
- position = { 'top' }>
- <div
- aria-checked = { selectedThumbnail === 'slight-blur' }
- aria-label = { t('virtualBackground.slightBlur') }
- className = { cx(classes.thumbnail, classes.slightBlur,
- selectedThumbnail === 'slight-blur' && classes.selectedThumbnail) }
- onClick = { enableSlideBlur }
- onKeyPress = { enableSlideBlurKeyPress }
- role = 'radio'
- tabIndex = { 0 }>
- {t('virtualBackground.slightBlur')}
- </div>
- </Tooltip>
- <Tooltip
- content = { t('virtualBackground.blur') }
- position = { 'top' }>
- <div
- aria-checked = { selectedThumbnail === 'blur' }
- aria-label = { t('virtualBackground.blur') }
- className = { cx(classes.thumbnail, classes.blur,
- selectedThumbnail === 'blur' && classes.selectedThumbnail) }
- onClick = { enableBlur }
- onKeyPress = { enableBlurKeyPress }
- role = 'radio'
- tabIndex = { 0 }>
- {t('virtualBackground.blur')}
- </div>
- </Tooltip>
- {_images.map(image => (
- <Tooltip
- content = { (image.tooltip && t(`virtualBackground.${image.tooltip}`)) ?? '' }
- key = { image.id }
- position = { 'top' }>
- <img
- alt = { image.tooltip && t(`virtualBackground.${image.tooltip}`) }
- aria-checked = { options?.selectedThumbnail === image.id
- || selectedThumbnail === image.id }
- className = { cx(classes.thumbnail,
- (options?.selectedThumbnail === image.id
- || selectedThumbnail === image.id) && classes.selectedThumbnail) }
- data-imageid = { image.id }
- onClick = { setImageBackground }
- onError = { onError }
- onKeyPress = { setImageBackgroundKeyPress }
- role = 'radio'
- src = { image.src }
- tabIndex = { 0 } />
- </Tooltip>
- ))}
- {storedImages.map((image, index) => (
- <div
- className = { classes.storedImageContainer }
- key = { image.id }>
- <img
- alt = { t('virtualBackground.uploadedImage', { index: index + 1 }) }
- aria-checked = { selectedThumbnail === image.id }
- className = { cx(classes.thumbnail,
- selectedThumbnail === image.id && classes.selectedThumbnail) }
- data-imageid = { image.id }
- onClick = { setUploadedImageBackground }
- onError = { onError }
- onKeyPress = { setUploadedImageBackgroundKeyPress }
- role = 'radio'
- src = { image.src }
- tabIndex = { 0 } />
-
- <Icon
- ariaLabel = { t('virtualBackground.deleteImage') }
- className = { cx(classes.deleteImageIcon, 'delete-image-icon') }
- data-imageid = { image.id }
- onClick = { deleteStoredImage }
- onKeyPress = { deleteStoredImageKeyPress }
- role = 'button'
- size = { 16 }
- src = { IconCloseLarge }
- tabIndex = { 0 } />
- </div>
- ))}
- </div>
- </div>
- )}
- </>
- );
- }
-
- /**
- * Maps (parts of) the redux state to the associated props for the
- * {@code VirtualBackground} component.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {{Props}}
- */
- function _mapStateToProps(state: IReduxState) {
- const { localFlipX } = state['features/base/settings'];
- const dynamicBrandingImages = state['features/dynamic-branding'].virtualBackgrounds;
- const hasBrandingImages = Boolean(dynamicBrandingImages.length);
-
- return {
- _localFlipX: Boolean(localFlipX),
- _images: (hasBrandingImages && dynamicBrandingImages) || IMAGES,
- _virtualBackground: state['features/virtual-background'],
- _showUploadButton: !state['features/base/config'].disableAddingBackgroundImages,
- _multiStreamModeEnabled: getMultipleVideoSendingSupportFeatureFlag(state)
- };
- }
-
- export default connect(_mapStateToProps)(translate(VirtualBackgrounds));
|