| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import Link from 'next/link'
- import { Button, Card, CardContent } from 'ui'
- import { SupportLink } from '../../Support/SupportLink'
- import { CloudMarketplaceContractLinkingIneligibilityReason } from './cloud-marketplace-query'
- interface Props {
- reason: CloudMarketplaceContractLinkingIneligibilityReason
- }
- const AwsMarketplaceContractNotLinkable = ({ reason }: Props) => {
- return (
- <div className="mt-5 mb-10">
- <Card className="p-4">
- <CardContent>{determineCardContent(reason)}</CardContent>
- </Card>
- </div>
- )
- }
- function determineCardContent(reason: CloudMarketplaceContractLinkingIneligibilityReason) {
- switch (reason) {
- case 'NO_ACTIVE_CONTRACT_FOUND':
- return (
- <p>
- Thanks for purchasing Briven through the AWS Marketplace. It’ll take a moment for all
- systems to sync before you can link your Briven organization to the AWS Marketplace.
- Please try again in a few minutes.
- </p>
- )
- case 'AWS_ACTIVATE_CREDITS_DEAL':
- return (
- <>
- <p className="mb-4">
- You’ve accepted a private offer for Briven credits as part of AWS Activate. No further
- action is required on your end.
- </p>
- <p>
- Your Briven organization’s credit balance will be updated accordingly. Please note
- that it may take 1 or 2 days for this change to appear on the Dashboard. You can find
- the credit balance on the{' '}
- <Link className="underline" href={'/org/_/billing'}>
- organization's billing page
- </Link>
- .
- </p>
- <Button asChild type="primary" size="medium" className="mt-8">
- <Link href="/organizations">Go to Dashboard</Link>
- </Button>
- </>
- )
- case 'AGREEMENT_BASED_OFFER':
- return (
- <>
- <p>
- You’ve accepted a private offer that updated or extended an existing Briven
- subscription on the AWS Marketplace. No further action is required on your end. Your
- Briven organization will remain linked to the AWS Marketplace, and your projects will
- continue to run as usual.
- </p>
- <Button asChild type="primary" size="medium" className="mt-8">
- <Link href="/organizations">Go to Dashboard</Link>
- </Button>
- </>
- )
- default:
- return (
- <p>
- Unable to determine the reason why AWS Marketplace onboarding is not possible.{' '}
- <SupportLink className="underline">Contact support.</SupportLink>
- </p>
- )
- }
- }
- export default AwsMarketplaceContractNotLinkable
|