lbry-desktop/ui/page/report/view.jsx

121 lines
3.7 KiB
React
Raw Normal View History

import { doToast } from 'redux/actions/notifications';
import { FormField } from 'component/common/form';
2019-03-18 06:06:41 +01:00
import { Lbryio } from 'lbryinc';
import Button from 'component/button';
2019-11-22 22:13:00 +01:00
import Card from 'component/common/card';
import I18nMessage from 'component/i18nMessage';
import Page from 'component/page';
import React from 'react';
2016-11-22 21:19:08 +01:00
2017-06-15 02:37:42 +02:00
class ReportPage extends React.Component {
2017-05-17 10:10:25 +02:00
constructor(props) {
super(props);
this.state = { submitting: false, message: '' };
2017-05-17 10:10:25 +02:00
}
2018-04-06 07:15:29 +02:00
onMessageChange(event) {
this.setState({ message: event.target.value });
2018-04-06 07:15:29 +02:00
}
2017-05-17 10:10:25 +02:00
submitMessage() {
2018-04-06 07:15:29 +02:00
const { message } = this.state;
2017-06-15 02:37:42 +02:00
if (!message) return;
this.setState({ submitting: true });
Lbryio.call('event', 'desktop_error', { error_message: message }).then(() => {
this.setState({ submitting: false });
2017-06-15 02:37:42 +02:00
// Display global notice
const action = doToast({ message: __('Message received! Thanks for helping.') });
window.app.store.dispatch(action);
});
this.setState({ message: '' });
2017-05-17 10:10:25 +02:00
}
render() {
return (
2018-04-06 07:15:29 +02:00
<Page>
2020-06-15 20:01:48 +02:00
<div className="card-stack">
<Card
2020-08-26 22:28:33 +02:00
title={__('Report an issue or request a feature')}
2020-06-15 20:01:48 +02:00
subtitle={__(
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
actions={
<>
2020-06-15 20:01:48 +02:00
<FormField
type="textarea"
rows="10"
name="message"
stretch
value={this.state.message}
onChange={(event) => {
2020-06-15 20:01:48 +02:00
this.onMessageChange(event);
}}
placeholder={__('Description of your issue or feature request')}
/>
2020-06-15 20:01:48 +02:00
<div className="section__actions">
<Button
button="primary"
label={this.state.submitting ? __('Submitting...') : __('Submit Report')}
onClick={(event) => this.submitMessage(event)}
2020-06-15 20:01:48 +02:00
className={`button-block button-primary ${this.state.submitting ? 'disabled' : ''}`}
/>
2020-06-15 20:01:48 +02:00
</div>
</>
2020-06-15 20:01:48 +02:00
}
/>
2019-02-13 17:27:20 +01:00
2020-06-15 20:01:48 +02:00
<Card
title={__('Developer? Or looking for more?')}
2020-06-15 20:01:48 +02:00
actions={
<div dir="auto" className="markdown-preview">
<p>{__('You can also:')}</p>
<ul>
<li>
<Button
button="link"
href="https://github.com/OdyseeTeam/odysee-frontend/issues"
label={__('Submit an issue on GitHub')}
/>
.
</li>
<li>
<I18nMessage
tokens={{
technical_resources: (
<Button button="link" href="https://lbry.tech" label={__('technical resources')} />
),
}}
>
Explore LBRY's %technical_resources%
</I18nMessage>
.
</li>
<li>
<I18nMessage
tokens={{
tech_forum: <Button button="link" href="https://forum.lbry.tech" label={__('tech forum')} />,
}}
>
Join LBRY's %tech_forum%
</I18nMessage>
.
</li>
</ul>
</div>
2020-06-15 20:01:48 +02:00
}
/>
</div>
2018-04-06 07:15:29 +02:00
</Page>
);
}
2017-05-17 10:10:25 +02:00
}
2016-11-22 21:19:08 +01:00
export default ReportPage;