// eslint-disable-next-line simple-import-sort/imports import {Fragment} from 'react'; import styled from '@emotion/styled'; import DeprecatedAsyncComponent from 'sentry/components/deprecatedAsyncComponent'; import type {IntegrationWithConfig, Organization, ServerlessFunction} from 'sentry/types'; import Panel from 'sentry/components/panels/panel'; import PanelBody from 'sentry/components/panels/panelBody'; import PanelHeader from 'sentry/components/panels/panelHeader'; import {space} from 'sentry/styles/space'; import {Alert} from 'sentry/components/alert'; import withOrganization from 'sentry/utils/withOrganization'; import {t} from 'sentry/locale'; import {trackIntegrationAnalytics} from 'sentry/utils/integrationUtil'; import IntegrationServerlessRow from './integrationServerlessRow'; type Props = DeprecatedAsyncComponent['props'] & { integration: IntegrationWithConfig; organization: Organization; }; type State = DeprecatedAsyncComponent['state'] & { serverlessFunctions: ServerlessFunction[]; }; class IntegrationServerlessFunctions extends DeprecatedAsyncComponent { getDefaultState(): State { return { ...super.getDefaultState(), serverlessFunctions: [], }; } getEndpoints(): ReturnType { const orgSlug = this.props.organization.slug; return [ [ 'serverlessFunctions', `/organizations/${orgSlug}/integrations/${this.props.integration.id}/serverless-functions/`, ], ]; } get serverlessFunctions() { return this.state.serverlessFunctions; } onLoadAllEndpointsSuccess() { trackIntegrationAnalytics('integrations.serverless_functions_viewed', { integration: this.props.integration.provider.key, integration_type: 'first_party', num_functions: this.serverlessFunctions.length, organization: this.props.organization, }); } handleFunctionUpdate = ( serverlessFunctionUpdate: Partial, index: number ) => { const serverlessFunctions = [...this.serverlessFunctions]; const serverlessFunction = { ...serverlessFunctions[index], ...serverlessFunctionUpdate, }; serverlessFunctions[index] = serverlessFunction; this.setState({serverlessFunctions}); }; renderBody() { return ( {t( 'Manage your AWS Lambda functions below. Only Node and Python runtimes are currently supported.' )} {t('Name')} {t('Layer Status')} {t('Enabled')} {this.serverlessFunctions.map((serverlessFunction, i) => ( ) => this.handleFunctionUpdate(update, i) } {...this.props} /> ))} ); } } export default withOrganization(IntegrationServerlessFunctions); const StyledPanelHeader = styled(PanelHeader)` padding: ${space(2)}; display: grid; grid-column-gap: ${space(1)}; align-items: center; grid-template-columns: 2fr 1fr 0.5fr; grid-template-areas: 'function-name layer-status enable-switch'; `; const HeaderText = styled('div')` flex: 1; `; const StyledPanelBody = styled(PanelBody)``; const NameHeader = styled(HeaderText)` grid-area: function-name; `; const LayerStatusWrapper = styled(HeaderText)` grid-area: layer-status; `; const EnableHeader = styled(HeaderText)` grid-area: enable-switch; `;