133 lines
4.1 KiB
TypeScript
133 lines
4.1 KiB
TypeScript
/** @jsxImportSource theme-ui */
|
|
import { Box, Heading, Paragraph, Card, Flex } from '@theme-ui/components'
|
|
import React from 'react'
|
|
import PageLink from '../../components/atoms/PageLink'
|
|
import StigmataCard from '../../components/molecules/StigmataCard'
|
|
import Breadcrumb from '../../components/organisms/Breadcrumb'
|
|
import { StigmataData, StigmataSet } from '../../lib/honkai3rd/stigmata'
|
|
import SecondaryLabel from '../atoms/SecondaryLabel'
|
|
import { useTranslation } from '../../lib/i18n'
|
|
import Head from '../atoms/Head'
|
|
import Honkai3rdLayout from '../layouts/Honkai3rdLayout'
|
|
|
|
export interface StigmataSetProps {
|
|
type: 'set'
|
|
stigmataSet: StigmataSet
|
|
stigmataSetList: StigmataData[]
|
|
}
|
|
|
|
const StigmataSetPage = ({
|
|
stigmataSet,
|
|
stigmataSetList,
|
|
}: StigmataSetProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Honkai3rdLayout>
|
|
<Head
|
|
title={`${stigmataSet.name} ${t('stigmata-show.stigmata-set')} - ${t(
|
|
'common.honkai-3rd'
|
|
)} - ${t('common.abyss-lab')}`}
|
|
description={`${t('common.honkai-3rd')} ${t(
|
|
'stigmata-show.stigmata-set'
|
|
)} / ${'⭐'.repeat(stigmataSet.rarity)} / ${stigmataSet.altName}`}
|
|
/>
|
|
|
|
<Box p={3}>
|
|
<Breadcrumb
|
|
items={[
|
|
{ href: '/honkai3rd', label: t('common.honkai-3rd') },
|
|
{
|
|
href: {
|
|
pathname: `/honkai3rd/stigmata`,
|
|
query: { list: 'set' },
|
|
},
|
|
label: t('common.stigmata'),
|
|
},
|
|
{
|
|
href: `/honkai3rd/stigmata/${stigmataSet.id}-set`,
|
|
label: stigmataSet.name,
|
|
},
|
|
]}
|
|
/>
|
|
|
|
<Box mb={3}>
|
|
<Heading as='h1' mb={0}>
|
|
{stigmataSet.name}
|
|
</Heading>
|
|
<SecondaryLabel>{stigmataSet.altName}</SecondaryLabel>
|
|
</Box>
|
|
|
|
<Card mb={3}>
|
|
<Flex
|
|
p={2}
|
|
sx={{
|
|
borderBottom: 'default',
|
|
justifyContent: 'space-around',
|
|
flexWrap: 'wrap',
|
|
}}
|
|
>
|
|
{stigmataSetList.map((stigmataSetItem) => {
|
|
return (
|
|
<StigmataCard
|
|
key={stigmataSetItem.id}
|
|
stigmata={stigmataSetItem}
|
|
/>
|
|
)
|
|
})}
|
|
</Flex>
|
|
{stigmataSetList.map((stigmataSetItem) => {
|
|
return (
|
|
<React.Fragment key={stigmataSetItem.id}>
|
|
<Box sx={{ p: 2, borderBottom: 'default' }}>
|
|
<Heading as='h2' mb={1}>
|
|
<PageLink
|
|
href={`/honkai3rd/stigmata/${stigmataSetItem.id}`}
|
|
>
|
|
{stigmataSetItem.name}
|
|
</PageLink>
|
|
</Heading>
|
|
<SecondaryLabel>
|
|
{t(`stigmata-show.${stigmataSetItem.type}`)}
|
|
</SecondaryLabel>
|
|
</Box>
|
|
<Box p={2} sx={{ borderBottom: 'default' }}>
|
|
HP : {stigmataSetItem.hp} / ATK : {stigmataSetItem.atk} / DEF
|
|
: {stigmataSetItem.def} / CRT : {stigmataSetItem.crt}
|
|
</Box>
|
|
<Paragraph
|
|
m={0}
|
|
p={2}
|
|
sx={{
|
|
borderBottom: 'default',
|
|
'&:last-child': { borderBottom: 'none' },
|
|
}}
|
|
>
|
|
{stigmataSetItem.skill.description}
|
|
</Paragraph>
|
|
</React.Fragment>
|
|
)
|
|
})}
|
|
</Card>
|
|
|
|
<Card>
|
|
<Heading as='h2' m={0} p={2} sx={{ borderBottom: 'default' }}>
|
|
{stigmataSet.twoSetSkill.name}
|
|
</Heading>
|
|
<Paragraph m={0} p={2} sx={{ borderBottom: 'default' }}>
|
|
{stigmataSet.twoSetSkill.description}
|
|
</Paragraph>
|
|
<Heading as='h2' m={0} p={2} sx={{ borderBottom: 'default' }}>
|
|
{stigmataSet.threeSetSkill.name}
|
|
</Heading>
|
|
<Paragraph m={0} p={2}>
|
|
{stigmataSet.threeSetSkill.description}
|
|
</Paragraph>
|
|
</Card>
|
|
</Box>
|
|
</Honkai3rdLayout>
|
|
)
|
|
}
|
|
|
|
export default StigmataSetPage
|