mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-23 17:54:12 +00:00
85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
/*
|
|
* This file is part of a proprietary work.
|
|
*
|
|
* Copyright (c) 2025 Fossorial, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This file is licensed under the Fossorial Commercial License.
|
|
* You may not use this file except in compliance with the License.
|
|
* Unauthorized use, copying, modification, or distribution is strictly prohibited.
|
|
*
|
|
* This file is not licensed under the AGPLv3.
|
|
*/
|
|
|
|
"use client";
|
|
|
|
import PrivateSubscriptionStatusContext from "@app/contexts/privateSubscriptionStatusContext";
|
|
import { getTierPriceSet } from "@server/lib/private/billing/tiers";
|
|
import { GetOrgSubscriptionResponse } from "@server/routers/private/billing";
|
|
import { useState } from "react";
|
|
|
|
interface ProviderProps {
|
|
children: React.ReactNode;
|
|
subscriptionStatus: GetOrgSubscriptionResponse | null;
|
|
env: string;
|
|
sandbox_mode: boolean;
|
|
}
|
|
|
|
export function PrivateSubscriptionStatusProvider({
|
|
children,
|
|
subscriptionStatus,
|
|
env,
|
|
sandbox_mode
|
|
}: ProviderProps) {
|
|
const [subscriptionStatusState, setSubscriptionStatusState] =
|
|
useState<GetOrgSubscriptionResponse | null>(subscriptionStatus);
|
|
|
|
const updateSubscriptionStatus = (updatedSubscriptionStatus: GetOrgSubscriptionResponse) => {
|
|
setSubscriptionStatusState((prev) => {
|
|
return {
|
|
...updatedSubscriptionStatus
|
|
};
|
|
});
|
|
};
|
|
|
|
const isActive = () => {
|
|
if (subscriptionStatus?.subscription?.status === "active") {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const getTier = () => {
|
|
const tierPriceSet = getTierPriceSet(env, sandbox_mode);
|
|
|
|
if (subscriptionStatus?.items && subscriptionStatus.items.length > 0) {
|
|
// Iterate through tiers in order (earlier keys are higher tiers)
|
|
for (const [tierId, priceId] of Object.entries(tierPriceSet)) {
|
|
// Check if any subscription item matches this tier's price ID
|
|
const matchingItem = subscriptionStatus.items.find(item => item.priceId === priceId);
|
|
if (matchingItem) {
|
|
return tierId;
|
|
}
|
|
}
|
|
}
|
|
|
|
console.log("No matching tier found");
|
|
return null;
|
|
};
|
|
|
|
return (
|
|
<PrivateSubscriptionStatusContext.Provider
|
|
value={{
|
|
subscriptionStatus: subscriptionStatusState,
|
|
updateSubscriptionStatus,
|
|
isActive,
|
|
getTier
|
|
}}
|
|
>
|
|
{children}
|
|
</PrivateSubscriptionStatusContext.Provider>
|
|
);
|
|
}
|
|
|
|
export default PrivateSubscriptionStatusProvider;
|