123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- import {Component, Fragment} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import type {Client} from 'sentry/api';
- import Access from 'sentry/components/acl/access';
- import {Button} from 'sentry/components/button';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import ListLink from 'sentry/components/links/listLink';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import NavTabs from 'sentry/components/navTabs';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import PanelHeader from 'sentry/components/panels/panelHeader';
- import PanelItem from 'sentry/components/panels/panelItem';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {ALL_ENVIRONMENTS_KEY} from 'sentry/constants';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types/organization';
- import type {Environment, Project} from 'sentry/types/project';
- import {getDisplayName, getUrlRoutingName} from 'sentry/utils/environment';
- import recreateRoute from 'sentry/utils/recreateRoute';
- import withApi from 'sentry/utils/withApi';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import PermissionAlert from 'sentry/views/settings/project/permissionAlert';
- type Props = {
- api: Client;
- organization: Organization;
- project: Project;
- } & RouteComponentProps<{projectId: string}, {}>;
- type State = {
- environments: null | Environment[];
- isLoading: boolean;
- };
- class ProjectEnvironments extends Component<Props, State> {
- state: State = {
- environments: null,
- isLoading: true,
- };
- componentDidMount() {
- this.fetchData();
- }
- componentDidUpdate(prevProps: Props) {
- if (
- this.props.location.pathname.endsWith('hidden/') !==
- prevProps.location.pathname.endsWith('hidden/')
- ) {
- this.fetchData();
- }
- }
- fetchData() {
- const isHidden = this.props.location.pathname.endsWith('hidden/');
- if (!this.state.isLoading) {
- this.setState({isLoading: true});
- }
- const {organization} = this.props;
- const {projectId} = this.props.params;
- this.props.api.request(`/projects/${organization.slug}/${projectId}/environments/`, {
- query: {
- visibility: isHidden ? 'hidden' : 'visible',
- },
- success: environments => {
- this.setState({environments, isLoading: false});
- },
- });
- }
- // Toggle visibility of environment
- toggleEnv = (env: Environment, shouldHide: boolean) => {
- const {organization} = this.props;
- const {projectId} = this.props.params;
- this.props.api.request(
- `/projects/${organization.slug}/${projectId}/environments/${getUrlRoutingName(
- env
- )}/`,
- {
- method: 'PUT',
- data: {
- name: env.name,
- isHidden: shouldHide,
- },
- success: () => {
- addSuccessMessage(
- tct('Updated [environment]', {
- environment: getDisplayName(env),
- })
- );
- },
- error: () => {
- addErrorMessage(
- tct('Unable to update [environment]', {
- environment: getDisplayName(env),
- })
- );
- },
- complete: this.fetchData.bind(this),
- }
- );
- };
- renderEmpty() {
- const isHidden = this.props.location.pathname.endsWith('hidden/');
- const message = isHidden
- ? t("You don't have any hidden environments.")
- : t("You don't have any environments yet.");
- return <EmptyMessage>{message}</EmptyMessage>;
- }
- /**
- * Renders rows for "system" environments:
- * - "All Environments"
- * - "No Environment"
- *
- */
- renderAllEnvironmentsSystemRow() {
- // Not available in "Hidden" tab
- const isHidden = this.props.location.pathname.endsWith('hidden/');
- if (isHidden) {
- return null;
- }
- const {project} = this.props;
- return (
- <EnvironmentRow
- project={project}
- name={ALL_ENVIRONMENTS_KEY}
- environment={{
- id: ALL_ENVIRONMENTS_KEY,
- name: ALL_ENVIRONMENTS_KEY,
- displayName: ALL_ENVIRONMENTS_KEY,
- }}
- isSystemRow
- />
- );
- }
- renderEnvironmentList(envs: Environment[]) {
- const {project} = this.props;
- const isHidden = this.props.location.pathname.endsWith('hidden/');
- const buttonText = isHidden ? t('Show') : t('Hide');
- return (
- <Fragment>
- {this.renderAllEnvironmentsSystemRow()}
- {envs.map(env => (
- <EnvironmentRow
- project={project}
- key={env.id}
- name={env.name}
- environment={env}
- isHidden={isHidden}
- onHide={this.toggleEnv}
- actionText={buttonText}
- shouldShowAction
- />
- ))}
- </Fragment>
- );
- }
- renderBody() {
- const {environments, isLoading} = this.state;
- if (isLoading) {
- return <LoadingIndicator />;
- }
- return (
- <PanelBody>
- {environments?.length
- ? this.renderEnvironmentList(environments)
- : this.renderEmpty()}
- </PanelBody>
- );
- }
- render() {
- const {routes, params, location, project} = this.props;
- const isHidden = location.pathname.endsWith('hidden/');
- const baseUrl = recreateRoute('', {routes, params, stepBack: -1});
- return (
- <div>
- <SentryDocumentTitle title={t('Environments')} projectSlug={params.projectId} />
- <SettingsPageHeader
- title={t('Manage Environments')}
- tabs={
- <NavTabs underlined>
- <ListLink to={baseUrl} index isActive={() => !isHidden}>
- {t('Environments')}
- </ListLink>
- <ListLink to={`${baseUrl}hidden/`} index isActive={() => isHidden}>
- {t('Hidden')}
- </ListLink>
- </NavTabs>
- }
- />
- <PermissionAlert project={project} />
- <Panel>
- <PanelHeader>{isHidden ? t('Hidden') : t('Active Environments')}</PanelHeader>
- {this.renderBody()}
- </Panel>
- </div>
- );
- }
- }
- type RowProps = {
- environment: Environment;
- name: string;
- project: Project;
- actionText?: string;
- isHidden?: boolean;
- isSystemRow?: boolean;
- onHide?: (env: Environment, isHidden: boolean) => void;
- shouldShowAction?: boolean;
- };
- function EnvironmentRow({
- project,
- environment,
- name,
- onHide,
- shouldShowAction = false,
- isSystemRow = false,
- isHidden = false,
- actionText = '',
- }: RowProps) {
- return (
- <EnvironmentItem>
- <Name>{isSystemRow ? t('All Environments') : name}</Name>
- <Access access={['project:write']} project={project}>
- {({hasAccess}) => (
- <Fragment>
- {shouldShowAction && onHide && (
- <EnvironmentButton
- size="xs"
- disabled={!hasAccess}
- onClick={() => onHide(environment, !isHidden)}
- >
- {actionText}
- </EnvironmentButton>
- )}
- </Fragment>
- )}
- </Access>
- </EnvironmentItem>
- );
- }
- const EnvironmentItem = styled(PanelItem)`
- align-items: center;
- justify-content: space-between;
- `;
- const Name = styled('div')`
- display: flex;
- align-items: center;
- `;
- const EnvironmentButton = styled(Button)`
- margin-left: ${space(0.5)};
- `;
- export {ProjectEnvironments};
- export default withApi(ProjectEnvironments);
|