mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
// @ts-nocheck
|
|
import * as R from 'ramda';
|
|
import { Intent } from '@blueprintjs/core';
|
|
import { AppToaster, Group, GroupProps } from '@/components';
|
|
import { SubscriptionPlansPeriod } from '@/store/plans/plans.reducer';
|
|
import { SubscriptionPlan } from '@/containers/Subscriptions/component/SubscriptionPlan';
|
|
import { useGetLemonSqueezyCheckout } from '@/hooks/query';
|
|
import { useSubscriptionPlans } from './hooks';
|
|
import { withPlans } from '@/containers/Subscriptions/withPlans';
|
|
import { withSubscriptionPlanMapper } from '@/containers/Subscriptions/component/withSubscriptionPlanMapper';
|
|
|
|
interface SubscriptionPlansProps {
|
|
wrapProps?: GroupProps;
|
|
onSubscribe?: (variantId: number) => void;
|
|
}
|
|
|
|
export function SubscriptionPlans({
|
|
wrapProps,
|
|
onSubscribe,
|
|
}: SubscriptionPlansProps) {
|
|
const subscriptionPlans = useSubscriptionPlans();
|
|
|
|
return (
|
|
<Group spacing={14} noWrap align="stretch" {...wrapProps}>
|
|
{subscriptionPlans.map((plan, index) => (
|
|
<SubscriptionPlanMapped key={index} plan={plan} />
|
|
))}
|
|
</Group>
|
|
);
|
|
}
|
|
|
|
const SubscriptionPlanMapped = R.compose(
|
|
withSubscriptionPlanMapper,
|
|
withPlans(({ plansPeriod }) => ({ plansPeriod })),
|
|
)(({ plansPeriod, monthlyVariantId, annuallyVariantId, ...props }) => {
|
|
const { mutateAsync: getLemonCheckout, isLoading } =
|
|
useGetLemonSqueezyCheckout();
|
|
|
|
const handleSubscribeBtnClick = () => {
|
|
const variantId =
|
|
SubscriptionPlansPeriod.Monthly === plansPeriod
|
|
? monthlyVariantId
|
|
: annuallyVariantId;
|
|
|
|
getLemonCheckout({ variantId })
|
|
.then((res) => {
|
|
const checkoutUrl = res.data.data.attributes.url;
|
|
window.LemonSqueezy.Url.Open(checkoutUrl);
|
|
})
|
|
.catch(() => {
|
|
AppToaster.show({
|
|
message: 'Something went wrong!',
|
|
intent: Intent.DANGER,
|
|
});
|
|
});
|
|
};
|
|
return (
|
|
<SubscriptionPlan
|
|
{...props}
|
|
onSubscribe={handleSubscribeBtnClick}
|
|
subscribeButtonProps={{
|
|
loading: isLoading,
|
|
}}
|
|
/>
|
|
);
|
|
});
|