import React, { useState, useRef } from 'react'; import { findDOMNode } from 'react-dom'; import { defineMessages, injectIntl } from 'react-intl'; import PropTypes from 'prop-types'; import Styled from './styles'; import { EFFECT_TYPES, BLUR_FILENAME, IMAGE_NAMES, getVirtualBackgroundThumbnail, isVirtualBackgroundSupported, } from '/imports/ui/services/virtual-background/service'; const propTypes = { intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, handleVirtualBgSelected: PropTypes.func.isRequired, locked: PropTypes.bool.isRequired, showThumbnails: PropTypes.bool, initialVirtualBgState: PropTypes.shape({ type: PropTypes.string.isRequired, name: PropTypes.string, }), }; const intlMessages = defineMessages({ virtualBackgroundSettingsLabel: { id: 'app.videoPreview.webcamVirtualBackgroundLabel', description: 'Label for the virtual background', }, virtualBackgroundSettingsDisabledLabel: { id: 'app.videoPreview.webcamVirtualBackgroundDisabledLabel', description: 'Label for the unsupported virtual background', }, noneLabel: { id: 'app.video.virtualBackground.none', description: 'Label for no virtual background selected', }, blurLabel: { id: 'app.video.virtualBackground.blur', description: 'Label for the blurred camera option', }, camBgAriaDesc: { id: 'app.video.virtualBackground.camBgAriaDesc', description: 'Label for virtual background button aria', }, background: { id: 'app.video.virtualBackground.background', description: 'Label for the background word', }, ...IMAGE_NAMES.reduce((prev, imageName) => { const id = imageName.split('.').shift(); return { ...prev, [id]: { id: `app.video.virtualBackground.${id}`, description: `Label for the ${id} camera option`, defaultMessage: '{background} {index}', }, }; }, {}) }); const VirtualBgSelector = ({ intl, handleVirtualBgSelected, locked, showThumbnails, initialVirtualBgState, }) => { const [currentVirtualBg, setCurrentVirtualBg] = useState({ ...initialVirtualBgState, }); const inputElementsRef = useRef([]); const _virtualBgSelected = (type, name, index) => handleVirtualBgSelected(type, name) .then(switched => { // Reset to the base NONE_TYPE effect if it failed because the expected // behaviour from upstream's method is to actually stop/reset the effect // service if it fails if (!switched) { return setCurrentVirtualBg({ type: EFFECT_TYPES.NONE_TYPE }); } if (index >= 0) { findDOMNode(inputElementsRef.current[index]).focus(); } return setCurrentVirtualBg({ type, name }); }); const renderDropdownSelector = () => { const disabled = locked || !isVirtualBackgroundSupported(); return (
{ const { type, name } = JSON.parse(event.target.value); _virtualBgSelected(type, name); }} > {IMAGE_NAMES.map((imageName, i) => { const k = `${imageName}-${i}`; return ( ); })}
); } const renderThumbnailSelector = () => { const disabled = locked || !isVirtualBackgroundSupported(); return ( <> _virtualBgSelected(EFFECT_TYPES.NONE_TYPE)} />
{intl.formatMessage(intlMessages.camBgAriaDesc, { 0: EFFECT_TYPES.NONE_TYPE })}
<> { inputElementsRef.current[0] = ref; }} onClick={() => _virtualBgSelected(EFFECT_TYPES.BLUR_TYPE, 'Blur', 0)} />
{intl.formatMessage(intlMessages.camBgAriaDesc, { 0: EFFECT_TYPES.BLUR_TYPE })}
{IMAGE_NAMES.map((imageName, index) => { const label = intl.formatMessage(intlMessages[imageName.split('.').shift()], { index: index + 2, background: intl.formatMessage(intlMessages.background), }); return (
inputElementsRef.current[index + 1] = ref} onClick={() => _virtualBgSelected(EFFECT_TYPES.IMAGE_TYPE, imageName, index + 1)} disabled={disabled} /> { const node = findDOMNode(inputElementsRef.current[index + 1]); node.focus(); node.click(); }} aria-hidden src={getVirtualBackgroundThumbnail(imageName)} />
{intl.formatMessage(intlMessages.camBgAriaDesc, { 0: label })}
) })}
); }; const renderSelector = () => { if (showThumbnails) return renderThumbnailSelector(); return renderDropdownSelector(); }; return ( <> {!isVirtualBackgroundSupported() ? intl.formatMessage(intlMessages.virtualBackgroundSettingsDisabledLabel) : intl.formatMessage(intlMessages.virtualBackgroundSettingsLabel)} {renderSelector()} ); }; VirtualBgSelector.propTypes = propTypes; VirtualBgSelector.defaultProps = { showThumbnails: false, initialVirtualBgState: { type: EFFECT_TYPES.NONE_TYPE, }, }; export default injectIntl(VirtualBgSelector);