58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import lbry from '../lbry.js';
|
|
|
|
var ReportPage = React.createClass({
|
|
submitMessage: function() {
|
|
if (this._messageArea.value) {
|
|
this.setState({
|
|
submitting: true
|
|
});
|
|
lbry.reportBug(this._messageArea.value, () => {
|
|
this.setState({
|
|
submitting: false,
|
|
modal: 'submitted',
|
|
});
|
|
});
|
|
this._messageArea.value = '';
|
|
}
|
|
},
|
|
componentDidMount: function() {
|
|
document.title = "Report an Issue";
|
|
},
|
|
closeModal: function() {
|
|
this.setState({
|
|
modal: null,
|
|
})
|
|
},
|
|
getInitialState: function() {
|
|
return {
|
|
submitting: false,
|
|
modal: null,
|
|
}
|
|
},
|
|
render: function() {
|
|
return (
|
|
<main className="page">
|
|
<section className="card">
|
|
<h3>Report an Issue</h3>
|
|
<p>Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!</p>
|
|
<div className="form-row">
|
|
<textarea ref={(t) => this._messageArea = t} cols="80" rows="10" name="message" type="text"/>
|
|
</div>
|
|
<div className="form-row form-row-submit">
|
|
<button onClick={this.submitMessage} className={'button-block button-primary ' + (this.state.submitting ? 'disabled' : '')}>{this.state.submitting ? 'Submitting...' : 'Submit Report'}</button>
|
|
</div>
|
|
</section>
|
|
<section className="card">
|
|
<h3>Developer?</h3>
|
|
You can also <Link href="https://github.com/lbryio/lbry/issues" label="submit an issue on GitHub"/>.
|
|
</section>
|
|
<Modal isOpen={this.state.modal == 'submitted'} onConfirmed={this.closeModal}>
|
|
Your bug report has been submitted! Thank you for your feedback.
|
|
</Modal>
|
|
</main>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default ReportPage;
|