123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import {RouteComponentProps} from 'react-router';
- import {loadStats} from 'sentry/actionCreators/projects';
- import TeamActions from 'sentry/actions/teamActions';
- import {Client} from 'sentry/api';
- import {AccessRequest, Organization, Team} from 'sentry/types';
- import withApi from 'sentry/utils/withApi';
- import withOrganization from 'sentry/utils/withOrganization';
- import AsyncView from 'sentry/views/asyncView';
- import OrganizationTeams from './organizationTeams';
- type Props = {
- api: Client;
- organization: Organization;
- teams: Team[];
- } & RouteComponentProps<{orgId: string}, {}>;
- type State = AsyncView['state'] & {
- requestList: AccessRequest[];
- };
- class OrganizationTeamsContainer extends AsyncView<Props, State> {
- getEndpoints(): ReturnType<AsyncView['getEndpoints']> {
- const {orgId} = this.props.params;
- return [['requestList', `/organizations/${orgId}/access-requests/`]];
- }
- componentDidMount() {
- this.fetchStats();
- }
- fetchStats() {
- loadStats(this.props.api, {
- orgId: this.props.params.orgId,
- query: {
- since: (new Date().getTime() / 1000 - 3600 * 24).toString(),
- stat: 'generated',
- group: 'project',
- },
- });
- }
- removeAccessRequest = (id: string, isApproved: boolean) => {
- const requestToRemove = this.state.requestList.find(request => request.id === id);
- this.setState(state => ({
- requestList: state.requestList.filter(request => request.id !== id),
- }));
- if (isApproved && requestToRemove) {
- const team = requestToRemove.team;
- TeamActions.updateSuccess(team.slug, {
- ...team,
- memberCount: team.memberCount + 1,
- });
- }
- };
- renderBody() {
- const {organization} = this.props;
- if (!organization) {
- return null;
- }
- return (
- <OrganizationTeams
- {...this.props}
- access={new Set(organization.access)}
- features={new Set(organization.features)}
- organization={organization}
- requestList={this.state.requestList}
- onRemoveAccessRequest={this.removeAccessRequest}
- />
- );
- }
- }
- export {OrganizationTeamsContainer};
- export default withApi(withOrganization(OrganizationTeamsContainer));
|