Add access token to help page

This commit is contained in:
6ea86b96 2017-07-21 13:23:39 +07:00 committed by Jeremy Kauffman
parent 4047c99059
commit cad678417e
6 changed files with 55 additions and 1 deletions

View file

@ -136,3 +136,14 @@ export function doUserEmailVerify(verificationToken) {
}); });
}; };
} }
export function doFetchAccessToken() {
return function(dispatch, getState) {
const success = token =>
dispatch({
type: types.FETCH_ACCESS_TOKEN_SUCCESS,
data: { token },
});
lbryio.getAuthToken().then(success);
};
}

View file

@ -100,6 +100,7 @@ export const USER_EMAIL_VERIFY_FAILURE = "USER_EMAIL_VERIFY_FAILURE";
export const USER_FETCH_STARTED = "USER_FETCH_STARTED"; export const USER_FETCH_STARTED = "USER_FETCH_STARTED";
export const USER_FETCH_SUCCESS = "USER_FETCH_SUCCESS"; export const USER_FETCH_SUCCESS = "USER_FETCH_SUCCESS";
export const USER_FETCH_FAILURE = "USER_FETCH_FAILURE"; export const USER_FETCH_FAILURE = "USER_FETCH_FAILURE";
export const FETCH_ACCESS_TOKEN_SUCCESS = "FETCH_ACCESS_TOKEN_SUCCESS";
// Rewards // Rewards
export const FETCH_REWARDS_STARTED = "FETCH_REWARDS_STARTED"; export const FETCH_REWARDS_STARTED = "FETCH_REWARDS_STARTED";

View file

@ -1,10 +1,17 @@
import React from "react"; import React from "react";
import { doNavigate } from "actions/app"; import { doNavigate } from "actions/app";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { doFetchAccessToken } from "actions/user";
import { selectAccessToken } from "selectors/user";
import HelpPage from "./view"; import HelpPage from "./view";
const select = state => ({
accessToken: selectAccessToken(state),
});
const perform = dispatch => ({ const perform = dispatch => ({
navigate: (path, params) => dispatch(doNavigate(path, params)), navigate: (path, params) => dispatch(doNavigate(path, params)),
fetchAccessToken: () => dispatch(doFetchAccessToken()),
}); });
export default connect(null, perform)(HelpPage); export default connect(select, perform)(HelpPage);

View file

@ -14,6 +14,7 @@ class HelpPage extends React.PureComponent {
lbryId: null, lbryId: null,
uiVersion: null, uiVersion: null,
upgradeAvailable: null, upgradeAvailable: null,
accessTokenHidden: true,
}; };
} }
@ -36,6 +37,14 @@ class HelpPage extends React.PureComponent {
lbryId: info.lbry_id, lbryId: info.lbry_id,
}); });
}); });
if (!this.props.accessToken) this.props.fetchAccessToken();
}
showAccessToken() {
this.setState({
accessTokenHidden: false,
});
} }
render() { render() {
@ -121,6 +130,7 @@ class HelpPage extends React.PureComponent {
</div> </div>
</div> </div>
</section> </section>
<section className="card"> <section className="card">
<div className="card__title-primary"><h3>{__("About")}</h3></div> <div className="card__title-primary"><h3>{__("About")}</h3></div>
<div className="card__content"> <div className="card__content">
@ -155,6 +165,18 @@ class HelpPage extends React.PureComponent {
<th>{__("Installation ID")}</th> <th>{__("Installation ID")}</th>
<td>{this.state.lbryId}</td> <td>{this.state.lbryId}</td>
</tr> </tr>
<tr>
<th>{__("Access Token")}</th>
<td>
{this.state.accessTokenHidden &&
<Link
label={__("show")}
onClick={this.showAccessToken.bind(this)}
/>}
{!this.state.accessTokenHidden &&
this.props.accessToken}
</td>
</tr>
</tbody> </tbody>
</table> </table>
: <BusyMessage message={__("Looking up version info")} />} : <BusyMessage message={__("Looking up version info")} />}

View file

@ -120,6 +120,14 @@ reducers[types.USER_EMAIL_VERIFY_FAILURE] = function(state, action) {
}); });
}; };
reducers[types.FETCH_ACCESS_TOKEN_SUCCESS] = function(state, action) {
const { token } = action.data;
return Object.assign({}, state, {
accessToken: token,
});
};
export default function reducer(state = defaultState, action) { export default function reducer(state = defaultState, action) {
const handler = reducers[action.type]; const handler = reducers[action.type];
if (handler) return handler(state, action); if (handler) return handler(state, action);

View file

@ -76,3 +76,8 @@ export const selectUserIsAuthRequested = createSelector(
(isEmailDeclined, isPending, isVerificationCandidate, hasEmail) => (isEmailDeclined, isPending, isVerificationCandidate, hasEmail) =>
!isEmailDeclined && (isPending || !hasEmail || isVerificationCandidate) !isEmailDeclined && (isPending || !hasEmail || isVerificationCandidate)
); );
export const selectAccessToken = createSelector(
_selectState,
state => state.accessToken
);