mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
143 lines
3.5 KiB
TypeScript
143 lines
3.5 KiB
TypeScript
|
import React, { ReactElement, useMemo } from 'react';
|
||
|
import { ClassNames, css } from '@emotion/react';
|
||
|
import useSiteToken from '../../hooks/useSiteToken';
|
||
|
import { Menu, MenuProps, Typography } from 'antd';
|
||
|
import useMenu from '../../hooks/useMenu';
|
||
|
import { MenuItemType } from 'antd/es/menu/hooks/useItems';
|
||
|
import { LeftOutlined, RightOutlined } from '@ant-design/icons';
|
||
|
|
||
|
const useStyle = () => {
|
||
|
const { token } = useSiteToken();
|
||
|
|
||
|
const { colorSplit, iconCls, fontSizeIcon } = token;
|
||
|
|
||
|
return {
|
||
|
prevNextNav: css`
|
||
|
width: calc(100% - 234px);
|
||
|
margin-inline-end: 170px;
|
||
|
margin-inline-start: 64px;
|
||
|
overflow: hidden;
|
||
|
font-size: 14px;
|
||
|
border-top: 1px solid ${colorSplit};
|
||
|
display: flex;
|
||
|
`,
|
||
|
pageNav: `
|
||
|
flex: 1;
|
||
|
height: 72px;
|
||
|
line-height: 72px;
|
||
|
text-decoration: none;
|
||
|
|
||
|
${iconCls} {
|
||
|
font-size: ${fontSizeIcon}px;
|
||
|
transition: all 0.3s;
|
||
|
}
|
||
|
|
||
|
.chinese {
|
||
|
margin-inline-start: 4px;
|
||
|
}
|
||
|
`,
|
||
|
prevNav: `
|
||
|
text-align: start;
|
||
|
|
||
|
.footer-nav-icon-after {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.footer-nav-icon-before {
|
||
|
position: relative;
|
||
|
margin-inline-end: 1em;
|
||
|
vertical-align: middle;
|
||
|
line-height: 0;
|
||
|
right: 0;
|
||
|
transition: right 0.3s;
|
||
|
}
|
||
|
|
||
|
&:hover .footer-nav-icon-before {
|
||
|
right: 0.2em;
|
||
|
}
|
||
|
`,
|
||
|
nextNav: `
|
||
|
text-align: end;
|
||
|
|
||
|
.footer-nav-icon-before {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.footer-nav-icon-after {
|
||
|
position: relative;
|
||
|
margin-inline-start: 1em;
|
||
|
margin-bottom: 1px;
|
||
|
vertical-align: middle;
|
||
|
line-height: 0;
|
||
|
left: 0;
|
||
|
transition: left 0.3s;
|
||
|
}
|
||
|
|
||
|
&:hover .footer-nav-icon-after {
|
||
|
left: 0.2em;
|
||
|
}
|
||
|
`,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
const flattenMenu = (menuItems: MenuProps['items']): MenuProps['items'] | null => {
|
||
|
if (Array.isArray(menuItems)) {
|
||
|
return menuItems.reduce<Exclude<MenuProps['items'], undefined>>((acc, item) => {
|
||
|
if (!item) {
|
||
|
return acc;
|
||
|
}
|
||
|
if ('children' in item && item.children) {
|
||
|
return acc.concat(flattenMenu(item.children) ?? []);
|
||
|
}
|
||
|
return acc.concat(item);
|
||
|
}, []);
|
||
|
}
|
||
|
return null;
|
||
|
};
|
||
|
|
||
|
const PrevAndNext = () => {
|
||
|
const styles = useStyle();
|
||
|
|
||
|
const [menuItems, selectedKey] = useMenu({
|
||
|
before: <LeftOutlined className="footer-nav-icon-before" />,
|
||
|
after: <RightOutlined className="footer-nav-icon-after" />,
|
||
|
});
|
||
|
|
||
|
const [prev, next] = useMemo(() => {
|
||
|
const flatMenu = flattenMenu(menuItems);
|
||
|
if (!flatMenu) {
|
||
|
return [null, null];
|
||
|
}
|
||
|
let activeMenuItemIndex = -1;
|
||
|
flatMenu.forEach((menuItem, i) => {
|
||
|
if (menuItem && menuItem.key === selectedKey) {
|
||
|
activeMenuItemIndex = i;
|
||
|
}
|
||
|
});
|
||
|
const prev = flatMenu[activeMenuItemIndex - 1];
|
||
|
const next = flatMenu[activeMenuItemIndex + 1];
|
||
|
return [prev as MenuItemType, next as MenuItemType];
|
||
|
}, [menuItems, selectedKey]);
|
||
|
|
||
|
return (
|
||
|
<section css={styles.prevNextNav}>
|
||
|
<ClassNames>
|
||
|
{({ css: classCss, cx }) => (
|
||
|
<>
|
||
|
{prev &&
|
||
|
React.cloneElement(prev.label as ReactElement, {
|
||
|
className: cx(classCss(styles.pageNav), classCss(styles.prevNav)),
|
||
|
})}
|
||
|
{next &&
|
||
|
React.cloneElement(next.label as ReactElement, {
|
||
|
className: cx(classCss(styles.pageNav), classCss(styles.nextNav)),
|
||
|
})}
|
||
|
</>
|
||
|
)}
|
||
|
</ClassNames>
|
||
|
</section>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default PrevAndNext;
|