lbry-desktop/src/renderer/page/report/view.jsx
2018-04-18 00:13:00 -04:00

99 lines
2.7 KiB
JavaScript

import React from 'react';
import Button from 'component/button';
import { FormRow } from 'component/common/form';
import { Lbry } from 'lbry-redux';
import { doShowSnackBar } from 'redux/actions/app';
class ReportPage extends React.Component {
constructor(props) {
super(props);
this.state = {
submitting: false,
message: '',
};
}
onMessageChange(event) {
this.setState({
message: event.target.value,
});
}
submitMessage() {
const { message } = this.state;
if (message) {
this.setState({
submitting: true,
});
Lbry.report_bug({ message }).then(() => {
this.setState({
submitting: false,
});
// Display global notice
const action = doShowSnackBar({
message: __('Message received! Thanks for helping.'),
isError: false,
});
window.app.store.dispatch(action);
});
this.setState({ message: '' });
}
}
render() {
return (
<Page>
<section className="card card--section">
<div className="card__content">
<div className="card__title">{__('Report an Issue')}</div>
<p>
{__(
'Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<FormRow>
<FormField
type="textarea"
rows="10"
name="message"
stretch
value={this.state.message}
onChange={event => {
this.onMessageChange(event);
}}
placeholder={__('Description of your issue')}
/>
</FormRow>
<div className="card__actions">
<Button
button="primary"
onClick={event => {
this.submitMessage(event);
}}
className={`button-block button-primary ${this.state.submitting ? 'disabled' : ''}`}
>
{this.state.submitting ? __('Submitting...') : __('Submit Report')}
</Button>
</div>
</div>
</section>
<section className="card card--section">
<div className="card__title">{__('Developer?')}</div>
<p>
{__('You can also')}{' '}
<Button
button="link"
href="https://github.com/lbryio/lbry/issues"
label={__('submit an issue on GitHub')}
/>.
</p>
</section>
</Page>
);
}
}
export default ReportPage;