updated bill ans plan page
This commit is contained in:
parent
207c2820bf
commit
ed1e0cd428
@ -27,14 +27,16 @@ const SubScriptionHistory = ({ tenantId }) => {
|
|||||||
if (isError) return <div>{error}</div>;
|
if (isError) return <div>{error}</div>;
|
||||||
|
|
||||||
const plan = data?.currentPlan;
|
const plan = data?.currentPlan;
|
||||||
|
const features = data?.currentPlanFeatures;
|
||||||
|
const subscriptionHistory = data?.subscriptionHistery;
|
||||||
|
|
||||||
if (!plan) {
|
if (!plan) {
|
||||||
return (
|
return (
|
||||||
<div className="text-center">
|
<div className="text-center p-4">
|
||||||
<button className="btn btn-sm btn-success" onClick={handleUpgradePlan}>
|
<button className="btn btn-success" onClick={handleUpgradePlan}>
|
||||||
Add Subscription
|
Add Subscription
|
||||||
</button>
|
</button>
|
||||||
<div className="mt-2 text-center small">
|
<div className="mt-2 text-center small text-muted">
|
||||||
<i className="bx bx-info-circle bx-xs"></i> Add your new subscription
|
<i className="bx bx-info-circle bx-xs"></i> Add your new subscription
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -42,164 +44,176 @@ const SubScriptionHistory = ({ tenantId }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Format dates
|
// Format dates
|
||||||
const start = plan?.startDate ? new Date(plan.startDate) : null;
|
|
||||||
const end = plan?.endDate ? new Date(plan.endDate) : null;
|
const end = plan?.endDate ? new Date(plan.endDate) : null;
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
|
|
||||||
const totalDays = start && end ? Math.ceil((end - start) / (1000 * 60 * 60 * 24)) : 0;
|
const daysLeft = end
|
||||||
const daysLeft = end ? Math.max(0, Math.ceil((end - today) / (1000 * 60 * 60 * 24))) : 0;
|
? Math.max(0, Math.ceil((end - today) / (1000 * 60 * 60 * 24)))
|
||||||
|
: 0;
|
||||||
|
|
||||||
const SubscriptionColumns = [
|
// Render logic for subscription history table
|
||||||
{
|
const renderSubscriptionHistory = () => {
|
||||||
key: "createdAt",
|
if (!subscriptionHistory || subscriptionHistory.length === 0) {
|
||||||
label: "Date",
|
return (
|
||||||
getValue: (e) => formatUTCToLocalTime(e?.createdAt),
|
<div className="text-center text-muted p-4">
|
||||||
align: "text-start",
|
No subscription history found
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "frequency",
|
|
||||||
label: "Type",
|
|
||||||
getValue: (e) => SUBSCRIPTION_PLAN_FREQUENCIES[e.frequency] || "N/A",
|
|
||||||
align: "text-start",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "price",
|
|
||||||
label: "Amount",
|
|
||||||
getValue: (e) => (
|
|
||||||
<span className="d-inline-block px-3">
|
|
||||||
{e.currency?.symbol || "₹"} {e.price}
|
|
||||||
</span>
|
|
||||||
),
|
|
||||||
align: "text-start",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "planName",
|
|
||||||
label: "Plan Name",
|
|
||||||
getValue: (e) => (
|
|
||||||
<span className="d-inline-block ps-4">{e.planName}</span>
|
|
||||||
),
|
|
||||||
align: "text-start",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "action",
|
|
||||||
label: "Action",
|
|
||||||
getValue: (e) => (
|
|
||||||
<div className="dropdown text-center">
|
|
||||||
<button
|
|
||||||
className="btn btn-icon btn-sm dropdown-toggle hide-arrow"
|
|
||||||
data-bs-toggle="dropdown"
|
|
||||||
>
|
|
||||||
<i className="bx bx-dots-vertical-rounded"></i>
|
|
||||||
</button>
|
|
||||||
<div className="dropdown-menu dropdown-menu-end">
|
|
||||||
{/* View */}
|
|
||||||
<button
|
|
||||||
className="dropdown-item py-1"
|
|
||||||
onClick={() => navigate(`/employee/${e.id}`)}
|
|
||||||
>
|
|
||||||
<i className="bx bx-detail bx-sm"></i> View
|
|
||||||
</button>
|
|
||||||
{/* Download */}
|
|
||||||
<button
|
|
||||||
className="dropdown-item py-1"
|
|
||||||
onClick={() => console.log("Download clicked for", e.id)}
|
|
||||||
>
|
|
||||||
<i className="bx bx-cloud-download bx-sm"></i> Download
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
),
|
);
|
||||||
align: "text-center",
|
}
|
||||||
},
|
|
||||||
];
|
const sortedHistory = subscriptionHistory
|
||||||
|
.slice()
|
||||||
|
.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{/* Table for larger screens */}
|
||||||
|
<div className=" d-md-block table-responsive">
|
||||||
|
<table className="table border-top dataTable text-nowrap align-middle">
|
||||||
|
<thead className="align-middle">
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Type</th>
|
||||||
|
<th>Amount</th>
|
||||||
|
<th>Plan Name</th>
|
||||||
|
<th className="text-center">Action</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody className="align-middle">
|
||||||
|
{sortedHistory.map((item) => (
|
||||||
|
<tr key={item.id}>
|
||||||
|
<td>{formatUTCToLocalTime(item?.createdAt)}</td>
|
||||||
|
<td>{SUBSCRIPTION_PLAN_FREQUENCIES[item.frequency] || "N/A"}</td>
|
||||||
|
<td>
|
||||||
|
{item.currency?.symbol || "₹"} {item.price}
|
||||||
|
</td>
|
||||||
|
<td>{item.planName}</td>
|
||||||
|
<td className="text-center">
|
||||||
|
<div className="dropdown">
|
||||||
|
<button
|
||||||
|
className="btn btn-icon btn-sm dropdown-toggle hide-arrow"
|
||||||
|
data-bs-toggle="dropdown"
|
||||||
|
>
|
||||||
|
<i className="bx bx-dots-vertical-rounded"></i>
|
||||||
|
</button>
|
||||||
|
<div className="dropdown-menu dropdown-menu-end">
|
||||||
|
<button
|
||||||
|
className="dropdown-item py-1"
|
||||||
|
>
|
||||||
|
<i className="bx bx-detail bx-sm"></i> View
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className="dropdown-item py-1"
|
||||||
|
onClick={() =>
|
||||||
|
console.log("Download clicked for", item.id)
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<i className="bx bx-cloud-download bx-sm"></i> Download
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card-based view for smaller screens */}
|
||||||
|
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="p-2">
|
<div className="p-2 p-md-4">
|
||||||
<div className="text-start mb-3">
|
<div className="row g-4">
|
||||||
{/* Active subscription */}
|
{/* Left Card: Active Subscription */}
|
||||||
<div className="divider text-start my-1">
|
<div className="col-12 col-lg-6">
|
||||||
<div className="divider-text">Active Subscription</div>
|
<div className="card shadow-sm border rounded p-3 h-100 text-start">
|
||||||
</div>
|
<div className="divider text-start mb-3">
|
||||||
|
<div className="divider-text">Active Subscription</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className="row">
|
|
||||||
<div className="col-12 col-sm-8 border rounded p-3 shadow-sm">
|
|
||||||
<p className="text-primary fw-bold m-0 fs-4">
|
<p className="text-primary fw-bold m-0 fs-4">
|
||||||
{plan.planName || "N/A"}
|
{plan.planName || "N/A"}
|
||||||
</p>
|
</p>
|
||||||
{plan.description && (
|
{plan.description && (
|
||||||
<div className="col rounded-2 justify-content-start p-0">
|
<p className="m-0 text-muted small">{plan.description}</p>
|
||||||
<p className="m-0">{plan.description}</p>
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="d-flex justify-content-between align-items-end mt-2">
|
<div className="mt-2">
|
||||||
<div>
|
<h3 className="m-0">
|
||||||
<h3 className="m-0">
|
{plan.currency?.symbol || "₹"} {plan.price}
|
||||||
{plan.currency?.symbol || "₹"} {plan.price}
|
</h3>
|
||||||
</h3>
|
<small className="text-muted">
|
||||||
<small className="text-muted">
|
{SUBSCRIPTION_PLAN_FREQUENCIES[plan.frequency] || ""}
|
||||||
{SUBSCRIPTION_PLAN_FREQUENCIES[plan.frequency] || ""}
|
</small>
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<button
|
|
||||||
className="btn btn-sm btn-primary"
|
|
||||||
onClick={handleUpgradePlan}
|
|
||||||
>
|
|
||||||
Upgrade Plan
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-3 small text-muted">
|
<div className="mt-3 small text-muted">
|
||||||
<div className="d-flex justify-content-between">
|
<div>
|
||||||
<span>
|
Activated Since:{" "}
|
||||||
Active Since :{" "}
|
{plan.startDate ? formatUTCToLocalTime(plan.startDate) : "N/A"} (
|
||||||
{plan.startDate ? formatUTCToLocalTime(plan.startDate) : "N/A"} ({daysLeft} days left)
|
{daysLeft} days left)
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div className="text-start mt-1">
|
<div className="mt-1">
|
||||||
Ends on : {plan.endDate ? formatUTCToLocalTime(plan.endDate) : "N/A"}
|
Ends on:{" "}
|
||||||
|
{plan.endDate ? formatUTCToLocalTime(plan.endDate) : "N/A"}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Features list */}
|
||||||
|
<div className="mt-4">
|
||||||
|
<h6 className="text-secondary">Features</h6>
|
||||||
|
<div className="row g-2">
|
||||||
|
{features?.modules &&
|
||||||
|
Object.entries(features.modules).map(([key, mod]) => {
|
||||||
|
if (!mod?.name) return null;
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={key}
|
||||||
|
className="col-12 col-sm-6 d-flex align-items-center"
|
||||||
|
>
|
||||||
|
<i
|
||||||
|
className={`fa-regular ${
|
||||||
|
mod.enabled
|
||||||
|
? "fa-circle-check text-success"
|
||||||
|
: "fa-circle-xmark text-danger"
|
||||||
|
}`}
|
||||||
|
></i>
|
||||||
|
<span className="ms-2">{mod.name}</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="mt-3 text-end">
|
||||||
|
<button
|
||||||
|
className="btn btn-sm btn-primary"
|
||||||
|
onClick={handleUpgradePlan}
|
||||||
|
>
|
||||||
|
Upgrade Plan
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* History */}
|
{/* Right Card: Subscription History */}
|
||||||
<div className="divider text-start my-3">
|
<div className="col-12 col-lg-6">
|
||||||
<div className="divider-text">
|
<div className="card shadow-sm border rounded p-3 h-100">
|
||||||
<i className="bx bx-history"></i> <small>History</small>
|
<div className="divider text-start mb-3">
|
||||||
|
<div className="divider-text">
|
||||||
|
<i className="bx bx-history"></i> <small>History</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{renderSubscriptionHistory()}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table className="table border-top dataTable text-nowrap align-middle">
|
|
||||||
<thead className="align-middle">
|
|
||||||
<tr>
|
|
||||||
{SubscriptionColumns.map((col) => (
|
|
||||||
<th key={col.key} className={col.align}>
|
|
||||||
{col.label}
|
|
||||||
</th>
|
|
||||||
))}
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody className="align-middle">
|
|
||||||
{data?.subscriptionHistery
|
|
||||||
?.slice()
|
|
||||||
.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt))
|
|
||||||
.map((item) => (
|
|
||||||
<tr key={item.id}>
|
|
||||||
{SubscriptionColumns.map((col) => (
|
|
||||||
<td key={col.key} className={col.align}>
|
|
||||||
{col.getValue ? col.getValue(item) : item[col.key] || "N/A"}
|
|
||||||
</td>
|
|
||||||
))}
|
|
||||||
</tr>
|
|
||||||
))}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default SubScriptionHistory;
|
export default SubScriptionHistory;
|
||||||
Loading…
x
Reference in New Issue
Block a user