From 3fd1a366bf4eece8cf3de88fd190d08f10a70826 Mon Sep 17 00:00:00 2001
From: Michael Telatynski <7t3chguy@gmail.com>
Date: Thu, 10 Aug 2017 23:13:40 +0100
Subject: [PATCH] add back button to all pages and widen textarea
---
.../views/dialogs/DevtoolsDialog.js | 63 ++++++++++---------
1 file changed, 32 insertions(+), 31 deletions(-)
diff --git a/src/components/views/dialogs/DevtoolsDialog.js b/src/components/views/dialogs/DevtoolsDialog.js
index 32cf0c0cd2..b384cfdf06 100644
--- a/src/components/views/dialogs/DevtoolsDialog.js
+++ b/src/components/views/dialogs/DevtoolsDialog.js
@@ -22,13 +22,12 @@ import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
class SendCustomEvent extends React.Component {
static propTypes = {
roomId: React.PropTypes.string.isRequired,
- onFinished: React.PropTypes.func.isRequired,
+ onBack: React.PropTypes.func.isRequired,
};
constructor(props, context) {
super(props, context);
this._send = this._send.bind(this);
- this.onCancel = this.onCancel.bind(this);
}
async _send() {
@@ -46,10 +45,6 @@ class SendCustomEvent extends React.Component {
}
}
- onCancel() {
- this.props.onFinished(false);
- }
-
render() {
return
@@ -71,12 +66,12 @@ class SendCustomEvent extends React.Component {
-
+
+
-
;
}
@@ -85,13 +80,12 @@ class SendCustomEvent extends React.Component {
class SendCustomStateEvent extends React.Component {
static propTypes = {
roomId: React.PropTypes.string.isRequired,
- onFinished: React.PropTypes.func.isRequired,
+ onBack: React.PropTypes.func.isRequired,
};
constructor(props, context) {
super(props, context);
this._send = this._send.bind(this);
- this.onCancel = this.onCancel.bind(this);
}
async _send() {
@@ -105,16 +99,12 @@ class SendCustomStateEvent extends React.Component {
this.props.onFinished(false);
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
Modal.createDialog(ErrorDialog, {
- title: 'Failed to send custom event',
+ title: 'Failed to send custom state event',
description: e.toString(),
});
}
}
- onCancel() {
- this.props.onFinished(false);
- }
-
render() {
return
@@ -143,12 +133,12 @@ class SendCustomStateEvent extends React.Component {
-
+
+
-
;
}
@@ -157,18 +147,21 @@ class SendCustomStateEvent extends React.Component {
class RoomStateExplorer extends React.Component {
static propTypes = {
roomId: React.PropTypes.string.isRequired,
- onFinished: React.PropTypes.func.isRequired,
onBack: React.PropTypes.func.isRequired,
};
constructor(props, context) {
super(props, context);
+ const room = MatrixClientPeg.get().getRoom(this.props.roomId);
+ this.roomStateEvents = room.currentState.events;
+
this.onBack = this.onBack.bind(this);
}
state = {
eventType: null,
+ event: null,
};
browseEventType(eventType) {
@@ -178,32 +171,40 @@ class RoomStateExplorer extends React.Component {
};
}
- onViewSourceClick(ev) {
- const ViewSource = sdk.getComponent('structures.ViewSource');
+ onViewSourceClick(event) {
+ const self = this;
return () => {
- Modal.createDialog(ViewSource, {
- content: ev,
- }, 'mx_Dialog_viewsource');
+ self.setState({ event });
};
}
onBack() {
- if (this.state.eventType === null) {
- this.props.onBack();
- } else {
+ if (this.state.event) {
+ this.setState({ event: null });
+ } else if (this.state.eventType) {
this.setState({ eventType: null });
+ } else {
+ this.props.onBack();
}
}
render() {
- const room = MatrixClientPeg.get().getRoom(this.props.roomId);
- const roomStateEvents = room.currentState.events;
+ if (this.state.event) {
+ return
+
+
{JSON.stringify(this.state.event, null, 2)}
+
+
+
+
+
;
+ }
const rows = [];
if (this.state.eventType === null) {
- Object.keys(roomStateEvents).forEach((evType) => {
- const stateGroup = roomStateEvents[evType];
+ Object.keys(this.roomStateEvents).forEach((evType) => {
+ const stateGroup = this.roomStateEvents[evType];
const stateKeys = Object.keys(stateGroup);
let onClickFn;
@@ -217,7 +218,7 @@ class RoomStateExplorer extends React.Component {
});
} else {
const evType = this.state.eventType;
- const stateGroup = roomStateEvents[evType];
+ const stateGroup = this.roomStateEvents[evType];
Object.keys(stateGroup).forEach((stateKey) => {
const ev = stateGroup[stateKey];
rows.push();