123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /* @flow */
-
- import React, { Component } from 'react';
- import type { Dispatch } from 'redux';
-
- import { createE2EEEvent, sendAnalytics } from '../../analytics';
- import { translate } from '../../base/i18n';
- import { getParticipants } from '../../base/participants';
- import { connect } from '../../base/redux';
- import { setE2EEKey } from '../actions';
-
-
- type Props = {
-
- /**
- * Indicates whether all participants in the conference currently support E2EE.
- */
- _everyoneSupportsE2EE: boolean,
-
- /**
- * The current E2EE key.
- */
- _key: string,
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Dispatch<any>,
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function
- };
-
- type State = {
-
- /**
- * True if the key is being edited.
- */
- editing: boolean,
-
- /**
- * True if the section description should be expanded, false otherwise.
- */
- expand: boolean,
-
- /**
- * The current E2EE key.
- */
- key: string
- };
-
- /**
- * Implements a React {@code Component} for displaying a security dialog section with a field
- * for setting the E2EE key.
- *
- * @extends Component
- */
- class E2EESection extends Component<Props, State> {
- fieldRef: Object;
-
- /**
- * Initializes a new {@code E2EEDialog } instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: Props) {
- super(props);
-
- this.fieldRef = React.createRef();
-
- this.state = {
- editing: false,
- expand: false,
- key: this.props._key
- };
-
- // Bind event handlers so they are only bound once for every instance.
- this._onExpand = this._onExpand.bind(this);
- this._onKeyChange = this._onKeyChange.bind(this);
- this._onSet = this._onSet.bind(this);
- this._onToggleSetKey = this._onToggleSetKey.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { _everyoneSupportsE2EE, t } = this.props;
- const { editing, expand } = this.state;
- const description = t('dialog.e2eeDescription');
-
- return (
- <div id = 'e2ee-section'>
- <p className = 'description'>
- { expand && description }
- { !expand && description.substring(0, 100) }
- { !expand && <span
- className = 'read-more'
- onClick = { this._onExpand }>
- ... { t('dialog.readMore') }
- </span> }
- </p>
- {
- !_everyoneSupportsE2EE
- && <span className = 'warning'>
- { t('dialog.e2eeWarning') }
- </span>
- }
- <div className = 'key-field'>
- <label>
- { t('dialog.e2eeLabel') }:
- </label>
- <input
- disabled = { !editing }
- name = 'e2eeKey'
- onChange = { this._onKeyChange }
- onKeyDown = { this._onKeyDown }
- placeholder = { t('dialog.e2eeNoKey') }
- ref = { this.fieldRef }
- type = 'password'
- value = { this.state.key } />
- { editing && <a onClick = { this._onSet }>
- { t('dialog.e2eeSet') }
- </a> }
- { !editing && <a onClick = { this._onToggleSetKey }>
- { t('dialog.e2eeToggleSet') }
- </a> }
- </div>
- </div>
- );
- }
-
- _onExpand: () => void;
-
- /**
- * Callback to be invoked when the description is expanded.
- *
- * @returns {void}
- */
- _onExpand() {
- this.setState({
- expand: true
- });
- }
-
- _onKeyChange: (Object) => void;
-
- /**
- * Updates the entered key.
- *
- * @param {Object} event - The DOM event triggered from the entered value having changed.
- * @private
- * @returns {void}
- */
- _onKeyChange(event) {
- this.setState({ key: event.target.value.trim() });
- }
-
- _onKeyDown: (Object) => void;
-
- /**
- * Handler for the keydown event on the form, preventing the closing of the dialog.
- *
- * @param {Object} event - The DOM event triggered by keydown events.
- * @returns {void}
- */
- _onKeyDown(event) {
- if (event.key === 'Enter') {
- event.preventDefault();
- }
- }
-
- _onSet: () => void;
-
- /**
- * Dispatches an action to set/unset the E2EE key.
- *
- * @private
- * @returns {void}
- */
- _onSet() {
- const { key } = this.state;
-
- sendAnalytics(createE2EEEvent(`key.${key ? 'set' : 'unset'}`));
- this.props.dispatch(setE2EEKey(key));
-
- this.setState({
- editing: false
- });
- }
-
- _onToggleSetKey: () => void;
-
- /**
- * Sets the section into edit mode so then the user can set the key.
- *
- * @returns {void}
- */
- _onToggleSetKey() {
- this.setState({
- editing: true
- }, () => {
- this.fieldRef.current.focus();
- });
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated props for this component.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {Props}
- */
- function mapStateToProps(state) {
- const { e2eeKey } = state['features/e2ee'];
- const participants = getParticipants(state).filter(p => !p.local);
-
- return {
- _everyoneSupportsE2EE: participants.every(p => Boolean(p.e2eeSupported)),
- _key: e2eeKey || ''
- };
- }
-
- export default translate(connect(mapStateToProps)(E2EESection));
|