Help Page: remove 'app' to get rid of old 'accessToken' calls
This commit is contained in:
parent
784711c4e3
commit
89b46265ab
2 changed files with 51 additions and 335 deletions
|
@ -1,19 +1,3 @@
|
||||||
import * as PAGES from 'constants/pages';
|
|
||||||
import { connect } from 'react-redux';
|
|
||||||
import { doFetchAccessToken } from 'redux/actions/user';
|
|
||||||
import { selectAccessToken, selectUser } from 'redux/selectors/user';
|
|
||||||
import { selectDaemonSettings } from 'redux/selectors/settings';
|
|
||||||
import HelpPage from './view';
|
import HelpPage from './view';
|
||||||
|
|
||||||
const select = state => ({
|
export default HelpPage;
|
||||||
user: selectUser(state),
|
|
||||||
accessToken: selectAccessToken(state),
|
|
||||||
deamonSettings: selectDaemonSettings(state),
|
|
||||||
});
|
|
||||||
|
|
||||||
const perform = (dispatch, ownProps) => ({
|
|
||||||
doAuth: () => ownProps.history.push(`/$/${PAGES.AUTH}?redirect=/$/${PAGES.HELP}`),
|
|
||||||
fetchAccessToken: () => dispatch(doFetchAccessToken()),
|
|
||||||
});
|
|
||||||
|
|
||||||
export default connect(select, perform)(HelpPage);
|
|
||||||
|
|
|
@ -1,165 +1,26 @@
|
||||||
// @flow
|
// @flow
|
||||||
import { SITE_NAME, SIMPLE_SITE, SITE_HELP_EMAIL } from 'config';
|
import { SITE_NAME, SITE_HELP_EMAIL } from 'config';
|
||||||
import * as ICONS from 'constants/icons';
|
import * as ICONS from 'constants/icons';
|
||||||
import * as PAGES from 'constants/pages';
|
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
// @if TARGET='app'
|
|
||||||
import { shell } from 'electron';
|
|
||||||
import WalletBackup from 'component/walletBackup';
|
|
||||||
// @endif
|
|
||||||
import Lbry from 'lbry';
|
|
||||||
import Native from 'native';
|
|
||||||
import Button from 'component/button';
|
import Button from 'component/button';
|
||||||
import Page from 'component/page';
|
import Page from 'component/page';
|
||||||
import Card from 'component/common/card';
|
import Card from 'component/common/card';
|
||||||
import I18nMessage from 'component/i18nMessage';
|
import I18nMessage from 'component/i18nMessage';
|
||||||
|
|
||||||
type DeamonSettings = {
|
export default function HelpPage() {
|
||||||
data_dir: string | any,
|
|
||||||
};
|
|
||||||
|
|
||||||
type Props = {
|
|
||||||
deamonSettings: DeamonSettings,
|
|
||||||
accessToken: string,
|
|
||||||
fetchAccessToken: () => void,
|
|
||||||
doAuth: () => void,
|
|
||||||
user: any,
|
|
||||||
};
|
|
||||||
|
|
||||||
type VersionInfo = {
|
|
||||||
os_system: string,
|
|
||||||
os_release: string,
|
|
||||||
platform: string,
|
|
||||||
lbrynet_version: string,
|
|
||||||
};
|
|
||||||
|
|
||||||
type State = {
|
|
||||||
versionInfo: VersionInfo | any,
|
|
||||||
lbryId: String | any,
|
|
||||||
uiVersion: ?string,
|
|
||||||
upgradeAvailable: ?boolean,
|
|
||||||
accessTokenHidden: ?boolean,
|
|
||||||
};
|
|
||||||
|
|
||||||
class HelpPage extends React.PureComponent<Props, State> {
|
|
||||||
constructor(props: Props) {
|
|
||||||
super(props);
|
|
||||||
|
|
||||||
this.state = {
|
|
||||||
versionInfo: null,
|
|
||||||
lbryId: null,
|
|
||||||
uiVersion: null,
|
|
||||||
upgradeAvailable: null,
|
|
||||||
accessTokenHidden: true,
|
|
||||||
};
|
|
||||||
|
|
||||||
(this: any).showAccessToken = this.showAccessToken.bind(this);
|
|
||||||
(this: any).openLogFile = this.openLogFile.bind(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
// @if TARGET='app'
|
|
||||||
Native.getAppVersionInfo().then(({ localVersion, upgradeAvailable }) => {
|
|
||||||
this.setState({
|
|
||||||
uiVersion: localVersion,
|
|
||||||
upgradeAvailable,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
if (!this.props.accessToken) this.props.fetchAccessToken();
|
|
||||||
// @endif
|
|
||||||
|
|
||||||
Lbry.version().then((info) => {
|
|
||||||
this.setState({
|
|
||||||
versionInfo: info,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
Lbry.status().then((info) => {
|
|
||||||
this.setState({
|
|
||||||
lbryId: info.installation_id,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
showAccessToken() {
|
|
||||||
this.setState({
|
|
||||||
accessTokenHidden: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
openLogFile(userHomeDirectory: string) {
|
|
||||||
const logFileName = 'lbrynet.log';
|
|
||||||
const os = this.state.versionInfo.os_system;
|
|
||||||
if (os === 'Darwin' || os === 'Linux') {
|
|
||||||
shell.openPath(`${userHomeDirectory}/${logFileName}`);
|
|
||||||
} else {
|
|
||||||
shell.openPath(`${userHomeDirectory}\\${logFileName}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
let ver;
|
|
||||||
let osName;
|
|
||||||
let platform;
|
|
||||||
let newVerLink;
|
|
||||||
|
|
||||||
const { accessToken, doAuth, user, deamonSettings } = this.props;
|
|
||||||
const { data_dir: dataDirectory } = deamonSettings;
|
|
||||||
|
|
||||||
if (this.state.versionInfo) {
|
|
||||||
ver = this.state.versionInfo;
|
|
||||||
if (ver.os_system === 'Darwin') {
|
|
||||||
osName = parseInt(ver.os_release.match(/^\d+/), 10) < 16 ? 'Mac OS X' : 'Mac OS';
|
|
||||||
|
|
||||||
platform = `${osName} ${ver.os_release}`;
|
|
||||||
newVerLink = 'https://lbry.com/get/lbry.dmg';
|
|
||||||
} else if (process.env.APPIMAGE !== undefined) {
|
|
||||||
platform = `Linux (AppImage)`;
|
|
||||||
newVerLink = 'https://lbry.com/get/lbry.AppImage';
|
|
||||||
} else if (ver.os_system === 'Linux') {
|
|
||||||
platform = `Linux (${ver.platform})`;
|
|
||||||
newVerLink = 'https://lbry.com/get/lbry.deb';
|
|
||||||
} else {
|
|
||||||
platform = `Windows (${ver.platform})`;
|
|
||||||
newVerLink = 'https://lbry.com/get/lbry.msi';
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
ver = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page className="card-stack">
|
<Page className="card-stack">
|
||||||
<Card
|
<Card
|
||||||
title={SIMPLE_SITE ? __('Visit the %SITE_NAME% Help Hub', { SITE_NAME }) : __('Read the FAQ')}
|
title={__('Visit the %SITE_NAME% Help Hub', { SITE_NAME })}
|
||||||
subtitle={
|
subtitle={__('Our support posts answer many common questions.')}
|
||||||
SIMPLE_SITE
|
|
||||||
? __('Our support posts answer many common questions.')
|
|
||||||
: __('Our FAQ answers many common questions.')
|
|
||||||
}
|
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
{SIMPLE_SITE ? (
|
|
||||||
<Button
|
<Button
|
||||||
href="https://odysee.com/@OdyseeHelp:b"
|
href="https://odysee.com/@OdyseeHelp:b"
|
||||||
label={__('View %SITE_NAME% Help Hub', { SITE_NAME })}
|
label={__('View %SITE_NAME% Help Hub', { SITE_NAME })}
|
||||||
icon={ICONS.HELP}
|
icon={ICONS.HELP}
|
||||||
button="secondary"
|
button="secondary"
|
||||||
/>
|
/>
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
<Button
|
|
||||||
href="https://odysee.com/@OdyseeHelp:b/OdyseeBasics:c"
|
|
||||||
label={__('Read Odysee Basics FAQ')}
|
|
||||||
icon={ICONS.HELP}
|
|
||||||
button="secondary"
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
href="https://odysee.com/@OdyseeHelp:b"
|
|
||||||
label={__('View all Odysee FAQs')}
|
|
||||||
icon={ICONS.HELP}
|
|
||||||
button="secondary"
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -168,8 +29,8 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
title={__('Find assistance')}
|
title={__('Find assistance')}
|
||||||
subtitle={
|
subtitle={
|
||||||
<I18nMessage tokens={{ channel: <strong>#help</strong>, help_email: SITE_HELP_EMAIL }}>
|
<I18nMessage tokens={{ channel: <strong>#help</strong>, help_email: SITE_HELP_EMAIL }}>
|
||||||
Live help is available most hours in the %channel% channel of our Discord chat room. Or you can always
|
Live help is available most hours in the %channel% channel of our Discord chat room. Or you can always email
|
||||||
email us at %help_email%.
|
us at %help_email%.
|
||||||
</I18nMessage>
|
</I18nMessage>
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
|
@ -187,142 +48,13 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
title={__('Report a bug or suggest something')}
|
title={__('Report a bug or suggest something')}
|
||||||
subtitle={
|
subtitle={__('Did you find something wrong? Think Odysee could add something useful and cool?')}
|
||||||
<React.Fragment>
|
|
||||||
{__('Did you find something wrong? Think Odysee could add something useful and cool?')}
|
|
||||||
</React.Fragment>
|
|
||||||
}
|
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button navigate="/$/report" label={__('Submit Feedback')} icon={ICONS.FEEDBACK} button="secondary" />
|
<Button navigate="/$/report" label={__('Submit Feedback')} icon={ICONS.FEEDBACK} button="secondary" />
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* @if TARGET='app' */}
|
|
||||||
<Card
|
|
||||||
title={__('View your log')}
|
|
||||||
subtitle={
|
|
||||||
<I18nMessage
|
|
||||||
tokens={{
|
|
||||||
support_link: (
|
|
||||||
<Button button="link" label={__('support')} href="https://odysee.com/@OdyseeHelp:b?view=about" />
|
|
||||||
),
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Did something go wrong? Have a look in your log file, or send it to %support_link%.
|
|
||||||
</I18nMessage>
|
|
||||||
}
|
|
||||||
actions={
|
|
||||||
<div className="section__actions">
|
|
||||||
<Button
|
|
||||||
button="secondary"
|
|
||||||
label={__('Open Log')}
|
|
||||||
icon={ICONS.OPEN_LOG}
|
|
||||||
onClick={() => this.openLogFile(dataDirectory)}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
button="secondary"
|
|
||||||
label={__('Open Log Folder')}
|
|
||||||
icon={ICONS.OPEN_LOG_FOLDER}
|
|
||||||
onClick={() => shell.openPath(dataDirectory)}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<WalletBackup />
|
|
||||||
{/* @endif */}
|
|
||||||
{!SIMPLE_SITE && (
|
|
||||||
<>
|
|
||||||
<Card
|
|
||||||
title={__('About --[About section in Help Page]--')}
|
|
||||||
subtitle={
|
|
||||||
this.state.upgradeAvailable !== null && this.state.upgradeAvailable ? (
|
|
||||||
<span>
|
|
||||||
{__('A newer version of LBRY is available.')}{' '}
|
|
||||||
<Button button="link" href={newVerLink} label={__('Download now!')} />
|
|
||||||
</span>
|
|
||||||
) : null
|
|
||||||
}
|
|
||||||
isBodyList
|
|
||||||
body={
|
|
||||||
<div className="table__wrapper">
|
|
||||||
<table className="table table--stretch">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>{__('App')}</td>
|
|
||||||
<td>
|
|
||||||
{this.state.uiVersion ? this.state.uiVersion + ' - ' : ''}
|
|
||||||
<Button
|
|
||||||
button="link"
|
|
||||||
label={__('Changelog')}
|
|
||||||
href="https://github.com/lbryio/lbry-desktop/blob/master/CHANGELOG.md"
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>{__('Daemon (lbrynet)')}</td>
|
|
||||||
<td>{ver ? ver.lbrynet_version : __('Loading...')}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>{__('Connected Email')}</td>
|
|
||||||
<td>
|
|
||||||
{user && user.primary_email ? (
|
|
||||||
<React.Fragment>
|
|
||||||
{user.primary_email}{' '}
|
|
||||||
<Button
|
|
||||||
button="link"
|
|
||||||
navigate={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`}
|
|
||||||
label={__('Update mailing preferences')}
|
|
||||||
/>
|
|
||||||
</React.Fragment>
|
|
||||||
) : (
|
|
||||||
<React.Fragment>
|
|
||||||
<span className="empty">{__('none')} </span>
|
|
||||||
<Button button="link" onClick={() => doAuth()} label={__('set email')} />
|
|
||||||
</React.Fragment>
|
|
||||||
)}
|
|
||||||
</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--warning">
|
|
||||||
{__('This is equivalent to a password. Do not post or share this.')}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
export default HelpPage;
|
|
||||||
|
|
Loading…
Reference in a new issue