123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import {Fragment} from 'react';
- import {browserHistory, RouteComponentProps} from 'react-router';
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {removeTeam, updateTeamSuccess} from 'sentry/actionCreators/teams';
- import Button from 'sentry/components/button';
- import Confirm from 'sentry/components/confirm';
- import Field from 'sentry/components/forms/field';
- import Form, {FormProps} from 'sentry/components/forms/form';
- import JsonForm from 'sentry/components/forms/jsonForm';
- import {Panel, PanelHeader} from 'sentry/components/panels';
- import teamSettingsFields from 'sentry/data/forms/teamSettingsFields';
- import {IconDelete} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import {Organization, Scope, Team} from 'sentry/types';
- import withOrganization from 'sentry/utils/withOrganization';
- import AsyncView from 'sentry/views/asyncView';
- type Props = RouteComponentProps<{orgId: string; teamId: string}, {}> & {
- organization: Organization;
- team: Team;
- };
- type State = AsyncView['state'];
- class TeamSettings extends AsyncView<Props, State> {
- getTitle() {
- return 'Team Settings';
- }
- getEndpoints() {
- return [];
- }
- handleSubmitSuccess: FormProps['onSubmitSuccess'] = (resp, model, id) => {
- // Use the old slug when triggering the update so we correctly replace the
- // previous team in the store
- updateTeamSuccess(this.props.team.slug, resp);
- if (id === 'slug') {
- addSuccessMessage(t('Team name changed'));
- browserHistory.replace(
- `/settings/${this.props.params.orgId}/teams/${model.getValue(id)}/settings/`
- );
- this.setState({loading: true});
- }
- };
- handleRemoveTeam = async () => {
- await removeTeam(this.api, this.props.params);
- browserHistory.replace(`/settings/${this.props.params.orgId}/teams/`);
- };
- renderBody() {
- const {organization, team, params} = this.props;
- const access = new Set<Scope>(organization.access);
- return (
- <Fragment>
- <Form
- apiMethod="PUT"
- apiEndpoint={`/teams/${params.orgId}/${team.slug}/`}
- saveOnBlur
- allowUndo
- onSubmitSuccess={this.handleSubmitSuccess}
- onSubmitError={() => addErrorMessage(t('Unable to save change'))}
- initialData={{
- name: team.name,
- slug: team.slug,
- }}
- >
- <JsonForm access={access} forms={teamSettingsFields} />
- </Form>
- <Panel>
- <PanelHeader>{t('Remove Team')}</PanelHeader>
- <Field
- help={t(
- "This may affect team members' access to projects and associated alert delivery."
- )}
- >
- <div>
- <Confirm
- disabled={!access.has('team:admin')}
- onConfirm={this.handleRemoveTeam}
- priority="danger"
- message={tct('Are you sure you want to remove the team [team]?', {
- team: `#${team.slug}`,
- })}
- >
- <Button
- icon={<IconDelete />}
- priority="danger"
- disabled={!access.has('team:admin')}
- >
- {t('Remove Team')}
- </Button>
- </Confirm>
- </div>
- </Field>
- </Panel>
- </Fragment>
- );
- }
- }
- export default withOrganization(TeamSettings);
|