* manage billing section * wip billing credits * WIP * WIP * Download expense log * credit worth * skeleton fixes * add org tip * add teams tip * restore service * type check * type check * fix types * additional credits * fix progress bar * add dashed prop * match new designs * hide area with no monthly credits * fix i18n * show current balance label * Update apps/web/modules/settings/billing/billing-view.tsx Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> * spacing + monthly credits not showing additional * Remove additional credits from monthly calculations * feat: replace add members redirect with invite modal in billing settings - Replace Button href with onClick handler to open MemberInvitationModal - Add MemberInvitationModalWithoutMembers import and state management - Maintain existing team/org context support - Follow established modal usage patterns from other components - Fix lint error by using undefined instead of empty arrow function Co-Authored-By: sean@cal.com <Sean@brydon.io> * Remove redudant vars from method * fix type check --------- Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
105 lines
3.3 KiB
TypeScript
105 lines
3.3 KiB
TypeScript
"use client";
|
|
|
|
import { useSession } from "next-auth/react";
|
|
import { usePathname } from "next/navigation";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import classNames from "@calcom/ui/classNames";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
|
|
import BillingCredits from "~/settings/billing/components/BillingCredits";
|
|
|
|
interface CtaRowProps {
|
|
title: string;
|
|
description: string;
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
Support?: {
|
|
open: () => void;
|
|
shouldShowTriggerButton: (showTrigger: boolean) => void;
|
|
};
|
|
}
|
|
}
|
|
|
|
export const CtaRow = ({ title, description, className, children }: CtaRowProps) => {
|
|
return (
|
|
<>
|
|
<section className={classNames("text-default flex flex-col sm:flex-row", className)}>
|
|
<div>
|
|
<h2 className="text-base font-semibold">{title}</h2>
|
|
<p>{description}</p>
|
|
</div>
|
|
<div className="flex-shrink-0 pt-3 sm:ml-auto sm:pl-3 sm:pt-0">{children}</div>
|
|
</section>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const BillingView = () => {
|
|
const pathname = usePathname();
|
|
const session = useSession();
|
|
const { t } = useLocale();
|
|
const returnTo = pathname;
|
|
|
|
// Determine the billing context and extract appropriate team/org ID
|
|
const getTeamIdFromContext = () => {
|
|
if (!pathname) return null;
|
|
|
|
// Team billing: /settings/teams/{id}/billing
|
|
if (pathname.includes("/teams/") && pathname.includes("/billing")) {
|
|
const teamIdMatch = pathname.match(/\/teams\/(\d+)\/billing/);
|
|
return teamIdMatch ? teamIdMatch[1] : null;
|
|
}
|
|
|
|
// Organization billing: /settings/organizations/billing
|
|
if (pathname.includes("/organizations/billing")) {
|
|
const orgId = session.data?.user?.org?.id;
|
|
return typeof orgId === "number" ? orgId.toString() : null;
|
|
}
|
|
};
|
|
|
|
const teamId = getTeamIdFromContext();
|
|
|
|
const billingHref = teamId
|
|
? `/api/integrations/stripepayment/portal?teamId=${teamId}&returnTo=${WEBAPP_URL}${returnTo}`
|
|
: `/api/integrations/stripepayment/portal?returnTo=${WEBAPP_URL}${returnTo}`;
|
|
|
|
const onContactSupportClick = async () => {
|
|
if (window.Support) {
|
|
window.Support.open();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="bg-muted border-muted mt-5 rounded-xl border p-1">
|
|
<div className="bg-default border-muted flex rounded-[10px] border px-5 py-4">
|
|
<div className="flex w-full flex-col gap-1">
|
|
<h3 className="text-emphasis text-sm font-semibold leading-none">{t("manage_billing")}</h3>
|
|
<p className="text-subtle text-sm font-medium leading-tight">
|
|
{t("view_and_manage_billing_details")}
|
|
</p>
|
|
</div>
|
|
<Button color="primary" href={billingHref} target="_blank" size="sm" EndIcon="external-link">
|
|
{t("billing_portal")}
|
|
</Button>
|
|
</div>
|
|
<div className="flex items-center justify-between px-4 py-5">
|
|
<p className="text-subtle text-sm font-medium leading-tight">{t("need_help")}</p>
|
|
<Button color="secondary" size="sm" onClick={onContactSupportClick}>
|
|
{t("contact_support")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<BillingCredits />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BillingView;
|