1 | import type { GenerateStyle, ProTokenType } from '@ant-design/pro-provider';
|
2 | import type { BreadcrumbProps } from 'antd';
|
3 | import type { AnyObject } from 'antd/es/_util/type';
|
4 | import type { ItemType } from 'antd/es/breadcrumb/Breadcrumb';
|
5 | import type { CSSProperties } from 'react';
|
6 | import React from 'react';
|
7 | import type { HeaderViewProps } from './components/Header';
|
8 | import type { SiderMenuProps } from './components/SiderMenu/SiderMenu';
|
9 | import type { SiderMenuToken } from './components/SiderMenu/style';
|
10 | import type { WaterMarkProps } from './components/WaterMark';
|
11 | import type { GetPageTitleProps } from './getPageTitle';
|
12 | import type { LocaleType } from './locales';
|
13 | import type { MenuDataItem, MessageDescriptor, RouterTypes, WithFalse } from './typing';
|
14 | type LayoutItemType = ItemType & {
|
15 | linkPath?: string;
|
16 | component?: string;
|
17 | };
|
18 | export type LayoutBreadcrumbProps<T extends AnyObject = AnyObject> = {
|
19 | minLength?: number;
|
20 | itemRender?: (route: LayoutItemType, params: T, routes: LayoutItemType[], paths: string[]) => React.ReactNode;
|
21 | };
|
22 | type GlobalTypes = Omit<Partial<RouterTypes> & SiderMenuProps & HeaderViewProps & {
|
23 | token?: ProTokenType['layout'];
|
24 | }, 'collapsed'>;
|
25 | export type ProLayoutProps = GlobalTypes & {
|
26 | stylish?: {
|
27 | header?: GenerateStyle<SiderMenuToken>;
|
28 | sider?: GenerateStyle<SiderMenuToken>;
|
29 | };
|
30 | /** Layout 的品牌配置,表现为一张背景图片 */
|
31 | bgLayoutImgList?: {
|
32 | src?: string;
|
33 | width?: string;
|
34 | height?: string;
|
35 | left?: number;
|
36 | top?: number;
|
37 | bottom?: number;
|
38 | right?: number;
|
39 | }[];
|
40 | /**
|
41 | * @name 简约模式,设置了之后不渲染的任何 layout 的东西,但是会有 context,可以获取到当前菜单。
|
42 | *
|
43 | * @example pure={true}
|
44 | */
|
45 | pure?: boolean;
|
46 | /**
|
47 | * @name logo 的配置,可以配置url,React 组件 和 false
|
48 | *
|
49 | * @example 设置 logo 为网络地址 logo="https://avatars1.githubusercontent.com/u/8186664?s=460&v=4"
|
50 | * @example 设置 logo 为组件 logo={<img src="https://avatars1.githubusercontent.com/u/8186664?s=460&v=4"/>}
|
51 | * @example 设置 logo 为 false 不显示 logo logo={false}
|
52 | * @example 设置 logo 为 方法 logo={()=> <img src="https://avatars1.githubusercontent.com/u/8186664?s=460&v=4"/> }
|
53 | * */
|
54 | logo?: React.ReactNode | JSX.Element | WithFalse<() => React.ReactNode | JSX.Element>;
|
55 | /**
|
56 | * @name 页面切换的时候触发
|
57 | *
|
58 | * @example 获取切换的页面地址 onPageChange={(location) => { console.log("切换到:"+location.pathname) }}
|
59 | *
|
60 | * */
|
61 | onPageChange?: (location?: RouterTypes['location']) => void;
|
62 | /**
|
63 | * @name layout 的 loading 效果,设置完成之后只展示一个 loading
|
64 | *
|
65 | * @example loading={true}
|
66 | */
|
67 | loading?: boolean;
|
68 | /**
|
69 | * @name layout
|
70 | *
|
71 | * @description "zh-CN" | "zh-TW" | "en-US" | "it-IT" | "ko-KR"
|
72 | * @example 中文 layout="zh-CN"
|
73 | * @example 英文 layout="en-US"
|
74 | */
|
75 | locale?: LocaleType;
|
76 | /**
|
77 | * @name 是否收起 layout 是严格受控的,可以 设置为 true,一直收起
|
78 | *
|
79 | * @example collapsed={true}
|
80 | */
|
81 | collapsed?: boolean;
|
82 | /**
|
83 | * @name 收起和展开的时候触发事件
|
84 | *
|
85 | * @example onCollapse=(collapsed)=>{ setCollapsed(collapsed) };
|
86 | */
|
87 | onCollapse?: (collapsed: boolean) => void;
|
88 | /**
|
89 | * @name 页脚的配置
|
90 | *
|
91 | * @example 不展示dom footerRender={false}
|
92 | * @example 使用 layout 的 DefaultFooter footerRender={() => (<DefaultFooter copyright="这是一条测试文案"/>}
|
93 | */
|
94 | footerRender?: WithFalse<(props: ProLayoutProps & {
|
95 | hasSiderMenu?: boolean;
|
96 | }, defaultDom: React.ReactNode) => React.ReactNode>;
|
97 | /**
|
98 | * @name 设置 PageHeader 的面包屑,只能处理数据
|
99 | *
|
100 | * @example 手动设置 breadcrumbRender={(routers = []) => [ { path: '/', breadcrumbName: '主页'} ]
|
101 | * @example 增加一项 breadcrumbRender={(routers = []) => { return [{ path: '/', breadcrumbName: '主页'} ,...routers ]}
|
102 | * @example 删除首页 breadcrumbRender={(routers = []) => { return routers.filter(item => item.path !== '/')}
|
103 | * @example 不显示面包屑 breadcrumbRender={false}
|
104 | */
|
105 | breadcrumbRender?: WithFalse<(routers: BreadcrumbProps['items']) => BreadcrumbProps['items']>;
|
106 | /**
|
107 | * @name 设置页面的标题
|
108 | * @example 根据页面的路由设置标题 pageTitleRender={(props) => { return props.location.pathname }}
|
109 | * @example 不显示标题 pageTitleRender={false}
|
110 | * @example 根据默认的标题设置 pageTitleRender={(props,defaultPageTitle) => { return defaultPageTitle + '这是一个测试标题' }}
|
111 | * @example 根据 info 来自己组合标题 pageTitleRender={(props,defaultPageTitle,info) => { return info.title + "-" + info.pageName }
|
112 | */
|
113 | pageTitleRender?: WithFalse<(props: GetPageTitleProps, defaultPageTitle?: string, info?: {
|
114 | title: string;
|
115 | id: string;
|
116 | pageName: string;
|
117 | }) => string>;
|
118 | /**
|
119 | * @name 处理 menuData 的数据,可以动态的控制数据
|
120 | * @see 尽量不要用异步数据来处理,否则可能造成更新不及时,如果异步数据推荐使用 menu.request 和 params。
|
121 | *
|
122 | * @example 删除一些菜单 menuDataRender=((menuData) => { return menuData.filter(item => item.name !== 'test') })
|
123 | * @example 增加一些菜单 menuDataRender={(menuData) => { return menuData.concat({ path: '/test', name: '测试', icon: 'smile' }) }}
|
124 | * @example 修改菜单 menuDataRender={(menuData) => { return menuData.map(item => { if (item.name === 'test') { item.name = '测试' } return item }) }}
|
125 | * @example 打平数据 menuDataRender={(menuData) => { return menuData.reduce((pre, item) => { return pre.concat(item.children || []) }, []) }}
|
126 | */
|
127 | menuDataRender?: (menuData: MenuDataItem[]) => MenuDataItem[];
|
128 | /**
|
129 | * @name 处理每个面包屑的配置,需要直接返回 dom
|
130 | * @description (route: Route, params: any, routes: Array<Route>, paths: Array<string>) => React.ReactNode
|
131 | *
|
132 | * @example 设置 disabled: itemRender={(route, params, routes, paths) => { return <Button disabled>{route.breadcrumbName}</Button> }}
|
133 | * @example 拼接 path: itemRender={(route, params, routes, paths) => { return <a href={paths.join('/')}>{route.breadcrumbName}</a> }}
|
134 | */
|
135 | itemRender?: BreadcrumbProps['itemRender'];
|
136 | formatMessage?: (message: MessageDescriptor) => string;
|
137 | /** @name 是否禁用移动端模式
|
138 | *
|
139 | * @see 有的管理系统不需要移动端模式,此属性设置为true即可
|
140 | * @example disableMobile={true}
|
141 | * */
|
142 | disableMobile?: boolean;
|
143 | /**
|
144 | * content 的样式
|
145 | *
|
146 | * @example 背景颜色为红色 contentStyle={{ backgroundColor: 'red '}}
|
147 | */
|
148 | contentStyle?: CSSProperties;
|
149 | className?: string;
|
150 | /** PageHeader 的 BreadcrumbProps 配置,会透传下去 */
|
151 | breadcrumbProps?: Omit<BreadcrumbProps, 'itemRender'> & LayoutBreadcrumbProps;
|
152 | /** @name 水印的相关配置 */
|
153 | waterMarkProps?: WaterMarkProps;
|
154 | /**
|
155 | * @name 操作菜单重新刷新
|
156 | *
|
157 | * @example 重新获取菜单 actionRef.current.reload();
|
158 | * */
|
159 | actionRef?: React.MutableRefObject<{
|
160 | reload: () => void;
|
161 | } | undefined>;
|
162 | /**
|
163 | * @name 错误处理组件
|
164 | *
|
165 | * @example ErrorBoundary={MyErrorBoundary}
|
166 | */
|
167 | ErrorBoundary?: React.ComponentClass<any, any> | boolean;
|
168 | /**
|
169 | * @name 侧边菜单的类型, menu.type 的快捷方式
|
170 | * @type "sub" | "group"
|
171 | * @example group
|
172 | */
|
173 | siderMenuType?: 'sub' | 'group';
|
174 | isChildrenLayout?: boolean;
|
175 | };
|
176 | export type BasicLayoutContext = {
|
177 | [K in 'location']: ProLayoutProps[K];
|
178 | } & {
|
179 | breadcrumb: Record<string, MenuDataItem>;
|
180 | };
|
181 | declare const ProLayout: React.FC<ProLayoutProps>;
|
182 | export { ProLayout };
|