## 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>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
'use client'
|
|
import React, { useEffect, useState } from 'react'
|
|
import { getCookie } from 'cookies-next'
|
|
import classNames from 'classnames'
|
|
import { SkillGroup, skillClassification } from '~data/skillGroups'
|
|
|
|
import styles from './index.module.scss'
|
|
|
|
interface Props {
|
|
data: JobSkill
|
|
onClick: () => void
|
|
}
|
|
|
|
const JobSkillResult = (props: Props) => {
|
|
const locale = (getCookie('NEXT_LOCALE') as string) || 'en'
|
|
|
|
const skill = props.data
|
|
|
|
const [group, setGroup] = useState<SkillGroup | undefined>()
|
|
|
|
useEffect(() => {
|
|
setGroup(skillClassification.find((group) => group.id === skill.color))
|
|
}, [skill, setGroup, skillClassification])
|
|
|
|
const classes = classNames({
|
|
[styles.skill]: true,
|
|
[styles.pill]: true,
|
|
[styles[`${group?.name['en'].toLowerCase()}`]]: true,
|
|
})
|
|
|
|
const jobSkillUrl = () =>
|
|
`${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/job-skills/${skill.slug}.png`
|
|
|
|
return (
|
|
<li className={styles.result} onClick={props.onClick}>
|
|
<img alt={skill.name[locale]} src={jobSkillUrl()} />
|
|
<div className={styles.info}>
|
|
<h5>{skill.name[locale]}</h5>
|
|
<div className={classes}>{group?.name[locale]}</div>
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|
|
|
|
export default JobSkillResult
|