import {Component, createRef} from 'react'; import styled from '@emotion/styled'; import {addErrorMessage} from 'sentry/actionCreators/indicator'; import {Button} from 'sentry/components/button'; import {IconChevron} from 'sentry/icons'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import {Organization} from 'sentry/types'; import {convertRelayPiiConfig} from 'sentry/views/settings/components/dataScrubbing/convertRelayPiiConfig'; import Rules from './rules'; import {Rule} from './types'; type Props = { organization: Organization; }; type State = { isCollapsed: boolean; rules: Rule[]; contentHeight?: string; }; export class OrganizationRules extends Component { state: State = { isCollapsed: true, rules: [], }; componentDidMount() { this.loadRules(); } componentDidUpdate(prevProps: Props) { if ( prevProps.organization.relayPiiConfig !== this.props.organization.relayPiiConfig ) { this.loadRules(); return; } this.loadContentHeight(); } rulesRef = createRef(); loadContentHeight() { if (!this.state.contentHeight) { const contentHeight = this.rulesRef.current?.offsetHeight; if (contentHeight) { this.setState({contentHeight: `${contentHeight}px`}); } } } handleToggleCollapsed = () => { this.setState(prevState => ({ isCollapsed: !prevState.isCollapsed, })); }; loadRules() { try { this.setState({ rules: convertRelayPiiConfig(this.props.organization.relayPiiConfig), }); } catch { addErrorMessage(t('Unable to load data scrubbing rules')); } } render() { const {isCollapsed, contentHeight, rules} = this.state; if (rules.length === 0) { return ( {t('There are no data scrubbing rules at the organization level')} ); } return (
{t('Organization Rules')}
); } } const Content = styled('div')` transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; height: 0; overflow: hidden; `; const Header = styled('div')` cursor: pointer; display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid ${p => p.theme.border}; padding: ${space(1)} ${space(2)}; `; const Wrapper = styled('div')<{contentHeight?: string; isCollapsed?: boolean}>` color: ${p => p.theme.gray200}; background: ${p => p.theme.backgroundSecondary}; ${p => !p.contentHeight && `padding: ${space(1)} ${space(2)}`}; ${p => !p.isCollapsed && ` border-bottom: 1px solid ${p.theme.border}`}; ${p => !p.isCollapsed && p.contentHeight && ` ${Content} { height: ${p.contentHeight}; } `} `;