2016-04-24 11:00:13 +02:00
|
|
|
//@TODO: Customize advice based on OS
|
|
|
|
|
2016-04-20 12:28:13 +02:00
|
|
|
var HelpPage = React.createClass({
|
2016-08-22 11:42:01 +02:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
versionInfo: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
componentWillMount: function() {
|
|
|
|
lbry.getVersionInfo((info) => {
|
|
|
|
this.setState({
|
|
|
|
versionInfo: info,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2016-08-08 00:13:17 +02:00
|
|
|
componentDidMount: function() {
|
|
|
|
document.title = "Help";
|
|
|
|
},
|
2016-04-20 12:28:13 +02:00
|
|
|
render: function() {
|
2016-11-24 02:35:34 +01:00
|
|
|
let ver, osName, platform, newVerLink, lbryId;
|
2016-11-24 01:55:36 +01:00
|
|
|
if (this.state.versionInfo) {
|
|
|
|
ver = this.state.versionInfo;
|
2016-08-22 11:42:01 +02:00
|
|
|
|
2016-11-24 02:35:34 +01:00
|
|
|
lbryId = ver.lbry_id;
|
|
|
|
|
2016-08-22 11:42:01 +02:00
|
|
|
if (ver.os_system == 'Darwin') {
|
2016-11-24 01:55:36 +01:00
|
|
|
osName = (parseInt(ver.os_release.match(/^\d+/)) < 16 ? 'Mac OS X' : 'Mac OS');
|
2016-08-22 11:42:01 +02:00
|
|
|
|
2016-11-24 01:55:36 +01:00
|
|
|
platform = `${osName} ${ver.os_release}`
|
|
|
|
newVerLink = 'https://lbry.io/get/lbry.dmg';
|
2016-08-22 11:42:01 +02:00
|
|
|
} else if (ver.os_system == 'Linux') {
|
2016-11-24 01:55:36 +01:00
|
|
|
platform = `Linux (${ver.platform})`;
|
|
|
|
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})`;
|
|
|
|
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 (
|
2016-05-23 14:16:14 +02:00
|
|
|
<main className="page">
|
2016-08-08 00:45:26 +02:00
|
|
|
<section className="card">
|
|
|
|
<h3>Read the FAQ</h3>
|
|
|
|
<p>Our FAQ answers many common questions.</p>
|
|
|
|
<p><Link href="https://lbry.io/faq" label="Read the FAQ" icon="icon-question" button="alt"/></p>
|
|
|
|
</section>
|
|
|
|
<section className="card">
|
|
|
|
<h3>Get Live Help</h3>
|
|
|
|
<p>
|
2016-08-22 11:38:17 +02:00
|
|
|
Live help is available most hours in the <strong>#help</strong> channel of our Slack chat room.
|
2016-08-08 00:45:26 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Link button="alt" label="Join Our Slack" icon="icon-slack" href="https://slack.lbry.io" />
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
<section className="card">
|
2016-08-27 00:06:22 +02:00
|
|
|
<h3>Report a Bug</h3>
|
|
|
|
<p>Did you find something wrong?</p>
|
|
|
|
<p><Link href="/?report" label="Submit a Bug Report" icon="icon-bug" button="alt" /></p>
|
2016-10-08 02:23:22 +02:00
|
|
|
<div className="meta">Thanks! LBRY is made by its users.</div>
|
2016-04-20 12:28:13 +02:00
|
|
|
</section>
|
2016-08-27 00:06:22 +02:00
|
|
|
{!ver ? null :
|
2016-08-22 11:42:01 +02:00
|
|
|
<section className="card">
|
2016-08-27 00:06:22 +02:00
|
|
|
<h3>About</h3>
|
|
|
|
{ver.lbrynet_update_available || ver.lbryum_update_available ?
|
2016-11-24 01:55:36 +01:00
|
|
|
<p>A newer version of LBRY is available. <Link href={newVerLink} label={`Download LBRY ${ver.remote_lbrynet} now!`} /></p>
|
2016-08-27 00:06:22 +02:00
|
|
|
: <p>Your copy of LBRY is up to date.</p>
|
2016-08-22 11:42:01 +02:00
|
|
|
}
|
2016-08-27 00:06:22 +02:00
|
|
|
<table className="table-standard">
|
2016-08-27 00:11:28 +02:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>lbrynet (data)</th>
|
|
|
|
<td>{ver.lbrynet_version}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>lbryum (wallet)</th>
|
|
|
|
<td>{ver.lbryum_version}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Platform</th>
|
|
|
|
<td>{platform}</td>
|
|
|
|
</tr>
|
2016-11-24 02:35:34 +01:00
|
|
|
<tr>
|
|
|
|
<th>Installation ID</th>
|
|
|
|
<td>{lbryId}</td>
|
|
|
|
</tr>
|
2016-08-27 00:11:28 +02:00
|
|
|
</tbody>
|
2016-08-27 00:06:22 +02:00
|
|
|
</table>
|
2016-08-22 11:42:01 +02:00
|
|
|
</section>
|
|
|
|
}
|
2016-04-20 12:28:13 +02:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
2016-05-20 17:54:53 +02:00
|
|
|
});
|