2020-04-01 07:47:51 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { createToolbarEvent, sendAnalytics } from '../../../analytics';
|
|
|
|
import { translate } from '../../../base/i18n';
|
2020-06-17 09:17:58 +00:00
|
|
|
import { IconSecurityOff, IconSecurityOn } from '../../../base/icons';
|
2020-04-01 07:47:51 +00:00
|
|
|
import { connect } from '../../../base/redux';
|
2020-07-24 12:14:33 +00:00
|
|
|
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
|
2020-07-17 15:48:23 +00:00
|
|
|
import { toggleSecurityDialog } from '../../actions';
|
2020-04-01 07:47:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the shared document is being edited or not.
|
|
|
|
*/
|
|
|
|
_locked: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On click handler that opens the security dialog.
|
|
|
|
*/
|
|
|
|
onClick: Function
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements an {@link AbstractButton} to open the security dialog.
|
|
|
|
*/
|
|
|
|
class SecurityDialogButton extends AbstractButton<Props, *> {
|
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.security';
|
2020-06-17 09:17:58 +00:00
|
|
|
icon = IconSecurityOff;
|
2020-04-01 07:47:51 +00:00
|
|
|
label = 'toolbar.security';
|
2020-06-17 09:17:58 +00:00
|
|
|
toggledIcon = IconSecurityOn;
|
2020-04-01 07:47:51 +00:00
|
|
|
tooltip = 'toolbar.security';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles clicking / pressing the button, and opens / closes the appropriate dialog.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_handleClick() {
|
|
|
|
sendAnalytics(createToolbarEvent('toggle.security', { enable: !this.props._locked }));
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates whether this button is in toggled state or not.
|
|
|
|
*
|
|
|
|
* @override
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isToggled() {
|
|
|
|
return this.props._locked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps part of the redux state to the component's props.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux store/state.
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
function mapStateToProps(state: Object) {
|
|
|
|
const { locked } = state['features/base/conference'];
|
2020-05-20 08:25:31 +00:00
|
|
|
const { lobbyEnabled } = state['features/lobby'];
|
2020-04-01 07:47:51 +00:00
|
|
|
|
|
|
|
return {
|
2020-05-20 08:25:31 +00:00
|
|
|
_locked: locked || lobbyEnabled
|
2020-04-01 07:47:51 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps dispatching of some action to React component props.
|
|
|
|
*
|
|
|
|
* @param {Function} dispatch - Redux action dispatcher.
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
const mapDispatchToProps = {
|
2020-07-17 15:48:23 +00:00
|
|
|
onClick: () => toggleSecurityDialog()
|
2020-04-01 07:47:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default translate(connect(mapStateToProps, mapDispatchToProps)(SecurityDialogButton));
|