ant-design/site/theme/template/Home/MorePage.tsx

97 lines
3.3 KiB
TypeScript
Raw Normal View History

2019-12-26 15:27:52 +08:00
import * as React from 'react';
import { Card, Row, Col } from 'antd';
import './MorePage.less';
interface MoreProps {
title: string;
description: string;
date: string;
img: string;
source: 'zhihu' | 'yuque';
href: string;
}
const SourceImages = {
zhihu: 'https://gw.alipayobjects.com/zos/basement_prod/5f4e1fd0-d255-4309-b181-a3715a720ebe.svg',
yuque: 'https://gw.alipayobjects.com/zos/basement_prod/53e7a5b8-c9f4-45a4-8378-cbf50f2dd0d0.svg',
};
const MORE_LIST: MoreProps[] = [
{
2020-08-21 18:06:48 +08:00
title: '智能组件探索:这个工具栏会自动布局',
description:
2020-08-21 18:06:48 +08:00
'工程师只需要选择「我要展示哪些元素、每个元素有多少」,而「这些元素怎么摆」、「间距是多少」等细节问题都会根据规则自动生成。',
img: 'https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*A_F0SL5shbEAAAAAAAAAAAAAARQnAQ',
date: '2020-08-19',
2019-12-26 15:27:52 +08:00
source: 'zhihu',
2020-08-21 18:06:48 +08:00
href: 'https://zhuanlan.zhihu.com/p/188693322',
2019-12-26 15:27:52 +08:00
},
{
2020-08-21 18:06:48 +08:00
title: '一个好用的智能栅格工具是如何诞生的?',
description:
2020-08-21 18:06:48 +08:00
'和大家分享一下整个智能栅格的设计开发过程,并从中感受到设计的「穿透力」,聊聊如何打破界限、从表面到内核、从表象到本质。',
img: 'https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*hk19TqWVSDsAAAAAAAAAAAAAARQnAQ',
date: '2020-08-09',
2019-12-26 15:27:52 +08:00
source: 'zhihu',
2020-08-21 18:06:48 +08:00
href: 'https://zhuanlan.zhihu.com/p/176534657',
2020-07-07 17:54:13 +08:00
},
{
2020-10-16 11:48:26 +08:00
title: '设计体系的响应式设计',
2020-07-07 17:54:13 +08:00
description:
2020-10-16 11:48:26 +08:00
'在蚂蚁内部有着数量繁多且复杂的中后台业务系统Ant Design 一直以来致力于从设计策略和资产的角度解决这些产品的体验一致性问题。',
img: 'https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*zk6CQphLepQAAAAAAAAAAAAAARQnAQ',
date: '2020-03-24',
2020-07-07 17:54:13 +08:00
source: 'zhihu',
2020-10-16 11:48:26 +08:00
href: 'https://zhuanlan.zhihu.com/p/109781992',
2019-12-26 15:27:52 +08:00
},
{
2020-10-16 11:48:26 +08:00
title: '我的按钮究竟该放哪儿!?',
description:
2020-10-16 11:48:26 +08:00
'按钮是一种使用广泛的基础界面元素,正因其使用的普遍性和重要性,我们需要并一直在探索建立按钮设计规范。',
img: 'https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*d595RpGKQ_IAAAAAAAAAAAAAARQnAQ',
date: '2020-02-29',
2019-12-26 15:27:52 +08:00
source: 'zhihu',
2020-10-16 11:48:26 +08:00
href: 'https://zhuanlan.zhihu.com/p/109644406',
2019-12-26 15:27:52 +08:00
},
];
const MoreCard = ({ title, description, date, img, source, href }: MoreProps) => {
return (
<Col xs={24} sm={6}>
<a
href={href}
target="_blank"
rel="noopener noreferrer"
onClick={() => {
if (window.gtag) {
window.gtag('event', '点击', {
event_category: '首页文章',
event_label: href,
});
}
}}
>
2019-12-26 15:27:52 +08:00
<Card hoverable cover={<img alt={title} src={img} />} className="more-card">
<Card.Meta title={title} description={description} />
<div>
{date}
<span className="more-card-source">
<img src={SourceImages[source]} alt={source} />
</span>
</div>
</Card>
</a>
</Col>
);
};
export default function MorePage() {
return (
<Row gutter={[24, 32]}>
{MORE_LIST.map(more => (
<MoreCard key={more.title} {...more} />
))}
</Row>
);
}