Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Migrate away from React.createClass for async-components. React 16 :D #3346

Merged
merged 1 commit into from
Aug 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ limitations under the License.
*/

const React = require("react");
import createReactClass from 'create-react-class';
import PropTypes from 'prop-types';
import { _t } from '../../../languageHandler';
const sdk = require('../../../index');
const MatrixClientPeg = require("../../../MatrixClientPeg");

module.exports = React.createClass({
module.exports = createReactClass({
displayName: 'EncryptedEventDialog',

propTypes: {
Expand Down
3 changes: 2 additions & 1 deletion src/async-components/views/dialogs/ExportE2eKeysDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ limitations under the License.
import FileSaver from 'file-saver';
import React from 'react';
import PropTypes from 'prop-types';
import createReactClass from 'create-react-class';
import { _t } from '../../../languageHandler';

import { MatrixClient } from 'matrix-js-sdk';
Expand All @@ -26,7 +27,7 @@ import sdk from '../../../index';
const PHASE_EDIT = 1;
const PHASE_EXPORTING = 2;

export default React.createClass({
export default createReactClass({
displayName: 'ExportE2eKeysDialog',

propTypes: {
Expand Down
3 changes: 2 additions & 1 deletion src/async-components/views/dialogs/ImportE2eKeysDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ limitations under the License.

import React from 'react';
import PropTypes from 'prop-types';
import createReactClass from 'create-react-class';

import { MatrixClient } from 'matrix-js-sdk';
import * as MegolmExportEncryption from '../../../utils/MegolmExportEncryption';
Expand All @@ -37,7 +38,7 @@ function readFileAsArrayBuffer(file) {
const PHASE_EDIT = 1;
const PHASE_IMPORTING = 2;

export default React.createClass({
export default createReactClass({
displayName: 'ImportE2eKeysDialog',

propTypes: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ limitations under the License.
*/

import React from 'react';
import createReactClass from 'create-react-class';
import sdk from '../../../../index';
import MatrixClientPeg from '../../../../MatrixClientPeg';
import { scorePassword } from '../../../../utils/PasswordScorer';
Expand Down Expand Up @@ -48,7 +49,7 @@ function selectText(target) {
* Walks the user through the process of creating an e2e key backup
* on the server.
*/
export default React.createClass({
export default createReactClass({
getInitialState: function() {
return {
phase: PHASE_PASSPHRASE,
Expand Down