bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/switch-button/component.jsx
2024-06-11 13:10:04 -03:00

56 lines
1.3 KiB
JavaScript

import React from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import PropTypes from 'prop-types';
import Styled from './styles';
const intlMessages = defineMessages({
switchButtonShrink: {
id: 'app.switchButton.shrinkLabel',
description: 'shrink label',
},
switchButtonExpand: {
id: 'app.switchButton.expandLabel',
description: 'expand label',
},
});
const propTypes = {
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
dark: PropTypes.bool,
bottom: PropTypes.bool,
handleSwitch: PropTypes.func,
switched: PropTypes.bool,
};
const SwitchButtonComponent = ({
intl,
dark = false,
bottom = false,
handleSwitch = () => {},
switched = false,
}) => {
const formattedLabel = intl.formatMessage(switched
? intlMessages.switchButtonShrink
: intlMessages.switchButtonExpand);
return (
<Styled.SwitchButtonWrapper dark={dark} bottom={bottom}>
<Styled.SwitchButton
color="default"
icon={switched ? 'screenshare-close-fullscreen' : 'screenshare-fullscreen'}
size="sm"
onClick={handleSwitch}
label={formattedLabel}
hideLabel
data-test="switchButton"
/>
</Styled.SwitchButtonWrapper>
);
};
SwitchButtonComponent.propTypes = propTypes;
export default injectIntl(SwitchButtonComponent);