'use client'; import IconDollarSignCircle from '@/components/icon/icon-dollar-sign-circle'; import IconFacebook from '@/components/icon/icon-facebook'; import IconGithub from '@/components/icon/icon-github'; import IconHome from '@/components/icon/icon-home'; import IconLinkedin from '@/components/icon/icon-linkedin'; import IconPhone from '@/components/icon/icon-phone'; import IconTwitter from '@/components/icon/icon-twitter'; import IconUser from '@/components/icon/icon-user'; import React, { useState } from 'react'; import SubscriptionPanel from '@/components/billing/subscription-panel'; import { useSubscription } from '@/components/billing/subscription-context'; import ComponentsUsersProfilePaymentHistory from '@/components/users/profile/components-users-profile-payment-history'; const ComponentsUsersAccountSettingsTabs = () => { const [tabs, setTabs] = useState('home'); const toggleTabs = (name: string) => { setTabs(name); }; // subscription badges in the tabs header (optional) const { state, isTrialActive, daysLeftInTrial } = useSubscription(); return (
Settings
{state.active ? ( Active Subscription ) : isTrialActive ? ( Trial: {daysLeftInTrial} day(s) left ) : ( No plan )}
{tabs === 'home' ? (
General Information
img
Social
) : ( '' )} {tabs === 'payment-details' ? (
{/* NEW: Subscription management panel (trial / purchase / cancel) */}
Billing Address

Changes to your Billing information will take effect starting with scheduled payment and will be reflected on your next invoice.

Address #1 2249 Caynor Circle, New Brunswick, New Jersey
Address #2 4262 Leverton Cove Road, Springfield, Massachusetts
Address #3 2692 Berkshire Circle, Knoxville, Tennessee
{/* Payment history is *gated* in its own component */}
{/* Add forms (unchanged) */}
Add Billing Address

Changes your New Billing Information.

Add Payment Method

Changes your New Payment Method Information.

) : ( '' )} {tabs === 'preferences' ? (
Choose Theme
Activity data

Download your Summary, Task and Payment History Data

Public Profile

Your Profile will be visible to anyone on the network.

Show my email

Your Email will be visible to anyone on the network.

Enable keyboard shortcuts

When enabled, press ctrl for help

Hide left navigation

Sidebar will be hidden by default

Advertisements

Display Ads on your dashboard

Social Profile

Enable your social profiles on this network

) : ( '' )} {tabs === 'danger-zone' ? (
Purge Cache

Remove the active resource from the cache without waiting for the predetermined cache expiry time.

Deactivate Account

You will not be able to receive messages, notifications for up to 24 hours.

Delete Account

Once you delete the account, there is no going back. Please be certain.

) : ( '' )}
); }; export default ComponentsUsersAccountSettingsTabs;