File size: 2,310 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
import { useEffect, useState } from 'react';
import { css } from 'antd-style';
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;
}
}
}
}
`,
});
|