Commit e001cd31 authored by timel's avatar timel

fix: small

parent 3a9b2d64
Pipeline #23147 failed with stages
in 9 minutes and 58 seconds
...@@ -313,6 +313,7 @@ export const Card: React.FC<{ idx: number }> = React.memo(({ idx }) => { ...@@ -313,6 +313,7 @@ export const Card: React.FC<{ idx: number }> = React.memo(({ idx }) => {
> >
<YgoCard <YgoCard
className={styles.cover} className={styles.cover}
cardName={snap.meta.text.name}
code={snap.code === 0 ? snap.meta.id : snap.code} code={snap.code === 0 ? snap.meta.id : snap.code}
/> />
<YgoCard className={styles.back} isBack /> <YgoCard className={styles.back} isBack />
......
.ygo-card { .ygo-card {
color: white;
aspect-ratio: var(--card-ratio); aspect-ratio: var(--card-ratio);
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
padding: 5px;
line-height: 1.75em;
overflow: hidden; //超出的文本隐藏
text-overflow: ellipsis; //溢出用省略号显示
background-color: #313746;
background-image: var(--src);
background-size: contain;
text-align: center;
} }
...@@ -9,6 +9,7 @@ interface Props { ...@@ -9,6 +9,7 @@ interface Props {
className?: string; className?: string;
isBack?: boolean; isBack?: boolean;
code?: number; code?: number;
cardName?: string;
style?: CSSProperties; style?: CSSProperties;
width?: number; width?: number;
onClick?: () => void; onClick?: () => void;
...@@ -19,6 +20,7 @@ export const YgoCard: React.FC<Props> = (props) => { ...@@ -19,6 +20,7 @@ export const YgoCard: React.FC<Props> = (props) => {
const { const {
className, className,
code = 0, code = 0,
cardName,
isBack = false, isBack = false,
width, width,
style, style,
...@@ -27,14 +29,22 @@ export const YgoCard: React.FC<Props> = (props) => { ...@@ -27,14 +29,22 @@ export const YgoCard: React.FC<Props> = (props) => {
} = props; } = props;
return useMemo( return useMemo(
() => ( () => (
<img <div
className={classNames(styles["ygo-card"], className)} className={classNames(styles["ygo-card"], className)}
src={getCardImgUrl(code, isBack)} style={
style={{ width, ...style }} {
width,
"--src": `url(${getCardImgUrl(code, isBack)})`,
...style,
} as any
}
onClick={onClick} onClick={onClick}
// 加载完成 // 加载完成
onLoad={onLoad} onLoad={onLoad}
/> >
{/* 暂时不能这么写...但如果用onload的话来判断可能又很消耗性能,再看看吧 */}
{/* {cardName} */}
</div>
), ),
[code], [code],
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment