'use client' import React, { useEffect, useState } from 'react' import { useTranslation } from 'next-i18next' import { useRouter } from 'next/navigation' // Utils import { appState } from '~/utils/appState' import { GridType } from '~/utils/enums' // Components import Party from '~/components/party/Party' import PartyFooter from '~/components/party/PartyFooter' import ErrorSection from '~/components/ErrorSection' interface Props { party: any; // Replace with proper Party type raidGroups: any[]; // Replace with proper RaidGroup type } const PartyPageClient: React.FC = ({ party, raidGroups }) => { const router = useRouter() const { t } = useTranslation('common') // State for tab management const [selectedTab, setSelectedTab] = useState(GridType.Weapon) // Initialize app state useEffect(() => { if (party) { appState.parties[0] = party appState.raidGroups = raidGroups } }, [party, raidGroups]) // Handle tab change const handleTabChanged = (value: string) => { const tabType = parseInt(value) as GridType setSelectedTab(tabType) } // Navigation helper (not used for existing parties but required by interface) const pushHistory = (path: string) => { router.push(path) } // Error case if (!party) { return ( ) } return ( <> ) } export default PartyPageClient