2017-12-21 22:08:54 +01:00
|
|
|
// @TODO: Customize advice based on OS
|
|
|
|
import React from 'react';
|
2018-04-18 06:03:01 +02:00
|
|
|
import { Lbry } from 'lbry-redux';
|
|
|
|
import Native from 'native';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Button from 'component/button';
|
|
|
|
import BusyIndicator from 'component/common/busy-indicator';
|
|
|
|
import Icon from 'component/common/icon';
|
|
|
|
import Page from 'component/page';
|
|
|
|
import * as icons from 'constants/icons';
|
2016-04-24 11:00:13 +02:00
|
|
|
|
2017-06-08 06:42:19 +02:00
|
|
|
class HelpPage extends React.PureComponent {
|
2017-05-17 10:10:25 +02:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2016-08-22 11:42:01 +02:00
|
|
|
versionInfo: null,
|
2016-11-30 06:23:57 +01:00
|
|
|
lbryId: null,
|
2017-05-31 18:22:50 +02:00
|
|
|
uiVersion: null,
|
2017-06-06 23:19:12 +02:00
|
|
|
upgradeAvailable: null,
|
2017-07-21 08:23:39 +02:00
|
|
|
accessTokenHidden: true,
|
2016-08-22 11:42:01 +02:00
|
|
|
};
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
this.showAccessToken = this.showAccessToken.bind(this);
|
2017-05-17 10:10:25 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
componentDidMount() {
|
2018-04-18 06:03:01 +02:00
|
|
|
Native.getAppVersionInfo().then(({ remoteVersion, localVersion, upgradeAvailable }) => {
|
2017-12-21 22:08:54 +01:00
|
|
|
this.setState({
|
|
|
|
uiVersion: localVersion,
|
|
|
|
upgradeAvailable,
|
2016-08-22 11:42:01 +02:00
|
|
|
});
|
2017-12-21 22:08:54 +01:00
|
|
|
});
|
2018-04-18 06:03:01 +02:00
|
|
|
Lbry.version().then(info => {
|
2017-05-25 20:29:28 +02:00
|
|
|
this.setState({
|
2017-06-06 23:19:12 +02:00
|
|
|
versionInfo: info,
|
|
|
|
});
|
|
|
|
});
|
2018-04-18 06:03:01 +02:00
|
|
|
Lbry.status({ session_status: true }).then(info => {
|
2016-11-30 06:23:57 +01:00
|
|
|
this.setState({
|
|
|
|
lbryId: info.lbry_id,
|
|
|
|
});
|
|
|
|
});
|
2017-07-21 08:23:39 +02:00
|
|
|
|
|
|
|
if (!this.props.accessToken) this.props.fetchAccessToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
showAccessToken() {
|
|
|
|
this.setState({
|
|
|
|
accessTokenHidden: false,
|
|
|
|
});
|
2017-05-17 10:10:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-04-18 06:03:01 +02:00
|
|
|
let ver;
|
|
|
|
let osName;
|
|
|
|
let platform;
|
|
|
|
let newVerLink;
|
2017-05-22 00:34:12 +02:00
|
|
|
|
2017-09-03 17:28:16 +02:00
|
|
|
const { accessToken, doAuth, user } = this.props;
|
2017-05-22 00:34:12 +02:00
|
|
|
|
2016-11-24 01:55:36 +01:00
|
|
|
if (this.state.versionInfo) {
|
|
|
|
ver = this.state.versionInfo;
|
2018-04-18 06:03:01 +02:00
|
|
|
if (ver.os_system === 'Darwin') {
|
|
|
|
osName = parseInt(ver.os_release.match(/^\d+/), 10) < 16 ? 'Mac OS X' : 'Mac OS';
|
2016-08-22 11:42:01 +02:00
|
|
|
|
2017-06-06 23:19:12 +02:00
|
|
|
platform = `${osName} ${ver.os_release}`;
|
2017-12-21 22:08:54 +01:00
|
|
|
newVerLink = 'https://lbry.io/get/lbry.dmg';
|
2018-04-18 06:03:01 +02:00
|
|
|
} else if (ver.os_system === 'Linux') {
|
2016-11-24 01:55:36 +01:00
|
|
|
platform = `Linux (${ver.platform})`;
|
2017-12-21 22:08:54 +01:00
|
|
|
newVerLink = 'https://lbry.io/get/lbry.deb';
|
2016-08-22 11:42:01 +02:00
|
|
|
} else {
|
2016-11-24 01:55:36 +01:00
|
|
|
platform = `Windows (${ver.platform})`;
|
2017-12-21 22:08:54 +01:00
|
|
|
newVerLink = 'https://lbry.io/get/lbry.msi';
|
2016-08-27 00:06:22 +02:00
|
|
|
}
|
2016-11-24 01:55:36 +01:00
|
|
|
} else {
|
|
|
|
ver = null;
|
2016-08-22 11:42:01 +02:00
|
|
|
}
|
2016-08-27 00:06:22 +02:00
|
|
|
|
2016-04-20 12:28:13 +02:00
|
|
|
return (
|
2018-03-26 23:32:43 +02:00
|
|
|
<Page>
|
|
|
|
<section className="card card--section">
|
|
|
|
<div className="card__title">{__('Read the FAQ')}</div>
|
|
|
|
<p className="card__subtitle">{__('Our FAQ answers many common questions.')}</p>
|
|
|
|
|
|
|
|
<div className="card__actions">
|
|
|
|
<Button
|
|
|
|
href="https://lbry.io/faq"
|
|
|
|
label={__('Read the FAQ')}
|
|
|
|
icon={icons.HELP}
|
|
|
|
button="primary"
|
|
|
|
/>
|
2017-05-04 05:44:08 +02:00
|
|
|
</div>
|
2016-08-08 00:45:26 +02:00
|
|
|
</section>
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
<section className="card card--section">
|
|
|
|
<div className="card__title">{__('Get Live Help')}</div>
|
|
|
|
<p className="card__subtitle">
|
|
|
|
{__('Live help is available most hours in the')} <strong>#help</strong>{' '}
|
|
|
|
{__('channel of our Discord chat room.')}
|
|
|
|
</p>
|
|
|
|
<div className="card__actions">
|
|
|
|
<Button
|
|
|
|
button="primary"
|
|
|
|
label={__('Join Our Chat')}
|
|
|
|
icon={icons.MESSAGE}
|
|
|
|
href="https://chat.lbry.io"
|
|
|
|
/>
|
2017-05-04 05:44:08 +02:00
|
|
|
</div>
|
2016-08-08 00:45:26 +02:00
|
|
|
</section>
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
<section className="card card--section">
|
2018-06-05 16:51:49 +02:00
|
|
|
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
|
|
|
|
<p className="card__subtitle">
|
|
|
|
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}
|
|
|
|
</p>
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
<div className="card__actions">
|
|
|
|
<Button
|
|
|
|
navigate="/report"
|
2018-06-05 16:51:49 +02:00
|
|
|
label={__('Submit a Bug Report/Feature Request')}
|
2018-03-26 23:32:43 +02:00
|
|
|
icon={icons.REPORT}
|
|
|
|
button="primary"
|
|
|
|
/>
|
2017-05-04 05:44:08 +02:00
|
|
|
</div>
|
2018-03-26 23:32:43 +02:00
|
|
|
<div className="card__meta">{__('Thanks! LBRY is made by its users.')}</div>
|
2016-04-20 12:28:13 +02:00
|
|
|
</section>
|
2017-07-21 08:23:39 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
<section className="card card--section">
|
|
|
|
<div className="card__title">{__('About')}</div>
|
|
|
|
{this.state.upgradeAvailable !== null && this.state.upgradeAvailable ? (
|
|
|
|
<div className="card__subtitle">
|
|
|
|
{__('A newer version of LBRY is available.')}{' '}
|
|
|
|
<Button button="link" href={newVerLink} label={__('Download now!')} />
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="card__subtitle">{__('Your LBRY app is up to date.')}</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{this.state.uiVersion && ver ? (
|
|
|
|
<table className="table table--stretch table--help">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>{__('App')}</td>
|
|
|
|
<td>{this.state.uiVersion}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Daemon (lbrynet)')}</td>
|
|
|
|
<td>{ver.lbrynet_version}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Wallet (lbryum)')}</td>
|
|
|
|
<td>{ver.lbryum_version}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Connected Email')}</td>
|
|
|
|
<td>
|
|
|
|
{user && user.primary_email ? (
|
|
|
|
user.primary_email
|
|
|
|
) : (
|
2018-04-06 06:50:56 +02:00
|
|
|
<React.Fragment>
|
2018-03-26 23:32:43 +02:00
|
|
|
<span className="empty">{__('none')} </span>
|
2018-04-06 06:50:56 +02:00
|
|
|
<Button button="link" onClick={() => doAuth()} label={__('set email')} />
|
|
|
|
</React.Fragment>
|
2018-03-26 23:32:43 +02:00
|
|
|
)}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Reward Eligible')}</td>
|
|
|
|
<td>{user && user.is_reward_approved ? __('Yes') : __('No')}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Platform')}</td>
|
|
|
|
<td>{platform}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Installation ID')}</td>
|
|
|
|
<td>{this.state.lbryId}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{__('Access Token')}</td>
|
|
|
|
<td>
|
|
|
|
{this.state.accessTokenHidden && (
|
|
|
|
<Button button="link" label={__('View')} onClick={this.showAccessToken} />
|
|
|
|
)}
|
|
|
|
{!this.state.accessTokenHidden &&
|
|
|
|
accessToken && (
|
|
|
|
<div>
|
|
|
|
<p>{accessToken}</p>
|
|
|
|
<div className="help">
|
|
|
|
{__('This is equivalent to a password. Do not post or share this.')}
|
2017-11-24 15:31:05 +01:00
|
|
|
</div>
|
2018-03-26 23:32:43 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
) : (
|
|
|
|
<BusyIndicator message={__('Looking up version info')} />
|
|
|
|
)}
|
2017-05-25 20:29:28 +02:00
|
|
|
</section>
|
2018-03-26 23:32:43 +02:00
|
|
|
</Page>
|
2016-04-20 12:28:13 +02:00
|
|
|
);
|
|
|
|
}
|
2017-05-17 10:10:25 +02:00
|
|
|
}
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-04-07 07:15:22 +02:00
|
|
|
export default HelpPage;
|