/* Copyright 2017 OpenMarket Ltd Copyright 2018 New Vector Ltd Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2019 The Matrix.org Foundation C.I.C. 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 PropTypes from 'prop-types'; import * as 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) { if ((!this.state.text || !this.state.text.trim()) && (!this.state.issueUrl || !this.state.issueUrl.trim())) { this.setState({ err: _t("Please tell us what went wrong or, better, create a GitHub issue that describes the problem."), }); return; } 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, label: this.props.label, }).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 =
{this.state.err}
; } let progress = null; if (this.state.busy) { progress = (
{this.state.progress} ...
); } return (

{ _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.", ) }

{ _t( "Before submitting logs, you must create a GitHub issue to describe your problem.", {}, { a: (sub) => { sub } , }, ) }

{progress} {error}
); } } BugReportDialog.propTypes = { onFinished: PropTypes.func.isRequired, };