123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- import {Component, Fragment} from 'react';
- import styled from '@emotion/styled';
- import {Tag} from 'sentry/components/core/badge/tag';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types/organization';
- import {ANNUAL, MONTHLY} from 'getsentry/constants';
- import type {BillingConfig, Plan, Promotion, Subscription} from 'getsentry/types';
- import {OnDemandBudgetMode} from 'getsentry/types';
- import {formatReservedWithUnits} from 'getsentry/utils/billing';
- import {getPlanCategoryName} from 'getsentry/utils/dataCategory';
- import formatCurrency from 'getsentry/utils/formatCurrency';
- import {
- showChurnDiscount,
- showSubscriptionDiscount,
- } from 'getsentry/utils/promotionUtils';
- import type {CheckoutFormData} from 'getsentry/views/amCheckout/types';
- import * as utils from 'getsentry/views/amCheckout/utils';
- import {
- getTotalBudget,
- hasOnDemandBudgetsFeature,
- } from 'getsentry/views/onDemandBudgets/utils';
- type Props = {
- activePlan: Plan;
- billingConfig: BillingConfig;
- formData: CheckoutFormData;
- onUpdate: (data: any) => void;
- organization: Organization;
- subscription: Subscription;
- discountInfo?: Promotion['discountInfo'];
- };
- class CheckoutOverview extends Component<Props> {
- get shortInterval() {
- const {activePlan} = this.props;
- return utils.getShortInterval(activePlan.billingInterval);
- }
- get toggledInterval() {
- const {activePlan} = this.props;
- return activePlan.billingInterval === MONTHLY ? ANNUAL : MONTHLY;
- }
- get nextPlan() {
- const {formData, billingConfig} = this.props;
- const basePlan = formData.plan.replace('_auf', '');
- return billingConfig.planList.find(
- plan =>
- plan.id.indexOf(basePlan) === 0 && plan.billingInterval === this.toggledInterval
- );
- }
- handleChange = () => {
- const {onUpdate} = this.props;
- if (this.nextPlan) {
- onUpdate({
- plan: this.nextPlan.id,
- });
- }
- };
- renderDataOptions = () => {
- const {formData, activePlan} = this.props;
- return activePlan.checkoutCategories.map(category => {
- const eventBucket = utils.getBucket({
- // @ts-expect-error TS(7053): Element implicitly has an 'any' type because expre... Remove this comment to see the full error message
- events: formData.reserved[category],
- // @ts-expect-error TS(7053): Element implicitly has an 'any' type because expre... Remove this comment to see the full error message
- buckets: activePlan.planCategories[category],
- });
- const price = utils.displayPrice({cents: eventBucket.price});
- return (
- <DetailItem key={category} data-test-id={category}>
- <div>
- <DetailTitle>{getPlanCategoryName({plan: activePlan, category})}</DetailTitle>
- {
- // @ts-expect-error TS(7053): Element implicitly has an 'any' type because expre... Remove this comment to see the full error message
- formatReservedWithUnits(formData.reserved[category], category)
- }
- </div>
- {eventBucket.price === 0 ? (
- <Tag>{t('included')}</Tag>
- ) : (
- <DetailPrice>{`${price}/${this.shortInterval}`}</DetailPrice>
- )}
- </DetailItem>
- );
- });
- };
- renderOnDemand() {
- const {formData, organization, subscription, activePlan} = this.props;
- const {onDemandBudget} = formData;
- let onDemandMaxSpend = formData.onDemandMaxSpend;
- const displayNewOnDemandBudgetsUI = hasOnDemandBudgetsFeature(
- organization,
- subscription
- );
- if (onDemandBudget && displayNewOnDemandBudgetsUI) {
- onDemandMaxSpend = getTotalBudget(onDemandBudget);
- }
- if (!onDemandMaxSpend || onDemandMaxSpend <= 0) {
- return null;
- }
- let title = t('On-Demand');
- if (displayNewOnDemandBudgetsUI) {
- if (onDemandBudget) {
- if (onDemandBudget.budgetMode === OnDemandBudgetMode.SHARED) {
- title = t('Shared On-Demand');
- }
- if (onDemandBudget.budgetMode === OnDemandBudgetMode.PER_CATEGORY) {
- title = t('Per-Category On-Demand');
- }
- }
- }
- const details: React.ReactNode[] = [];
- if (
- !displayNewOnDemandBudgetsUI ||
- (onDemandBudget && onDemandBudget.budgetMode === OnDemandBudgetMode.SHARED)
- ) {
- const onDemandPrice = utils.displayPrice({cents: onDemandMaxSpend});
- details.push(
- <Fragment key="shared-ondemand">
- {tct('up to [onDemandPrice]/mo', {onDemandPrice})}
- </Fragment>
- );
- } else if (onDemandBudget) {
- activePlan.onDemandCategories.forEach(category => {
- // @ts-expect-error TS(7053): Element implicitly has an 'any' type because expre... Remove this comment to see the full error message
- if (onDemandBudget.budgets[category]) {
- details.push(
- <Fragment key={`${category}-per-category-ondemand`}>
- {getPlanCategoryName({plan: activePlan, category})}
- <OnDemandPrice>
- {tct('up to [onDemandPrice]/mo', {
- onDemandPrice: utils.displayPrice({
- // @ts-expect-error TS(7053): Element implicitly has an 'any' type because expre... Remove this comment to see the full error message
- cents: onDemandBudget.budgets[category],
- }),
- })}
- </OnDemandPrice>
- </Fragment>
- );
- }
- });
- }
- return (
- <OnDemandDetailItem key="ondemand" data-test-id="ondemand">
- <div>
- <DetailTitle>{title}</DetailTitle>
- </div>
- <Tag>{t('enabled')}</Tag>
- <OnDemandDetailItems>{details}</OnDemandDetailItems>
- </OnDemandDetailItem>
- );
- }
- renderDetailItems = () => {
- const {activePlan, discountInfo} = this.props;
- const planName = activePlan.name;
- const showSubscriptionDiscountInfo =
- showSubscriptionDiscount({activePlan, discountInfo}) && discountInfo;
- let price = activePlan.basePrice;
- const originalTotal = utils.displayPrice({cents: activePlan.basePrice});
- if (showSubscriptionDiscountInfo) {
- price = utils.getDiscountedPrice({
- basePrice: price,
- discountType: discountInfo.discountType,
- amount: discountInfo.amount,
- creditCategory: discountInfo.creditCategory,
- });
- }
- const basePrice = utils.displayPrice({cents: price});
- return (
- <Fragment>
- <DetailItem key="plan" data-test-id="plan">
- <div>
- <DetailTitle noBottomMargin={!!discountInfo}>{t('Plan Type')}</DetailTitle>
- {showSubscriptionDiscountInfo ? (
- <ProminantPlanName>{planName}</ProminantPlanName>
- ) : (
- <Fragment>{planName}</Fragment>
- )}
- {showSubscriptionDiscountInfo && (
- <DurationText>{`${discountInfo.durationText}*`}</DurationText>
- )}
- </div>
- <PriceContainer>
- {showSubscriptionDiscountInfo && (
- <PromoDetailTitle noBottomMargin>{t('Promo Price')}</PromoDetailTitle>
- )}
- <DetailPrice>{`${basePrice}/${this.shortInterval}`}</DetailPrice>
- {showSubscriptionDiscountInfo && (
- <DiscountWrapper>
- <OriginalPrice>{`${originalTotal}/${this.shortInterval}`}</OriginalPrice>
- {tct('([percentOff]% off)', {
- percentOff: discountInfo.amount / 100,
- })}
- </DiscountWrapper>
- )}
- </PriceContainer>
- </DetailItem>
- {this.renderDataOptions()}
- {this.renderOnDemand()}
- </Fragment>
- );
- };
- render() {
- const {formData, activePlan, discountInfo} = this.props;
- let discountData = {};
- const showDiscount =
- (showSubscriptionDiscount({activePlan, discountInfo}) ||
- showChurnDiscount({activePlan, discountInfo})) &&
- discountInfo;
- if (showDiscount) {
- discountData = {
- discountType: discountInfo.discountType,
- amount: discountInfo.amount,
- maxDiscount: discountInfo.maxCentsPerPeriod,
- creditCategory: discountInfo.creditCategory,
- };
- }
- const reservedTotal = utils.getReservedTotal({
- ...formData,
- plan: activePlan,
- ...discountData,
- });
- const originalTotal = utils.getReservedTotal({
- ...formData,
- plan: activePlan,
- });
- const billingInterval =
- discountInfo?.billingInterval === 'monthly' ? 'Months' : 'Years';
- const showChurnDiscountInfo =
- showChurnDiscount({activePlan, discountInfo}) && discountInfo;
- const {onDemandBudget} = formData;
- return (
- <StyledPanel>
- <OverviewHeading>
- {showChurnDiscountInfo && (
- <ChurnPromoText>
- {t(
- 'Promotional Price for %s %s*',
- discountInfo.billingPeriods,
- billingInterval
- )}
- </ChurnPromoText>
- )}
- <PlanName>{tct('[name] Plan', {name: activePlan.name})}</PlanName>
- <div>
- <TotalPrice>
- <Currency>$</Currency>
- <div>{reservedTotal}</div>
- <BillingInterval>{`/${this.shortInterval}`}</BillingInterval>
- </TotalPrice>
- {onDemandBudget && getTotalBudget(onDemandBudget) > 0 ? (
- <OnDemandAdditionalCost data-test-id="on-demand-additional-cost">
- {tct('+ On-Demand charges up to [amount][break] based on usage', {
- amount: `${formatCurrency(getTotalBudget(onDemandBudget))}/mo`,
- break: <br />,
- })}
- </OnDemandAdditionalCost>
- ) : (
- // Placeholder to avoid jumping when on-demand charges are added
- <div style={{height: 33}} />
- )}
- </div>
- {showChurnDiscountInfo && (
- <ChurnPromoText>
- {tct('Current Total Price: [originalTotal] ([amount]% off*)', {
- originalTotal: <DiscountText>${originalTotal}/mo</DiscountText>,
- amount: discountInfo.amount / 100,
- })}
- </ChurnPromoText>
- )}
- </OverviewHeading>
- <DetailItems>{this.renderDetailItems()}</DetailItems>
- </StyledPanel>
- );
- }
- }
- const StyledPanel = styled(Panel)`
- display: grid;
- grid-template-rows: repeat(2, auto);
- gap: ${space(3)};
- padding: ${space(4)} ${space(3)} ${space(3)};
- `;
- const OverviewHeading = styled('div')`
- display: grid;
- grid-template-rows: repeat(2, auto);
- gap: ${space(1.5)};
- font-size: ${p => p.theme.fontSizeExtraLarge};
- align-items: center;
- text-align: center;
- justify-items: center;
- `;
- const PlanName = styled('div')`
- font-weight: 600;
- `;
- const TotalPrice = styled('div')`
- display: inline-grid;
- grid-template-columns: repeat(3, auto);
- font-size: 56px;
- `;
- const Currency = styled('div')`
- font-size: 32px;
- padding-top: ${space(1)};
- `;
- const BillingInterval = styled('div')`
- font-size: ${p => p.theme.headerFontSize};
- padding-bottom: ${space(1.5)};
- align-self: end;
- `;
- const OnDemandAdditionalCost = styled('div')`
- font-size: ${p => p.theme.fontSizeSmall};
- `;
- const DetailItems = styled(PanelBody)`
- color: ${p => p.theme.subText};
- font-size: ${p => p.theme.fontSizeLarge};
- `;
- const DetailItem = styled('div')`
- display: grid;
- grid-template-columns: 1fr auto;
- gap: ${space(0.5)};
- align-items: center;
- padding: ${space(2)} 0;
- border-top: 1px solid ${p => p.theme.innerBorder};
- `;
- const DetailTitle = styled('div')<{noBottomMargin?: boolean}>`
- text-transform: uppercase;
- font-size: ${p => p.theme.fontSizeSmall};
- font-weight: 600;
- color: ${p => p.theme.gray300};
- margin-top: ${space(0.25)};
- ${p => !p.noBottomMargin && `margin-bottom: ${space(1)};`}
- `;
- const PromoDetailTitle = styled(DetailTitle)`
- display: flex;
- justify-content: end;
- `;
- const OnDemandDetailItem = styled(DetailItem)`
- align-items: start;
- `;
- const OnDemandDetailItems = styled('div')`
- display: grid;
- grid-template-columns: 1fr auto;
- gap: ${space(1)};
- column-gap: ${space(1)};
- grid-column: 1 / -1;
- `;
- const OnDemandPrice = styled('div')`
- text-align: right;
- `;
- const OriginalPrice = styled('div')`
- color: ${p => p.theme.gray300};
- text-decoration: line-through;
- `;
- const DetailPrice = styled('div')`
- justify-self: end;
- color: ${p => p.theme.textColor};
- display: flex;
- justify-content: end;
- `;
- const PriceContainer = styled('div')`
- display: flex;
- flex-direction: column;
- `;
- const DiscountWrapper = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(0.5)};
- font-size: ${p => p.theme.fontSizeSmall};
- color: ${p => p.theme.gray300};
- `;
- const DurationText = styled('div')`
- font-size: ${p => p.theme.fontSizeSmall};
- `;
- const ProminantPlanName = styled('span')`
- font-weight: 500;
- font-size: ${p => p.theme.fontSizeExtraLarge};
- color: ${p => p.theme.gray500};
- `;
- const ChurnPromoText = styled('span')`
- font-size: ${p => p.theme.fontSizeLarge};
- color: ${p => p.theme.gray300};
- font-weight: bold;
- `;
- const DiscountText = styled(ChurnPromoText)`
- text-decoration: line-through;
- `;
- export default CheckoutOverview;
|