accounts-frontend/src/pages/dev/ApplicationsListPage.js

99 lines
2.3 KiB
JavaScript
Raw Normal View History

// @flow
import type { Location, RouterHistory } from 'react-router-dom';
import type { User } from 'components/user';
import type { OauthAppResponse } from 'services/api/oauth';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import {
fetchAvailableApps,
resetApp,
deleteApp,
} from 'components/dev/apps/actions';
import ApplicationsIndex from 'components/dev/apps/ApplicationsIndex';
type OwnProps = {|
location: Location,
history: RouterHistory,
|};
type Props = {
...OwnProps,
user: User,
apps: OauthAppResponse[],
fetchAvailableApps: () => Promise<void>,
deleteApp: string => Promise<void>,
resetApp: (string, boolean) => Promise<void>,
};
type State = {
isLoading: boolean,
forceUpdate: boolean,
};
class ApplicationsListPage extends Component<Props, State> {
state = {
isLoading: false,
forceUpdate: false,
};
componentDidMount() {
!this.props.user.isGuest && this.loadApplicationsList();
}
componentDidUpdate({ user }: Props) {
if (this.props.user !== user) {
// eslint-disable-next-line react/no-did-update-set-state
this.setState({ forceUpdate: true });
this.loadApplicationsList();
}
}
render() {
const { user, apps, resetApp, deleteApp, location } = this.props;
const { isLoading, forceUpdate } = this.state;
const clientId = location.hash.substr(1) || null;
return (
<ApplicationsIndex
displayForGuest={user.isGuest}
applications={forceUpdate ? [] : apps}
isLoading={isLoading}
deleteApp={deleteApp}
resetApp={resetApp}
clientId={clientId}
resetClientId={this.resetClientId}
/>
);
}
loadApplicationsList = async () => {
this.setState({ isLoading: true });
await this.props.fetchAvailableApps();
this.setState({
isLoading: false,
forceUpdate: false,
});
};
resetClientId = () => {
const { history, location } = this.props;
if (location.hash) {
history.push({ ...location, hash: '' });
}
};
}
export default connect<Props, OwnProps, _, _, _, _>(
state => ({
user: state.user,
apps: state.apps.available,
}),
// $FlowFixMe: we need a better action typings for thunks
{
fetchAvailableApps,
resetApp,
deleteApp,
},
)(ApplicationsListPage);