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

Commit

Permalink
Merge pull request #3346 from matrix-org/t3chguy/react16_4
Browse files Browse the repository at this point in the history
Migrate away from React.createClass for async-components. React 16 :D
  • Loading branch information
t3chguy authored Aug 26, 2019
2 parents bcbd603 + 360cef6 commit 0b9f6cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/async-components/views/dialogs/EncryptedEventDialog.js
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

0 comments on commit 0b9f6cf

Please sign in to comment.