123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import AsyncComponent from 'sentry/components/asyncComponent';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import Form from 'sentry/components/forms/form';
- import JsonForm from 'sentry/components/forms/jsonForm';
- import Pagination from 'sentry/components/pagination';
- import {t} from 'sentry/locale';
- import {Project} from 'sentry/types';
- import {sortProjects} from 'sentry/utils';
- import {
- MIN_PROJECTS_FOR_PAGINATION,
- MIN_PROJECTS_FOR_SEARCH,
- NotificationSettingsByProviderObject,
- NotificationSettingsObject,
- } from 'sentry/views/settings/account/notifications/constants';
- import {
- getParentData,
- getParentField,
- groupByOrganization,
- } from 'sentry/views/settings/account/notifications/utils';
- import {
- RenderSearch,
- SearchWrapper,
- } from 'sentry/views/settings/components/defaultSearchBar';
- type Props = {
- notificationSettings: NotificationSettingsObject;
- notificationType: string;
- onChange: (
- changedData: NotificationSettingsByProviderObject,
- parentId: string
- ) => NotificationSettingsObject;
- onSubmitSuccess: () => void;
- } & AsyncComponent['props'];
- type State = {
- projects: Project[];
- } & AsyncComponent['state'];
- class NotificationSettingsByProjects extends AsyncComponent<Props, State> {
- getDefaultState(): State {
- return {
- ...super.getDefaultState(),
- projects: [],
- };
- }
- getEndpoints(): ReturnType<AsyncComponent['getEndpoints']> {
- return [['projects', '/projects/']];
- }
- /**
- * Check the notification settings for how many projects there are.
- */
- getProjectCount = (): number => {
- const {notificationType, notificationSettings} = this.props;
- return Object.values(notificationSettings[notificationType]?.project || {}).length;
- };
- /**
- * The UI expects projects to be grouped by organization but can also use
- * this function to make a single group with all organizations.
- */
- getGroupedProjects = (): {[key: string]: Project[]} => {
- const {projects: stateProjects} = this.state;
- return Object.fromEntries(
- Object.values(groupByOrganization(sortProjects(stateProjects))).map(
- ({organization, projects}) => [`${organization.name} Projects`, projects]
- )
- );
- };
- renderBody() {
- const {notificationType, notificationSettings, onChange, onSubmitSuccess} =
- this.props;
- const {projects, projectsPageLinks} = this.state;
- const canSearch = this.getProjectCount() >= MIN_PROJECTS_FOR_SEARCH;
- const shouldPaginate = projects.length >= MIN_PROJECTS_FOR_PAGINATION;
- const renderSearch: RenderSearch = ({defaultSearchBar}) => (
- <StyledSearchWrapper>{defaultSearchBar}</StyledSearchWrapper>
- );
- return (
- <Fragment>
- {canSearch &&
- this.renderSearchInput({
- stateKey: 'projects',
- url: '/projects/',
- placeholder: t('Search Projects'),
- children: renderSearch,
- })}
- <Form
- saveOnBlur
- apiMethod="PUT"
- apiEndpoint="/users/me/notification-settings/"
- initialData={getParentData(notificationType, notificationSettings, projects)}
- onSubmitSuccess={onSubmitSuccess}
- >
- {projects.length === 0 ? (
- <EmptyMessage>{t('No projects found')}</EmptyMessage>
- ) : (
- Object.entries(this.getGroupedProjects()).map(([groupTitle, parents]) => (
- <JsonForm
- collapsible
- key={groupTitle}
- title={groupTitle}
- fields={parents.map(parent =>
- getParentField(notificationType, notificationSettings, parent, onChange)
- )}
- />
- ))
- )}
- </Form>
- {canSearch && shouldPaginate && (
- <Pagination pageLinks={projectsPageLinks} {...this.props} />
- )}
- </Fragment>
- );
- }
- }
- export default NotificationSettingsByProjects;
- const StyledSearchWrapper = styled(SearchWrapper)`
- * {
- width: 100%;
- }
- `;
|