mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 02:41:31 +03:00
3948520eaa
This uses the field component in the bug report dialog, which generally improves the styling to fit in more naturally with the rest of the app so that it feels more trustworthy. Fixes https://github.com/vector-im/riot-web/issues/9343
197 lines
7.1 KiB
JavaScript
197 lines
7.1 KiB
JavaScript
/*
|
|
Copyright 2017 OpenMarket Ltd
|
|
Copyright 2018 New Vector 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 '../../../index';
|
|
import SdkConfig from '../../../SdkConfig';
|
|
import Modal from '../../../Modal';
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
export default class BugReportDialog extends React.Component {
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.state = {
|
|
sendLogs: true,
|
|
busy: false,
|
|
err: null,
|
|
issueUrl: "",
|
|
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._onIssueUrlChange = this._onIssueUrlChange.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 userText =
|
|
(this.state.text.length > 0 ? this.state.text + '\n\n': '') + 'Issue: ' +
|
|
(this.state.issueUrl.length > 0 ? this.state.issueUrl : 'No issue link given');
|
|
|
|
this.setState({ busy: true, progress: null, err: null });
|
|
this._sendProgressCallback(_t("Preparing to send logs"));
|
|
|
|
require(['../../../rageshake/submit-rageshake'], (s) => {
|
|
s(SdkConfig.get().bug_report_endpoint_url, {
|
|
userText,
|
|
sendLogs: true,
|
|
progressCallback: this._sendProgressCallback,
|
|
}).then(() => {
|
|
if (!this._unmounted) {
|
|
this.props.onFinished(false);
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
// N.B. first param is passed to piwik and so doesn't want i18n
|
|
Modal.createTrackedDialog('Bug report sent', '', QuestionDialog, {
|
|
title: _t('Logs sent'),
|
|
description: _t('Thank you!'),
|
|
hasCancelButton: false,
|
|
});
|
|
}
|
|
}, (err) => {
|
|
if (!this._unmounted) {
|
|
this.setState({
|
|
busy: false,
|
|
progress: null,
|
|
err: _t("Failed to send logs: ") + `${err.message}`,
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
_onTextChange(ev) {
|
|
this.setState({ text: ev.target.value });
|
|
}
|
|
|
|
_onIssueUrlChange(ev) {
|
|
this.setState({ issueUrl: 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");
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
const Field = sdk.getComponent('elements.Field');
|
|
|
|
let error = null;
|
|
if (this.state.err) {
|
|
error = <div className="error">
|
|
{this.state.err}
|
|
</div>;
|
|
}
|
|
|
|
let progress = null;
|
|
if (this.state.busy) {
|
|
progress = (
|
|
<div className="progress">
|
|
<Loader />
|
|
{this.state.progress} ...
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<BaseDialog className="mx_BugReportDialog" onFinished={this._onCancel}
|
|
title={_t('Submit debug logs')}
|
|
contentId='mx_Dialog_content'
|
|
>
|
|
<div className="mx_Dialog_content" id='mx_Dialog_content'>
|
|
<p>
|
|
{ _t(
|
|
"Debug logs contain application usage data including your " +
|
|
"username, the IDs or aliases of the rooms or groups you " +
|
|
"have visited and the usernames of other users. They do " +
|
|
"not contain messages.",
|
|
) }
|
|
</p>
|
|
<p><b>
|
|
{ _t(
|
|
"Before submitting logs, you must <a>create a GitHub issue</a> to describe your problem.",
|
|
{},
|
|
{
|
|
a: (sub) => <a
|
|
target="_blank"
|
|
href="https://github.com/vector-im/riot-web/issues/new"
|
|
>
|
|
{ sub }
|
|
</a>,
|
|
},
|
|
) }
|
|
</b></p>
|
|
<Field
|
|
id="mx_BugReportDialog_issueUrl"
|
|
type="text"
|
|
className="mx_BugReportDialog_field_input"
|
|
label={_t("GitHub issue")}
|
|
onChange={this._onIssueUrlChange}
|
|
value={this.state.issueUrl}
|
|
placeholder="https://github.com/vector-im/riot-web/issues/..."
|
|
/>
|
|
<Field
|
|
className="mx_BugReportDialog_field_input"
|
|
element="textarea"
|
|
label={_t("Notes")}
|
|
rows={5}
|
|
onChange={this._onTextChange}
|
|
value={this.state.text}
|
|
placeholder={_t(
|
|
"If there is additional context that would help in " +
|
|
"analysing the issue, such as what you were doing at " +
|
|
"the time, room IDs, user IDs, etc., " +
|
|
"please include those things here.",
|
|
)}
|
|
/>
|
|
{progress}
|
|
{error}
|
|
</div>
|
|
<DialogButtons primaryButton={_t("Send logs")}
|
|
onPrimaryButtonClick={this._onSubmit}
|
|
focus={true}
|
|
onCancel={this._onCancel}
|
|
disabled={this.state.busy}
|
|
/>
|
|
</BaseDialog>
|
|
);
|
|
}
|
|
}
|
|
|
|
BugReportDialog.propTypes = {
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
};
|