mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 03:54:28 +08:00
2d67c0f0e4
* docs: site date client only * chore: fix style * chore: fix lint --------- Co-authored-by: lijianan <574980606@qq.com>
122 lines
2.3 KiB
TypeScript
122 lines
2.3 KiB
TypeScript
import { css } from 'antd-style';
|
|
import { useEffect, useState } from 'react';
|
|
import fetch from 'cross-fetch';
|
|
|
|
export interface Author {
|
|
avatar: string;
|
|
href: string;
|
|
type: 'design' | 'develop';
|
|
name: string;
|
|
}
|
|
|
|
export interface Article {
|
|
title: string;
|
|
href: string;
|
|
date: string;
|
|
type: 'design' | 'develop';
|
|
author: Author['name'];
|
|
}
|
|
|
|
export interface Recommendation {
|
|
title?: string;
|
|
img?: string;
|
|
href?: string;
|
|
popularize?: boolean;
|
|
description?: string;
|
|
}
|
|
|
|
type SourceType = 'zhihu' | 'yuque';
|
|
export interface Extra {
|
|
title: string;
|
|
description: string;
|
|
date: string;
|
|
img: string;
|
|
source: SourceType;
|
|
href: string;
|
|
}
|
|
|
|
export interface Icon {
|
|
name: string;
|
|
href: string;
|
|
}
|
|
|
|
export type Articles = {
|
|
cn: Article[];
|
|
en: Article[];
|
|
};
|
|
|
|
export type Authors = Author[];
|
|
|
|
export type Recommendations = {
|
|
cn: Recommendation[];
|
|
en: Recommendation[];
|
|
};
|
|
|
|
export type Extras = {
|
|
cn: Extra[];
|
|
en: Extra[];
|
|
};
|
|
|
|
export type Icons = Icon[];
|
|
|
|
export type SiteData = {
|
|
articles: Articles;
|
|
authors: Authors;
|
|
recommendations: Recommendations;
|
|
extras: Extras;
|
|
icons: Icons;
|
|
};
|
|
|
|
export function preLoad(list: string[]) {
|
|
if (typeof window !== 'undefined') {
|
|
// 图处预加载;
|
|
const div = document.createElement('div');
|
|
div.style.display = 'none';
|
|
document.body.appendChild(div);
|
|
list.forEach((src) => {
|
|
const img = new Image();
|
|
img.src = src;
|
|
div.appendChild(img);
|
|
});
|
|
}
|
|
}
|
|
|
|
export function useSiteData(): Partial<SiteData> | undefined {
|
|
const [data, setData] = useState<SiteData | undefined>(undefined);
|
|
|
|
useEffect(() => {
|
|
fetch('https://render.alipay.com/p/h5data/antd4-config_website-h5data.json').then(
|
|
async (res) => {
|
|
setData(await res.json());
|
|
},
|
|
);
|
|
}, []);
|
|
|
|
return data;
|
|
}
|
|
|
|
export const getCarouselStyle = () => ({
|
|
carousel: css`
|
|
.slick-dots.slick-dots-bottom {
|
|
bottom: -22px;
|
|
li {
|
|
width: 6px;
|
|
height: 6px;
|
|
background: #e1eeff;
|
|
border-radius: 50%;
|
|
button {
|
|
height: 6px;
|
|
background: #e1eeff;
|
|
border-radius: 50%;
|
|
}
|
|
&.slick-active {
|
|
background: #4b9cff;
|
|
button {
|
|
background: #4b9cff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
});
|