diff --git a/.eslintrc.js b/.eslintrc.js
index 99695b7a03..4959b133a0 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -15,7 +15,6 @@ module.exports = {
"prefer-promise-reject-errors": "off",
"no-async-promise-executor": "off",
"quotes": "off",
- "indent": "off",
},
overrides: [{
diff --git a/src/GroupAddressPicker.js b/src/GroupAddressPicker.js
index e7ae3217bb..d956189f0d 100644
--- a/src/GroupAddressPicker.js
+++ b/src/GroupAddressPicker.js
@@ -148,13 +148,15 @@ function _onGroupAddRoomFinished(groupId, addrs, addRoomsPublicly) {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog(
'Failed to add the following room to the group',
- '', ErrorDialog,
- {
- title: _t(
- "Failed to add the following rooms to %(groupId)s:",
- {groupId},
- ),
- description: errorList.join(", "),
- });
+ '',
+ ErrorDialog,
+ {
+ title: _t(
+ "Failed to add the following rooms to %(groupId)s:",
+ {groupId},
+ ),
+ description: errorList.join(", "),
+ },
+ );
});
}
diff --git a/src/IdentityAuthClient.js b/src/IdentityAuthClient.js
index 1687adf13b..9239c1bc75 100644
--- a/src/IdentityAuthClient.js
+++ b/src/IdentityAuthClient.js
@@ -163,7 +163,7 @@ export default class IdentityAuthClient {
),
button: _t("Trust"),
- });
+ });
const [confirmed] = await finished;
if (confirmed) {
// eslint-disable-next-line react-hooks/rules-of-hooks
diff --git a/src/PasswordReset.js b/src/PasswordReset.js
index 6fe6ca82cc..88ae00d088 100644
--- a/src/PasswordReset.js
+++ b/src/PasswordReset.js
@@ -54,7 +54,7 @@ export default class PasswordReset {
return res;
}, function(err) {
if (err.errcode === 'M_THREEPID_NOT_FOUND') {
- err.message = _t('This email address was not found');
+ err.message = _t('This email address was not found');
} else if (err.httpStatus) {
err.message = err.message + ` (Status ${err.httpStatus})`;
}
diff --git a/src/TextForEvent.js b/src/TextForEvent.js
index a6787c647d..86f9ff20f4 100644
--- a/src/TextForEvent.js
+++ b/src/TextForEvent.js
@@ -547,17 +547,23 @@ function textForMjolnirEvent(event) {
// else the entity !== prevEntity - count as a removal & add
if (USER_RULE_TYPES.includes(event.getType())) {
- return _t("%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching " +
+ return _t(
+ "%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching " +
"%(newGlob)s for %(reason)s",
- {senderName, oldGlob: prevEntity, newGlob: entity, reason});
+ {senderName, oldGlob: prevEntity, newGlob: entity, reason},
+ );
} else if (ROOM_RULE_TYPES.includes(event.getType())) {
- return _t("%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching " +
+ return _t(
+ "%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching " +
"%(newGlob)s for %(reason)s",
- {senderName, oldGlob: prevEntity, newGlob: entity, reason});
+ {senderName, oldGlob: prevEntity, newGlob: entity, reason},
+ );
} else if (SERVER_RULE_TYPES.includes(event.getType())) {
- return _t("%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching " +
+ return _t(
+ "%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching " +
"%(newGlob)s for %(reason)s",
- {senderName, oldGlob: prevEntity, newGlob: entity, reason});
+ {senderName, oldGlob: prevEntity, newGlob: entity, reason},
+ );
}
// Unknown type. We'll say something but we shouldn't end up here.
diff --git a/src/async-components/views/dialogs/security/CreateKeyBackupDialog.js b/src/async-components/views/dialogs/security/CreateKeyBackupDialog.js
index 863ee2b427..ab4f605c83 100644
--- a/src/async-components/views/dialogs/security/CreateKeyBackupDialog.js
+++ b/src/async-components/views/dialogs/security/CreateKeyBackupDialog.js
@@ -498,9 +498,9 @@ export default class CreateKeyBackupDialog extends React.PureComponent {
title={this._titleForPhase(this.state.phase)}
hasCancel={[PHASE_PASSPHRASE, PHASE_DONE].includes(this.state.phase)}
>
-
- {content}
-
+
+ {content}
+
);
}
diff --git a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.js b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.js
index 84cb58536a..7b7d552c43 100644
--- a/src/async-components/views/dialogs/security/CreateSecretStorageDialog.js
+++ b/src/async-components/views/dialogs/security/CreateSecretStorageDialog.js
@@ -856,9 +856,9 @@ export default class CreateSecretStorageDialog extends React.PureComponent {
hasCancel={this.props.hasCancel && [PHASE_PASSPHRASE].includes(this.state.phase)}
fixedWidth={false}
>
-
- {content}
-
+
+ {content}
+
);
}
diff --git a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.js b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.js
index eeb68b94bd..60f2ca9168 100644
--- a/src/async-components/views/dialogs/security/ExportE2eKeysDialog.js
+++ b/src/async-components/views/dialogs/security/ExportE2eKeysDialog.js
@@ -170,8 +170,11 @@ export default class ExportE2eKeysDialog extends React.Component {
-
{ _t("Cancel") }
diff --git a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.js b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.js
index 670cb28b94..70fc997230 100644
--- a/src/async-components/views/dialogs/security/ImportE2eKeysDialog.js
+++ b/src/async-components/views/dialogs/security/ImportE2eKeysDialog.js
@@ -140,36 +140,36 @@ export default class ImportE2eKeysDialog extends React.Component {
-
-
- { _t("File to import") }
-
-
-
-
-
+
+
+ { _t("File to import") }
+
+
+
+
+
-
-
- { _t("Enter passphrase") }
-
-
-
-
-
+
+
+ { _t("Enter passphrase") }
+
+
+
+
+
diff --git a/src/components/structures/FilePanel.js b/src/components/structures/FilePanel.js
index 32db5c251c..d5e4b092e2 100644
--- a/src/components/structures/FilePanel.js
+++ b/src/components/structures/FilePanel.js
@@ -200,10 +200,10 @@ class FilePanel extends React.Component {
previousPhase={RightPanelPhases.RoomSummary}
>
- { _t("You must
register to use this functionality",
- {},
- { 'a': (sub) =>
{ sub } })
- }
+ { _t("You must
register to use this functionality",
+ {},
+ { 'a': (sub) =>
{ sub } })
+ }
;
} else if (this.noRoom) {
diff --git a/src/components/structures/GroupFilterPanel.js b/src/components/structures/GroupFilterPanel.js
index 976b2d81a5..7c050e7433 100644
--- a/src/components/structures/GroupFilterPanel.js
+++ b/src/components/structures/GroupFilterPanel.js
@@ -153,17 +153,17 @@ class GroupFilterPanel extends React.Component {
type="draggable-TagTile"
>
{ (provided, snapshot) => (
-
- { this.renderGlobalIcon() }
- { tags }
-
- {createButton}
-
- { provided.placeholder }
+
+ { this.renderGlobalIcon() }
+ { tags }
+
+ {createButton}
+ { provided.placeholder }
+
) }
diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js
index ed6167cbe7..3ab009d7b8 100644
--- a/src/components/structures/GroupView.js
+++ b/src/components/structures/GroupView.js
@@ -43,7 +43,7 @@ import {mediaFromMxc} from "../../customisations/Media";
import {replaceableComponent} from "../../utils/replaceableComponent";
const LONG_DESC_PLACEHOLDER = _td(
-`
HTML for your community's page
+ `
HTML for your community's page
Use the long description to introduce new members to the community, or distribute
some important links
@@ -110,14 +110,16 @@ class CategoryRoomList extends React.Component {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog(
'Failed to add the following room to the group summary',
- '', ErrorDialog,
- {
- title: _t(
- "Failed to add the following rooms to the summary of %(groupId)s:",
- {groupId: this.props.groupId},
- ),
- description: errorList.join(", "),
- });
+ '',
+ ErrorDialog,
+ {
+ title: _t(
+ "Failed to add the following rooms to the summary of %(groupId)s:",
+ {groupId: this.props.groupId},
+ ),
+ description: errorList.join(", "),
+ },
+ );
});
},
}, /*className=*/null, /*isPriority=*/false, /*isStatic=*/true);
@@ -146,8 +148,8 @@ class CategoryRoomList extends React.Component {
let catHeader =
;
if (this.props.category && this.props.category.profile) {
catHeader =
- { this.props.category.profile.name }
-
;
+ { this.props.category.profile.name }
+
;
}
return
{ catHeader }
@@ -190,13 +192,14 @@ class FeaturedRoom extends React.Component {
Modal.createTrackedDialog(
'Failed to remove room from group summary',
'', ErrorDialog,
- {
- title: _t(
- "Failed to remove the room from the summary of %(groupId)s",
- {groupId: this.props.groupId},
- ),
- description: _t("The room '%(roomName)s' could not be removed from the summary.", {roomName}),
- });
+ {
+ title: _t(
+ "Failed to remove the room from the summary of %(groupId)s",
+ {groupId: this.props.groupId},
+ ),
+ description: _t("The room '%(roomName)s' could not be removed from the summary.", {roomName}),
+ },
+ );
});
};
@@ -283,13 +286,14 @@ class RoleUserList extends React.Component {
Modal.createTrackedDialog(
'Failed to add the following users to the community summary',
'', ErrorDialog,
- {
- title: _t(
- "Failed to add the following users to the summary of %(groupId)s:",
- {groupId: this.props.groupId},
- ),
- description: errorList.join(", "),
- });
+ {
+ title: _t(
+ "Failed to add the following users to the summary of %(groupId)s:",
+ {groupId: this.props.groupId},
+ ),
+ description: errorList.join(", "),
+ },
+ );
});
},
}, /*className=*/null, /*isPriority=*/false, /*isStatic=*/true);
@@ -299,11 +303,11 @@ class RoleUserList extends React.Component {
const TintableSvg = sdk.getComponent("elements.TintableSvg");
const addButton = this.props.editing ?
(
-
-
- { _t('Add a User') }
-
- ) :
;
+
+
+ { _t('Add a User') }
+
+ ) :
;
const userNodes = this.props.users.map((u) => {
return
- { _t("Leave %(groupName)s?", {groupName: this.props.groupId}) }
- { warnings }
+ { _t("Leave %(groupName)s?", {groupName: this.props.groupId}) }
+ { warnings }
),
button: _t("Leave"),
@@ -1055,10 +1061,11 @@ export default class GroupView extends React.Component {
return null;
}
- const membershipButtonClasses = classnames([
- 'mx_RoomHeader_textButton',
- 'mx_GroupView_textButton',
- ],
+ const membershipButtonClasses = classnames(
+ [
+ 'mx_RoomHeader_textButton',
+ 'mx_GroupView_textButton',
+ ],
membershipButtonExtraClasses,
);
diff --git a/src/components/structures/MessagePanel.js b/src/components/structures/MessagePanel.js
index 132d9ab4c3..c93f07fa0f 100644
--- a/src/components/structures/MessagePanel.js
+++ b/src/components/structures/MessagePanel.js
@@ -427,8 +427,10 @@ export default class MessagePanel extends React.Component {
// we get a new DOM node (restarting the animation) when the ghost
// moves to a different event.
return (
-
+
{ hr }
);
@@ -1014,13 +1016,13 @@ class CreationGrouper {
ret.push(
- { eventTiles }
+ { eventTiles }
,
);
@@ -1222,11 +1224,11 @@ class MemberGrouper {
ret.push(
- { eventTiles }
+ { eventTiles }
,
);
diff --git a/src/components/structures/RoomStatusBar.js b/src/components/structures/RoomStatusBar.js
index 38e3cd97e8..b2f0c70bd7 100644
--- a/src/components/structures/RoomStatusBar.js
+++ b/src/components/structures/RoomStatusBar.js
@@ -200,20 +200,22 @@ export default class RoomStatusBar extends React.Component {
} else if (resourceLimitError) {
title = messageForResourceLimitError(
resourceLimitError.data.limit_type,
- resourceLimitError.data.admin_contact, {
- 'monthly_active_user': _td(
- "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. " +
- "Please contact your service administrator to continue using the service.",
- ),
- 'hs_disabled': _td(
- "Your message wasn't sent because this homeserver has been blocked by it's administrator. " +
- "Please contact your service administrator to continue using the service.",
- ),
- '': _td(
- "Your message wasn't sent because this homeserver has exceeded a resource limit. " +
- "Please contact your service administrator to continue using the service.",
- ),
- });
+ resourceLimitError.data.admin_contact,
+ {
+ 'monthly_active_user': _td(
+ "Your message wasn't sent because this homeserver has hit its Monthly Active User Limit. " +
+ "Please contact your service administrator to continue using the service.",
+ ),
+ 'hs_disabled': _td(
+ "Your message wasn't sent because this homeserver has been blocked by it's administrator. " +
+ "Please contact your service administrator to continue using the service.",
+ ),
+ '': _td(
+ "Your message wasn't sent because this homeserver has exceeded a resource limit. " +
+ "Please contact your service administrator to continue using the service.",
+ ),
+ },
+ );
} else {
title = _t('Some of your messages have not been sent');
}
@@ -265,7 +267,7 @@ export default class RoomStatusBar extends React.Component {
+ height="24" title="/!\ " alt="/!\ " />
{_t('Connectivity to the server has been lost.')}
diff --git a/src/components/structures/ScrollPanel.js b/src/components/structures/ScrollPanel.js
index a014a6e4fe..5c5062633d 100644
--- a/src/components/structures/ScrollPanel.js
+++ b/src/components/structures/ScrollPanel.js
@@ -884,16 +884,20 @@ export default class ScrollPanel extends React.Component {
// give the
an explicit role=list because Safari+VoiceOver seems to think an ordered-list with
// list-style-type: none; is no longer a list
- return (
- { this.props.fixedChildren }
-
-
- { this.props.children }
-
-
-
- );
+ className={`mx_ScrollPanel ${this.props.className}`}
+ style={this.props.style}
+ >
+ { this.props.fixedChildren }
+
+
+ { this.props.children }
+
+
+
+ );
}
}
diff --git a/src/components/structures/TimelinePanel.js b/src/components/structures/TimelinePanel.js
index 12f5d6e890..bf7794f0b0 100644
--- a/src/components/structures/TimelinePanel.js
+++ b/src/components/structures/TimelinePanel.js
@@ -785,8 +785,10 @@ class TimelinePanel extends React.Component {
return;
}
const lastDisplayedEvent = this.state.events[lastDisplayedIndex];
- this._setReadMarker(lastDisplayedEvent.getId(),
- lastDisplayedEvent.getTs());
+ this._setReadMarker(
+ lastDisplayedEvent.getId(),
+ lastDisplayedEvent.getTs(),
+ );
// the read-marker should become invisible, so that if the user scrolls
// down, they don't see it.
@@ -872,7 +874,7 @@ class TimelinePanel extends React.Component {
// The messagepanel knows where the RM is, so we must have loaded
// the relevant event.
this._messagePanel.current.scrollToEvent(this.state.readMarkerEventId,
- 0, 1/3);
+ 0, 1/3);
return;
}
@@ -1044,7 +1046,7 @@ class TimelinePanel extends React.Component {
}
if (eventId) {
this._messagePanel.current.scrollToEvent(eventId, pixelOffset,
- offsetBase);
+ offsetBase);
} else {
this._messagePanel.current.scrollToBottom();
}
@@ -1418,8 +1420,8 @@ class TimelinePanel extends React.Component {
['PREPARED', 'CATCHUP'].includes(this.state.clientSyncState)
);
const events = this.state.firstVisibleEventIndex
- ? this.state.events.slice(this.state.firstVisibleEventIndex)
- : this.state.events;
+ ? this.state.events.slice(this.state.firstVisibleEventIndex)
+ : this.state.events;
return (
- { errorSection }
+ { errorSection }
);
}
@@ -375,7 +375,7 @@ export class TermsAuthEntry extends React.Component {
if (this.props.showContinue !== false) {
// XXX: button classes
submitButton =
{_t("Accept")} ;
+ onClick={this._trySubmit} disabled={!allChecked}>{_t("Accept")};
}
return (
diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js
index 142b8c80a8..35efd12c9c 100644
--- a/src/components/views/context_menus/MessageContextMenu.js
+++ b/src/components/views/context_menus/MessageContextMenu.js
@@ -350,7 +350,7 @@ export default class MessageContextMenu extends React.Component {
>
{ _t('Source URL') }
- );
+ );
}
if (this.props.collapseReplyThread) {
diff --git a/src/components/views/dialogs/BugReportDialog.js b/src/components/views/dialogs/BugReportDialog.js
index 8948c14c7c..cbe0130649 100644
--- a/src/components/views/dialogs/BugReportDialog.js
+++ b/src/components/views/dialogs/BugReportDialog.js
@@ -184,7 +184,7 @@ export default class BugReportDialog extends React.Component {
return (
diff --git a/src/components/views/dialogs/ChangelogDialog.js b/src/components/views/dialogs/ChangelogDialog.js
index 50bc13cff5..efbeba3977 100644
--- a/src/components/views/dialogs/ChangelogDialog.js
+++ b/src/components/views/dialogs/ChangelogDialog.js
@@ -95,7 +95,7 @@ export default class ChangelogDialog extends React.Component {
description={content}
button={_t("Update")}
onFinished={this.props.onFinished}
- />
+ />
);
}
}
diff --git a/src/components/views/dialogs/ConfirmWipeDeviceDialog.js b/src/components/views/dialogs/ConfirmWipeDeviceDialog.js
index 4faaad0f7e..333e1522f1 100644
--- a/src/components/views/dialogs/ConfirmWipeDeviceDialog.js
+++ b/src/components/views/dialogs/ConfirmWipeDeviceDialog.js
@@ -39,9 +39,12 @@ export default class ConfirmWipeDeviceDialog extends React.Component {
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
return (
-
+
{_t(
diff --git a/src/components/views/dialogs/DevtoolsDialog.js b/src/components/views/dialogs/DevtoolsDialog.js
index 9f5513e0a3..8a035263cc 100644
--- a/src/components/views/dialogs/DevtoolsDialog.js
+++ b/src/components/views/dialogs/DevtoolsDialog.js
@@ -70,8 +70,16 @@ class GenericEditor extends React.PureComponent {
}
textInput(id, label) {
- return ;
+ return ;
}
}
@@ -155,7 +163,7 @@ export class SendCustomEvent extends GenericEditor {
+ autoComplete="off" value={this.state.evContent} onChange={this._onChange} element="textarea" />
{ _t('Back') }
@@ -239,7 +247,7 @@ class SendAccountData extends GenericEditor {
+ autoComplete="off" value={this.state.evContent} onChange={this._onChange} element="textarea" />
{ _t('Back') }
@@ -315,15 +323,15 @@ class FilteredList extends React.PureComponent {
const TruncatedList = sdk.getComponent("elements.TruncatedList");
return
+ type="text" autoComplete="off" value={this.props.query} onChange={this.onQuery}
+ className="mx_TextInputDialog_input mx_DevTools_RoomStateExplorer_query"
+ // force re-render so that autoFocus is applied when this component is re-used
+ key={this.props.children[0] ? this.props.children[0].key : ''} />
+ getChildCount={this.getChildCount}
+ truncateAt={this.state.truncateAt}
+ createOverflowElement={this.createOverflowElement} />
;
}
}
@@ -647,7 +655,7 @@ function VerificationRequest({txnId, request}) {
/* Note that request.timeout is a getter, so its value changes */
const id = setInterval(() => {
- setRequestTimeout(request.timeout);
+ setRequestTimeout(request.timeout);
}, 500);
return () => { clearInterval(id); };
@@ -941,35 +949,35 @@ class SettingsExplorer extends React.Component {
/>
@@ -998,11 +1006,11 @@ class SettingsExplorer extends React.Component {
-
- {_t("Level")}
- {_t("Settable at global")}
- {_t("Settable at room")}
-
+
+ {_t("Level")}
+ {_t("Settable at global")}
+ {_t("Settable at room")}
+
{LEVEL_ORDER.map(lvl => (
diff --git a/src/components/views/dialogs/IntegrationsDisabledDialog.js b/src/components/views/dialogs/IntegrationsDisabledDialog.js
index 0e9878f4bc..dd7a51420e 100644
--- a/src/components/views/dialogs/IntegrationsDisabledDialog.js
+++ b/src/components/views/dialogs/IntegrationsDisabledDialog.js
@@ -42,9 +42,12 @@ export default class IntegrationsDisabledDialog extends React.Component {
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
return (
-
+
{_t("Enable 'Manage Integrations' in Settings to do this.")}
diff --git a/src/components/views/dialogs/IntegrationsImpossibleDialog.js b/src/components/views/dialogs/IntegrationsImpossibleDialog.js
index 9bc9d02ba6..e14d40aaef 100644
--- a/src/components/views/dialogs/IntegrationsImpossibleDialog.js
+++ b/src/components/views/dialogs/IntegrationsImpossibleDialog.js
@@ -37,9 +37,12 @@ export default class IntegrationsImpossibleDialog extends React.Component {
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
return (
-
+
{_t(
diff --git a/src/components/views/dialogs/KeySignatureUploadFailedDialog.js b/src/components/views/dialogs/KeySignatureUploadFailedDialog.js
index 25eb7a90d2..bcb4d4f9b9 100644
--- a/src/components/views/dialogs/KeySignatureUploadFailedDialog.js
+++ b/src/components/views/dialogs/KeySignatureUploadFailedDialog.js
@@ -24,7 +24,7 @@ export default function KeySignatureUploadFailedDialog({
source,
continuation,
onFinished,
- }) {
+}) {
const RETRIES = 2;
const BaseDialog = sdk.getComponent('dialogs.BaseDialog');
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
@@ -84,10 +84,10 @@ export default function KeySignatureUploadFailedDialog({
} else {
body = (
{success ?
-
{_t("Upload completed")} :
- cancelled ?
-
{_t("Cancelled signature upload")} :
-
{_t("Unable to upload")} }
+
{_t("Upload completed")} :
+ cancelled ?
+
{_t("Cancelled signature upload")} :
+
{_t("Unable to upload")} }
+
{content}
);
diff --git a/src/components/views/dialogs/RoomSettingsDialog.js b/src/components/views/dialogs/RoomSettingsDialog.js
index 9c2f23ef22..b6c4d42243 100644
--- a/src/components/views/dialogs/RoomSettingsDialog.js
+++ b/src/components/views/dialogs/RoomSettingsDialog.js
@@ -116,8 +116,12 @@ export default class RoomSettingsDialog extends React.Component {
const roomName = MatrixClientPeg.get().getRoom(this.props.roomId).name;
return (
-
+
diff --git a/src/components/views/dialogs/SessionRestoreErrorDialog.js b/src/components/views/dialogs/SessionRestoreErrorDialog.js
index 50d7fbea09..43e73a2f83 100644
--- a/src/components/views/dialogs/SessionRestoreErrorDialog.js
+++ b/src/components/views/dialogs/SessionRestoreErrorDialog.js
@@ -98,7 +98,7 @@ export default class SessionRestoreErrorDialog extends React.Component {
"may be incompatible with this version. Close this window and return " +
"to the more recent version.",
{ brand },
- ) }
+ ) }
{ _t(
"Clearing your browser's storage may fix the problem, but will sign you " +
diff --git a/src/components/views/dialogs/StorageEvictedDialog.js b/src/components/views/dialogs/StorageEvictedDialog.js
index 15c5347644..1e17ab1738 100644
--- a/src/components/views/dialogs/StorageEvictedDialog.js
+++ b/src/components/views/dialogs/StorageEvictedDialog.js
@@ -45,10 +45,12 @@ export default class StorageEvictedDialog extends React.Component {
let logRequest;
if (SdkConfig.get().bug_report_endpoint_url) {
logRequest = _t(
- "To help us prevent this in future, please send us logs .", {},
- {
- a: text => {text} ,
- });
+ "To help us prevent this in future, please send us logs .",
+ {},
+ {
+ a: text => {text} ,
+ },
+ );
}
return (
diff --git a/src/components/views/dialogs/UserSettingsDialog.js b/src/components/views/dialogs/UserSettingsDialog.js
index eb9eaeb5dd..e7f6953589 100644
--- a/src/components/views/dialogs/UserSettingsDialog.js
+++ b/src/components/views/dialogs/UserSettingsDialog.js
@@ -155,8 +155,12 @@ export default class UserSettingsDialog extends React.Component {
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
return (
-
+
diff --git a/src/components/views/dialogs/VerificationRequestDialog.js b/src/components/views/dialogs/VerificationRequestDialog.js
index 205597a1c4..9281275e6a 100644
--- a/src/components/views/dialogs/VerificationRequestDialog.js
+++ b/src/components/views/dialogs/VerificationRequestDialog.js
@@ -52,11 +52,13 @@ export default class VerificationRequestDialog extends React.Component {
const title = request && request.isSelfVerification ?
_t("Verify other login") : _t("Verification Request");
- return
+ return
+
{_t("The widget will verify your user ID, but won't be able to perform actions for you:")}
diff --git a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.js b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.js
index 43fb25f152..e71983b074 100644
--- a/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.js
+++ b/src/components/views/dialogs/security/ConfirmDestroyCrossSigningDialog.js
@@ -40,10 +40,11 @@ export default class ConfirmDestroyCrossSigningDialog extends React.Component {
return (
+ className='mx_ConfirmDestroyCrossSigningDialog'
+ hasCancel={true}
+ onFinished={this.props.onFinished}
+ title={_t("Destroy cross-signing keys?")}
+ >
{_t(
diff --git a/src/components/views/dialogs/security/RestoreKeyBackupDialog.js b/src/components/views/dialogs/security/RestoreKeyBackupDialog.js
index 1fafe03d95..4ac15ab5a3 100644
--- a/src/components/views/dialogs/security/RestoreKeyBackupDialog.js
+++ b/src/components/views/dialogs/security/RestoreKeyBackupDialog.js
@@ -373,21 +373,24 @@ export default class RestoreKeyBackupDialog extends React.PureComponent {
{_t(
"If you've forgotten your Security Phrase you can "+
"use your Security Key or " +
- "set up new recovery options "
- , {}, {
- button1: s =>
- {s}
- ,
- button2: s =>
- {s}
- ,
- })}
+ "set up new recovery options ",
+ {},
+ {
+ button1: s =>
+ {s}
+ ,
+ button2: s =>
+ {s}
+ ,
+ })}
;
} else {
title = _t("Enter Security Key");
@@ -435,15 +438,17 @@ export default class RestoreKeyBackupDialog extends React.PureComponent {
{_t(
"If you've forgotten your Security Key you can "+
- "set up new recovery options "
- , {}, {
- button: s =>
- {s}
- ,
- })}
+ "set up new recovery options ",
+ {},
+ {
+ button: s =>
+ {s}
+ ,
+ },
+ )}
;
}
@@ -452,9 +457,9 @@ export default class RestoreKeyBackupDialog extends React.PureComponent {
onFinished={this.props.onFinished}
title={title}
>
-
- {content}
-
+
+ {content}
+
);
}
diff --git a/src/components/views/elements/ActionButton.js b/src/components/views/elements/ActionButton.js
index 1714891cb5..9903c631b2 100644
--- a/src/components/views/elements/ActionButton.js
+++ b/src/components/views/elements/ActionButton.js
@@ -70,8 +70,8 @@ export default class ActionButton extends React.Component {
}
const icon = this.props.iconPath ?
- (
) :
- undefined;
+ (
) :
+ undefined;
const classNames = ["mx_RoleButton"];
if (this.props.className) {
diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js
index e206fda797..b898ad2ebc 100644
--- a/src/components/views/elements/AppTile.js
+++ b/src/components/views/elements/AppTile.js
@@ -109,7 +109,7 @@ export default class AppTile extends React.Component {
const childContentProtocol = u.protocol;
if (parentContentProtocol === 'https:' && childContentProtocol !== 'https:') {
console.warn("Refusing to load mixed-content app:",
- parentContentProtocol, childContentProtocol, window.location, this.props.app.url);
+ parentContentProtocol, childContentProtocol, window.location, this.props.app.url);
return true;
}
return false;
diff --git a/src/components/views/elements/EditableItemList.js b/src/components/views/elements/EditableItemList.js
index ff62f169fa..d8ec5af278 100644
--- a/src/components/views/elements/EditableItemList.js
+++ b/src/components/views/elements/EditableItemList.js
@@ -65,12 +65,18 @@ export class EditableItem extends React.Component {
{_t("Are you sure?")}
-
+
{_t("Yes")}
-
+
{_t("No")}
@@ -121,11 +127,15 @@ export default class EditableItemList extends React.Component {
_renderNewItemField() {
return (
-
+
{errorSection}
{actionRow}
diff --git a/src/components/views/settings/DevicesPanel.js b/src/components/views/settings/DevicesPanel.js
index e7d300b0f8..b1ad605a37 100644
--- a/src/components/views/settings/DevicesPanel.js
+++ b/src/components/views/settings/DevicesPanel.js
@@ -214,7 +214,7 @@ export default class DevicesPanel extends React.Component {
const deleteButton = this.state.deleting ?
:
- { _t("Delete %(count)s sessions", {count: this.state.selectedDevices.length}) }
+ { _t("Delete %(count)s sessions", {count: this.state.selectedDevices.length})}
;
const classes = classNames(this.props.className, "mx_DevicesPanel");
diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js
index 25fe434994..5756536085 100644
--- a/src/components/views/settings/Notifications.js
+++ b/src/components/views/settings/Notifications.js
@@ -100,7 +100,7 @@ export default class Notifications extends React.Component {
MatrixClientPeg.get().setPushRuleEnabled(
'global', self.state.masterPushRule.kind, self.state.masterPushRule.rule_id, !checked,
).then(function() {
- self._refreshFromServer();
+ self._refreshFromServer();
});
};
@@ -580,12 +580,12 @@ export default class Notifications extends React.Component {
"vectorRuleId": "_keywords",
"description": (
- { _t('Messages containing keywords ',
- {},
- { 'span': (sub) =>
- {sub} ,
- },
- )}
+ { _t('Messages containing keywords ',
+ {},
+ { 'span': (sub) =>
+ {sub} ,
+ },
+ )}
),
"vectorState": self.state.vectorContentRules.vectorState,
@@ -743,8 +743,8 @@ export default class Notifications extends React.Component {
emailNotificationsRow(address, label) {
return
;
+ onChange={this.onEnableEmailNotificationsChange.bind(this, address)}
+ label={label} key={`emailNotif_${label}`} />;
}
render() {
@@ -757,8 +757,8 @@ export default class Notifications extends React.Component {
let masterPushRuleDiv;
if (this.state.masterPushRule) {
masterPushRuleDiv =
;
+ onChange={this.onEnableNotificationsChange}
+ label={_t('Enable notifications for this account')} />;
}
let clearNotificationsButton;
@@ -874,16 +874,16 @@ export default class Notifications extends React.Component {
{ spinner }
+ onChange={this.onEnableDesktopNotificationsChange}
+ label={_t('Enable desktop notifications for this session')} />
+ onChange={this.onEnableDesktopNotificationBodyChange}
+ label={_t('Show message in desktop notification')} />
+ onChange={this.onEnableAudioNotificationsChange}
+ label={_t('Enable audible notifications for this session')} />
{ emailNotificationsRows }
diff --git a/src/components/views/settings/ProfileSettings.js b/src/components/views/settings/ProfileSettings.js
index 971b868751..9ecf369eba 100644
--- a/src/components/views/settings/ProfileSettings.js
+++ b/src/components/views/settings/ProfileSettings.js
@@ -170,8 +170,12 @@ export default class ProfileSettings extends React.Component {
noValidate={true}
className="mx_ProfileSettings_profileForm"
>
-
+
{_t("Profile")}
diff --git a/src/components/views/settings/account/EmailAddresses.js b/src/components/views/settings/account/EmailAddresses.js
index 1ebd374173..a36369cf88 100644
--- a/src/components/views/settings/account/EmailAddresses.js
+++ b/src/components/views/settings/account/EmailAddresses.js
@@ -90,12 +90,18 @@ export class ExistingEmailAddress extends React.Component {
{_t("Remove %(email)s?", {email: this.props.email.address} )}
-
+
{_t("Remove")}
-
+
{_t("Cancel")}
@@ -228,21 +234,28 @@ export default class EmailAddresses extends React.Component {
);
if (this.state.verifying) {
addButton = (
-
-
{_t("We've sent you an email to verify your address. Please follow the instructions there and then click the button below.")}
-
- {_t("Continue")}
-
-
+
+
{_t("We've sent you an email to verify your address. Please follow the instructions there and then click the button below.")}
+
+ {_t("Continue")}
+
+
);
}
return (
{existingEmailElements}
-
@@ -246,8 +252,11 @@ export default class PhoneNumbers extends React.Component {
value={this.state.newPhoneNumberCode}
onChange={this._onChangeNewPhoneNumberCode}
/>
-
+
{_t("Continue")}
diff --git a/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.js b/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.js
index cd4a043622..139cfd5fbd 100644
--- a/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.js
+++ b/src/components/views/settings/tabs/room/GeneralRoomSettingsTab.js
@@ -80,9 +80,11 @@ export default class GeneralRoomSettingsTab extends React.Component {
flairSection = <>
{_t("Flair")}
-
+
>;
}
@@ -97,8 +99,8 @@ export default class GeneralRoomSettingsTab extends React.Component {
{_t("Room Addresses")}
+ canSetCanonicalAlias={canSetCanonical} canSetAliases={canSetAliases}
+ canonicalAliasEvent={canonicalAliasEv} aliasEvents={aliasEvents} />
{_t("Other")}
{ flairSection }
diff --git a/src/components/views/settings/tabs/room/NotificationSettingsTab.js b/src/components/views/settings/tabs/room/NotificationSettingsTab.js
index baefb5ae20..fa56fa2cb6 100644
--- a/src/components/views/settings/tabs/room/NotificationSettingsTab.js
+++ b/src/components/views/settings/tabs/room/NotificationSettingsTab.js
@@ -155,7 +155,7 @@ export default class NotificationsSettingsTab extends React.Component {
{_t("Notification sound")}: {this.state.currentSound}
- {_t("Reset")}
+ {_t("Reset")}
@@ -167,11 +167,11 @@ export default class NotificationsSettingsTab extends React.Component {
{currentUploadedFile}
- {_t("Browse")}
+ {_t("Browse")}
- {_t("Save")}
+ {_t("Save")}
diff --git a/src/components/views/settings/tabs/user/GeneralUserSettingsTab.js b/src/components/views/settings/tabs/user/GeneralUserSettingsTab.js
index a216aeccbe..5118414903 100644
--- a/src/components/views/settings/tabs/user/GeneralUserSettingsTab.js
+++ b/src/components/views/settings/tabs/user/GeneralUserSettingsTab.js
@@ -323,8 +323,11 @@ export default class GeneralUserSettingsTab extends React.Component {
return (
{_t("Language and region")}
-
+
);
}
@@ -333,8 +336,10 @@ export default class GeneralUserSettingsTab extends React.Component {
return (
{_t("Spell check dictionaries")}
-
+
);
}
diff --git a/src/components/views/settings/tabs/user/SecurityUserSettingsTab.js b/src/components/views/settings/tabs/user/SecurityUserSettingsTab.js
index da41f2f0dc..53ed511b0a 100644
--- a/src/components/views/settings/tabs/user/SecurityUserSettingsTab.js
+++ b/src/components/views/settings/tabs/user/SecurityUserSettingsTab.js
@@ -257,12 +257,16 @@ export default class SecurityUserSettingsTab extends React.Component {
const userIds = !ignoredUserIds?.length
? _t('You have no ignored users.')
- : ignoredUserIds.map((u) => );
+ : ignoredUserIds.map((u) => {
+ return (
+
+ );
+ });
return (
diff --git a/src/components/views/settings/tabs/user/VoiceUserSettingsTab.js b/src/components/views/settings/tabs/user/VoiceUserSettingsTab.js
index d8adab55f6..362059f8ed 100644
--- a/src/components/views/settings/tabs/user/VoiceUserSettingsTab.js
+++ b/src/components/views/settings/tabs/user/VoiceUserSettingsTab.js
@@ -176,8 +176,8 @@ export default class VoiceUserSettingsTab extends React.Component {
const defaultDevice = getDefaultDevice(audioOutputs);
speakerDropdown = (
+ value={this.state.activeAudioOutput || defaultDevice}
+ onChange={this._setAudioOutput}>
{this._renderDeviceOptions(audioOutputs, 'audioOutput')}
);
@@ -188,8 +188,8 @@ export default class VoiceUserSettingsTab extends React.Component {
const defaultDevice = getDefaultDevice(audioInputs);
microphoneDropdown = (
+ value={this.state.activeAudioInput || defaultDevice}
+ onChange={this._setAudioInput}>
{this._renderDeviceOptions(audioInputs, 'audioInput')}
);
@@ -200,8 +200,8 @@ export default class VoiceUserSettingsTab extends React.Component {
const defaultDevice = getDefaultDevice(videoInputs);
webcamDropdown = (
+ value={this.state.activeVideoInput || defaultDevice}
+ onChange={this._setVideoInput}>
{this._renderDeviceOptions(videoInputs, 'videoInput')}
);
diff --git a/src/components/views/verification/VerificationCancelled.js b/src/components/views/verification/VerificationCancelled.js
index 0bbaea1804..c57094d9b5 100644
--- a/src/components/views/verification/VerificationCancelled.js
+++ b/src/components/views/verification/VerificationCancelled.js
@@ -29,14 +29,14 @@ export default class VerificationCancelled extends React.Component {
render() {
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
return
-
{_t(
- "The other party cancelled the verification.",
- )}
-
+
{_t(
+ "The other party cancelled the verification.",
+ )}
+
;
}
}
diff --git a/src/indexing/EventIndex.js b/src/indexing/EventIndex.js
index 2dcdb9e3a3..1cb44f240d 100644
--- a/src/indexing/EventIndex.js
+++ b/src/indexing/EventIndex.js
@@ -127,8 +127,13 @@ export default class EventIndex extends EventEmitter {
this.crawlerCheckpoints.push(forwardCheckpoint);
}
} catch (e) {
- console.log("EventIndex: Error adding initial checkpoints for room",
- room.roomId, backCheckpoint, forwardCheckpoint, e);
+ console.log(
+ "EventIndex: Error adding initial checkpoints for room",
+ room.roomId,
+ backCheckpoint,
+ forwardCheckpoint,
+ e,
+ );
}
}));
}
@@ -379,8 +384,12 @@ export default class EventIndex extends EventEmitter {
try {
await indexManager.addCrawlerCheckpoint(checkpoint);
} catch (e) {
- console.log("EventIndex: Error adding new checkpoint for room",
- room.roomId, checkpoint, e);
+ console.log(
+ "EventIndex: Error adding new checkpoint for room",
+ room.roomId,
+ checkpoint,
+ e,
+ );
}
this.crawlerCheckpoints.push(checkpoint);
@@ -459,7 +468,7 @@ export default class EventIndex extends EventEmitter {
} catch (e) {
if (e.httpStatus === 403) {
console.log("EventIndex: Removing checkpoint as we don't have ",
- "permissions to fetch messages from this room.", checkpoint);
+ "permissions to fetch messages from this room.", checkpoint);
try {
await indexManager.removeCrawlerCheckpoint(checkpoint);
} catch (e) {
@@ -589,7 +598,7 @@ export default class EventIndex extends EventEmitter {
// to do here anymore.
if (!newCheckpoint) {
console.log("EventIndex: The server didn't return a valid ",
- "new checkpoint, not continuing the crawl.", checkpoint);
+ "new checkpoint, not continuing the crawl.", checkpoint);
continue;
}
@@ -599,12 +608,12 @@ export default class EventIndex extends EventEmitter {
// the new checkpoint to be used by the crawler.
if (eventsAlreadyAdded === true && newCheckpoint.fullCrawl !== true) {
console.log("EventIndex: Checkpoint had already all events",
- "added, stopping the crawl", checkpoint);
+ "added, stopping the crawl", checkpoint);
await indexManager.removeCrawlerCheckpoint(newCheckpoint);
} else {
if (eventsAlreadyAdded === true) {
console.log("EventIndex: Checkpoint had already all events",
- "added, but continuing due to a full crawl", checkpoint);
+ "added, but continuing due to a full crawl", checkpoint);
}
this.crawlerCheckpoints.push(newCheckpoint);
}
@@ -776,8 +785,14 @@ export default class EventIndex extends EventEmitter {
* @returns {Promise
} Resolves to true if events were added to the
* timeline, false otherwise.
*/
- async populateFileTimeline(timelineSet, timeline, room, limit = 10,
- fromEvent = null, direction = EventTimeline.BACKWARDS) {
+ async populateFileTimeline(
+ timelineSet,
+ timeline,
+ room,
+ limit = 10,
+ fromEvent = null,
+ direction = EventTimeline.BACKWARDS,
+ ) {
const matrixEvents = await this.loadFileEvents(room, limit, fromEvent, direction);
// If this is a normal fill request, not a pagination request, we need
@@ -807,7 +822,7 @@ export default class EventIndex extends EventEmitter {
}
console.log("EventIndex: Populating file panel with", matrixEvents.length,
- "events and setting the pagination token to", paginationToken);
+ "events and setting the pagination token to", paginationToken);
timeline.setPaginationToken(paginationToken, EventTimeline.BACKWARDS);
return ret;
diff --git a/src/stores/CustomRoomTagStore.js b/src/stores/CustomRoomTagStore.js
index edfc0003cf..55c9699f7a 100644
--- a/src/stores/CustomRoomTagStore.js
+++ b/src/stores/CustomRoomTagStore.js
@@ -124,15 +124,15 @@ class CustomRoomTagStore extends EventEmitter {
const tags = Object.assign({}, oldTags, tag);
this._setState({tags});
}
+ break;
}
- break;
case 'on_client_not_viable':
case 'on_logged_out': {
// we assume to always have a tags object in the state
this._state = {tags: {}};
RoomListStore.instance.off(LISTS_UPDATE_EVENT, this._onListsUpdated);
+ break;
}
- break;
}
}
diff --git a/src/stores/GroupFilterOrderStore.js b/src/stores/GroupFilterOrderStore.js
index 492322146e..b18abaa001 100644
--- a/src/stores/GroupFilterOrderStore.js
+++ b/src/stores/GroupFilterOrderStore.js
@@ -168,7 +168,7 @@ class GroupFilterOrderStore extends Store {
Analytics.trackEvent('FilterStore', 'select_tag');
}
- break;
+ break;
case 'deselect_tags':
if (payload.tag) {
// if a tag is passed, only deselect that tag
@@ -181,7 +181,7 @@ class GroupFilterOrderStore extends Store {
});
}
Analytics.trackEvent('FilterStore', 'deselect_tags');
- break;
+ break;
case 'on_client_not_viable':
case 'on_logged_out': {
// Reset state without pushing an update to the view, which generally assumes that
@@ -207,8 +207,8 @@ class GroupFilterOrderStore extends Store {
groupIds.forEach(groupId => {
const rooms =
GroupStore.getGroupRooms(groupId)
- .map(r => client.getRoom(r.roomId)) // to Room objects
- .filter(r => r !== null && r !== undefined); // filter out rooms we haven't joined from the group
+ .map(r => client.getRoom(r.roomId)) // to Room objects
+ .filter(r => r !== null && r !== undefined); // filter out rooms we haven't joined from the group
const badge = rooms && RoomNotifs.aggregateNotificationCount(rooms);
changedBadges[groupId] = (badge && badge.count !== 0) ? badge : undefined;
});
diff --git a/src/utils/MegolmExportEncryption.js b/src/utils/MegolmExportEncryption.js
index be7472901a..6f5c7104b1 100644
--- a/src/utils/MegolmExportEncryption.js
+++ b/src/utils/MegolmExportEncryption.js
@@ -310,8 +310,7 @@ function unpackMegolmKeyFile(data) {
// look for the end line
while (1) {
const lineEnd = fileStr.indexOf('\n', lineStart);
- const line = fileStr.slice(lineStart, lineEnd < 0 ? undefined : lineEnd)
- .trim();
+ const line = fileStr.slice(lineStart, lineEnd < 0 ? undefined : lineEnd).trim();
if (line === TRAILER_LINE) {
break;
}
diff --git a/test/autocomplete/QueryMatcher-test.js b/test/autocomplete/QueryMatcher-test.js
index 3d383f08d7..cae71841d4 100644
--- a/test/autocomplete/QueryMatcher-test.js
+++ b/test/autocomplete/QueryMatcher-test.js
@@ -177,7 +177,7 @@ describe('QueryMatcher', function() {
const qm = new QueryMatcher(NONWORDOBJECTS, {
keys: ["name"],
shouldMatchWordsOnly: false,
- });
+ });
const results = qm.match('bob');
expect(results.length).toBe(1);
diff --git a/test/components/views/dialogs/AccessSecretStorageDialog-test.js b/test/components/views/dialogs/AccessSecretStorageDialog-test.js
index 13b39ab0d0..d9e07a2d74 100644
--- a/test/components/views/dialogs/AccessSecretStorageDialog-test.js
+++ b/test/components/views/dialogs/AccessSecretStorageDialog-test.js
@@ -26,9 +26,9 @@ describe("AccessSecretStorageDialog", function() {
it("Closes the dialog if _onRecoveryKeyNext is called with a valid key", (done) => {
const testInstance = TestRenderer.create(
p && p.recoveryKey && p.recoveryKey == "a"}
- onFinished={(v) => {
- if (v) { done(); }
+ checkPrivateKey={(p) => p && p.recoveryKey && p.recoveryKey == "a"}
+ onFinished={(v) => {
+ if (v) { done(); }
}}
/>,
);
@@ -43,7 +43,7 @@ describe("AccessSecretStorageDialog", function() {
it("Considers a valid key to be valid", async function() {
const testInstance = TestRenderer.create(
true}
+ checkPrivateKey={() => true}
/>,
);
const v = "asdf";
@@ -61,7 +61,7 @@ describe("AccessSecretStorageDialog", function() {
it("Notifies the user if they input an invalid Security Key", async function(done) {
const testInstance = TestRenderer.create(
false}
+ checkPrivateKey={async () => false}
/>,
);
const e = { target: { value: "a" } };
@@ -87,12 +87,14 @@ describe("AccessSecretStorageDialog", function() {
it("Notifies the user if they input an invalid passphrase", async function(done) {
const testInstance = TestRenderer.create(
false}
- onFinished={() => {}}
- keyInfo={ { passphrase: {
- salt: 'nonempty',
- iterations: 2,
- } } }
+ checkPrivateKey={() => false}
+ onFinished={() => {}}
+ keyInfo={{
+ passphrase: {
+ salt: 'nonempty',
+ iterations: 2,
+ },
+ }}
/>,
);
const e = { target: { value: "a" } };
diff --git a/test/components/views/elements/MemberEventListSummary-test.js b/test/components/views/elements/MemberEventListSummary-test.js
index dd6febc7d7..95bf206d02 100644
--- a/test/components/views/elements/MemberEventListSummary-test.js
+++ b/test/components/views/elements/MemberEventListSummary-test.js
@@ -245,8 +245,7 @@ describe('MemberEventListSummary', function() {
);
});
- it('truncates multiple sequences of repetitions with other events between',
- function() {
+ it('truncates multiple sequences of repetitions with other events between', function() {
const events = generateEvents([
{
userId: "@user_1:some.domain",
@@ -395,8 +394,7 @@ describe('MemberEventListSummary', function() {
);
});
- it('correctly orders sequences of transitions by the order of their first event',
- function() {
+ it('correctly orders sequences of transitions by the order of their first event', function() {
const events = generateEvents([
{
userId: "@user_2:some.domain",
@@ -568,8 +566,7 @@ describe('MemberEventListSummary', function() {
);
});
- it('handles invitation plurals correctly when there are multiple invites',
- function() {
+ it('handles invitation plurals correctly when there are multiple invites', function() {
const events = generateEvents([
{
userId: "@user_1:some.domain",
diff --git a/test/components/views/rooms/MemberList-test.js b/test/components/views/rooms/MemberList-test.js
index 068d358dcd..093e5588d0 100644
--- a/test/components/views/rooms/MemberList-test.js
+++ b/test/components/views/rooms/MemberList-test.js
@@ -100,7 +100,7 @@ describe('MemberList', () => {
memberList = r;
};
root = ReactDOM.render( , parentDiv);
+ wrappedRef={gatherWrappedRef} />, parentDiv);
});
afterEach((done) => {
diff --git a/test/components/views/rooms/RoomList-test.js b/test/components/views/rooms/RoomList-test.js
index d3211f564c..bfb8e1afd4 100644
--- a/test/components/views/rooms/RoomList-test.js
+++ b/test/components/views/rooms/RoomList-test.js
@@ -70,8 +70,9 @@ describe('RoomList', () => {
root = ReactDOM.render(
{}} />
-
- , parentDiv);
+ ,
+ parentDiv,
+ );
ReactTestUtils.findRenderedComponentWithType(root, RoomList);
movingRoom = createRoom({name: 'Moving room'});
diff --git a/test/end-to-end-tests/src/session.js b/test/end-to-end-tests/src/session.js
index 433baa5e48..4c611ef877 100644
--- a/test/end-to-end-tests/src/session.js
+++ b/test/end-to-end-tests/src/session.js
@@ -93,10 +93,10 @@ module.exports = class ElementSession {
const type = req.resourceType();
const response = await req.response();
//if (type === 'xhr' || type === 'fetch') {
- buffer += `${type} ${response.status()} ${req.method()} ${req.url()} \n`;
- // if (req.method() === "POST") {
- // buffer += " Post data: " + req.postData();
- // }
+ buffer += `${type} ${response.status()} ${req.method()} ${req.url()} \n`;
+ // if (req.method() === "POST") {
+ // buffer += " Post data: " + req.postData();
+ // }
//}
});
return {
diff --git a/test/utils/MegolmExportEncryption-test.js b/test/utils/MegolmExportEncryption-test.js
index e0ed5ba26a..07ec03860b 100644
--- a/test/utils/MegolmExportEncryption-test.js
+++ b/test/utils/MegolmExportEncryption-test.js
@@ -84,22 +84,22 @@ describe('MegolmExportEncryption', function() {
it('should handle missing header', function() {
const input=stringToArray(`-----`);
return MegolmExportEncryption.decryptMegolmKeyFile(input, '')
- .then((res) => {
- throw new Error('expected to throw');
- }, (error) => {
- expect(error.message).toEqual('Header line not found');
- });
+ .then((res) => {
+ throw new Error('expected to throw');
+ }, (error) => {
+ expect(error.message).toEqual('Header line not found');
+ });
});
it('should handle missing trailer', function() {
const input=stringToArray(`-----BEGIN MEGOLM SESSION DATA-----
-----`);
return MegolmExportEncryption.decryptMegolmKeyFile(input, '')
- .then((res) => {
- throw new Error('expected to throw');
- }, (error) => {
- expect(error.message).toEqual('Trailer line not found');
- });
+ .then((res) => {
+ throw new Error('expected to throw');
+ }, (error) => {
+ expect(error.message).toEqual('Trailer line not found');
+ });
});
it('should handle a too-short body', function() {
@@ -109,11 +109,11 @@ cissyYBxjsfsAn
-----END MEGOLM SESSION DATA-----
`);
return MegolmExportEncryption.decryptMegolmKeyFile(input, '')
- .then((res) => {
- throw new Error('expected to throw');
- }, (error) => {
- expect(error.message).toEqual('Invalid file: too short');
- });
+ .then((res) => {
+ throw new Error('expected to throw');
+ }, (error) => {
+ expect(error.message).toEqual('Invalid file: too short');
+ });
});
// TODO find a subtlecrypto shim which doesn't break this test
diff --git a/test/utils/ShieldUtils-test.js b/test/utils/ShieldUtils-test.js
index bea3d26565..fdf4f527ee 100644
--- a/test/utils/ShieldUtils-test.js
+++ b/test/utils/ShieldUtils-test.js
@@ -26,7 +26,7 @@ describe("mkClient self-test", function() {
["@TF:h", true],
["@FT:h", false],
["@FF:h", false]],
- )("behaves well for user trust %s", (userId, trust) => {
+ )("behaves well for user trust %s", (userId, trust) => {
expect(mkClient().checkUserTrust(userId).isCrossSigningVerified()).toBe(trust);
});
@@ -35,7 +35,7 @@ describe("mkClient self-test", function() {
["@TF:h", false],
["@FT:h", true],
["@FF:h", false]],
- )("behaves well for device trust %s", (userId, trust) => {
+ )("behaves well for device trust %s", (userId, trust) => {
expect(mkClient().checkDeviceTrust(userId, "device").isVerified()).toBe(trust);
});
});