## Summary
- Fixed translation key format compatibility with next-intl
- Fixed pluralization format from i18next to next-intl format
- Fixed dynamic translation key error handling
- Updated server components to match API response structure
- Fixed useSearchParams import location
## Changes
- Changed pluralization from `{{count}} items` to `{count} items` format
- Added proper error handling for missing translation keys
- Fixed import paths for next-intl hooks
- Fixed PartyPageClient trying to set non-existent appState.parties
## Test plan
- [x] Verified translations render correctly
- [x] Tested pluralization works with different counts
- [x] Confirmed no console errors about missing translations
- [x] Tested party page functionality
🤖 Generated with [Claude Code](https://claude.ai/code)
---------
Co-authored-by: Claude <noreply@anthropic.com>
48 lines
No EOL
1.1 KiB
TypeScript
48 lines
No EOL
1.1 KiB
TypeScript
'use client'
|
|
|
|
import React from 'react'
|
|
import dynamic from 'next/dynamic'
|
|
import { GridType } from '~/utils/enums'
|
|
|
|
// Dynamically import Party to isolate the error
|
|
const Party = dynamic(() => import('~/components/party/Party'), {
|
|
ssr: false,
|
|
loading: () => <div>Loading Party component...</div>
|
|
})
|
|
|
|
interface Props {
|
|
raidGroups: any[]
|
|
}
|
|
|
|
export default function PartyWrapper({ raidGroups }: Props) {
|
|
const [selectedTab, setSelectedTab] = React.useState<GridType>(GridType.Weapon)
|
|
|
|
const handleTabChanged = (value: string) => {
|
|
const tabType = parseInt(value) as GridType
|
|
setSelectedTab(tabType)
|
|
}
|
|
|
|
const pushHistory = (path: string) => {
|
|
console.log('Navigation to:', path)
|
|
}
|
|
|
|
try {
|
|
return (
|
|
<Party
|
|
new={true}
|
|
selectedTab={selectedTab}
|
|
raidGroups={raidGroups}
|
|
handleTabChanged={handleTabChanged}
|
|
pushHistory={pushHistory}
|
|
/>
|
|
)
|
|
} catch (error) {
|
|
console.error('Error rendering Party:', error)
|
|
return (
|
|
<div>
|
|
<h2>Error loading Party component</h2>
|
|
<pre>{JSON.stringify(error, null, 2)}</pre>
|
|
</div>
|
|
)
|
|
}
|
|
} |