56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/** @jsxImportSource theme-ui */
|
|
import { Box, Card, Text } from '@theme-ui/components'
|
|
import { useRouter } from 'next/router'
|
|
import { WeaponData } from '../../lib/honkai3rd/weapons'
|
|
import { translate } from '../../lib/i18n'
|
|
import PageLink from '../atoms/PageLink'
|
|
import SquareImageBox from '../atoms/SquareImageBox'
|
|
|
|
interface WeaponCardProps {
|
|
weapon: Pick<WeaponData, 'id' | 'name' | 'rarity' | 'krName'>
|
|
hidden?: boolean
|
|
}
|
|
|
|
const WeaponCard = ({ weapon, hidden }: WeaponCardProps) => {
|
|
const { locale } = useRouter()
|
|
const weaponName = translate(locale, { 'ko-KR': weapon.krName }, weapon.name)
|
|
|
|
return (
|
|
<Card
|
|
className={hidden ? 'hidden' : ''}
|
|
sx={{
|
|
width: '120px',
|
|
padding: 2,
|
|
margin: 2,
|
|
'&.hidden': {
|
|
display: 'none',
|
|
},
|
|
}}
|
|
>
|
|
<PageLink href={`/honkai3rd/weapons/${weapon.id}`}>
|
|
<SquareImageBox
|
|
size={100}
|
|
alt={weaponName}
|
|
src={`/assets/honkai3rd/weapons/${weapon.id}.png`}
|
|
/>
|
|
<Box
|
|
sx={{
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
width: '100%',
|
|
whiteSpace: 'nowrap',
|
|
textAlign: 'center',
|
|
}}
|
|
>
|
|
<Text>{weaponName}</Text>
|
|
</Box>
|
|
<Box sx={{ fontSize: 1, textAlign: 'center' }}>
|
|
{'⭐'.repeat(weapon.rarity)}
|
|
</Box>
|
|
</PageLink>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export default WeaponCard
|