176 lines
5.8 KiB
JavaScript
176 lines
5.8 KiB
JavaScript
/*
|
|
Copyright 2017 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import sdk from 'matrix-react-sdk';
|
|
import SdkConfig from 'matrix-react-sdk/lib/SdkConfig';
|
|
import Modal from 'matrix-react-sdk/lib/Modal';
|
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
|
|
|
export default class BugReportDialog extends React.Component {
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.state = {
|
|
sendLogs: true,
|
|
busy: false,
|
|
err: null,
|
|
text: "",
|
|
progress: null,
|
|
};
|
|
this._unmounted = false;
|
|
this._onSubmit = this._onSubmit.bind(this);
|
|
this._onCancel = this._onCancel.bind(this);
|
|
this._onTextChange = this._onTextChange.bind(this);
|
|
this._onSendLogsChange = this._onSendLogsChange.bind(this);
|
|
this._sendProgressCallback = this._sendProgressCallback.bind(this);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this._unmounted = true;
|
|
}
|
|
|
|
_onCancel(ev) {
|
|
this.props.onFinished(false);
|
|
}
|
|
|
|
_onSubmit(ev) {
|
|
const sendLogs = this.state.sendLogs;
|
|
const userText = this.state.text;
|
|
if (!sendLogs && userText.trim().length === 0) {
|
|
this.setState({
|
|
err: _t("Please describe the bug and/or send logs."),
|
|
});
|
|
return;
|
|
}
|
|
this.setState({ busy: true, progress: null, err: null });
|
|
this._sendProgressCallback(_t("Loading bug report module"));
|
|
|
|
require(['../../../vector/submit-rageshake'], (s) => {
|
|
s(SdkConfig.get().bug_report_endpoint_url, {
|
|
userText: userText,
|
|
sendLogs: sendLogs,
|
|
progressCallback: this._sendProgressCallback,
|
|
}).then(() => {
|
|
if (!this._unmounted) {
|
|
this.props.onFinished(false);
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
Modal.createTrackedDialog('Bug report sent', '', QuestionDialog, {
|
|
title: _t('Bug report sent'),
|
|
description: _t('Thank you!'),
|
|
hasCancelButton: false,
|
|
});
|
|
}
|
|
}, (err) => {
|
|
if (!this._unmounted) {
|
|
this.setState({
|
|
busy: false,
|
|
progress: null,
|
|
err: _t("Failed to send report: ") + `${err.message}`,
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
_onTextChange(ev) {
|
|
this.setState({ text: ev.target.value });
|
|
}
|
|
|
|
_onSendLogsChange(ev) {
|
|
this.setState({ sendLogs: ev.target.checked });
|
|
}
|
|
|
|
_sendProgressCallback(progress) {
|
|
if (this._unmounted) {
|
|
return;
|
|
}
|
|
this.setState({progress: progress});
|
|
}
|
|
|
|
render() {
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
|
|
|
let error = null;
|
|
if (this.state.err) {
|
|
error = <div className="error">
|
|
{this.state.err}
|
|
</div>;
|
|
}
|
|
|
|
let cancelButton = null;
|
|
if (!this.state.busy) {
|
|
cancelButton = <button onClick={this._onCancel}>
|
|
{ _t("Cancel") }
|
|
</button>;
|
|
}
|
|
|
|
let progress = null;
|
|
if (this.state.busy) {
|
|
progress = (
|
|
<div className="progress">
|
|
<Loader />
|
|
{this.state.progress} ...
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="mx_BugReportDialog">
|
|
<div className="mx_Dialog_title">
|
|
{ _t("Report a bug") }
|
|
</div>
|
|
<div className="mx_Dialog_content">
|
|
<p>
|
|
{ _t("Please describe the bug. What did you do? What did you expect to happen? What actually happened?") }
|
|
</p>
|
|
<textarea
|
|
className="mx_BugReportDialog_input"
|
|
rows={5}
|
|
onChange={this._onTextChange}
|
|
value={this.state.text}
|
|
placeholder={_t("Describe your problem here.")}
|
|
/>
|
|
<p>
|
|
{ _t("In order to diagnose problems, logs from this client will be sent with this bug report. If you would prefer to only send the text above, please untick:") }
|
|
</p>
|
|
<input type="checkbox" checked={this.state.sendLogs}
|
|
onChange={this._onSendLogsChange} id="mx_BugReportDialog_logs"/>
|
|
<label htmlFor="mx_BugReportDialog_logs">
|
|
{ _t("Send logs") }
|
|
</label>
|
|
{progress}
|
|
{error}
|
|
</div>
|
|
<div className="mx_Dialog_buttons">
|
|
<button
|
|
className="mx_Dialog_primary danger"
|
|
onClick={this._onSubmit}
|
|
autoFocus={true}
|
|
disabled={this.state.busy}
|
|
>
|
|
{ _t("Send") }
|
|
</button>
|
|
|
|
{cancelButton}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
BugReportDialog.propTypes = {
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
};
|