初始化 antd-pro
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
---
|
||||
order: 2
|
||||
title:
|
||||
zh-CN: 403 页面
|
||||
en-US: 403 Page
|
||||
---
|
||||
|
||||
## zh-CN
|
||||
|
||||
403 页面,配合自定义操作。
|
||||
|
||||
## en-US
|
||||
|
||||
403 page with custom operations.
|
||||
|
||||
````jsx
|
||||
import Exception from 'ant-design-pro/lib/Exception';
|
||||
import { Button } from 'antd';
|
||||
|
||||
const actions = (
|
||||
<div>
|
||||
<Button type="primary">Home</Button>
|
||||
<Button>Detail</Button>
|
||||
</div>
|
||||
);
|
||||
ReactDOM.render(
|
||||
<Exception type="403" actions={actions} />
|
||||
, mountNode);
|
||||
````
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
order: 0
|
||||
title:
|
||||
zh-CN: 404 页面
|
||||
en-US: 404 Page
|
||||
---
|
||||
|
||||
## zh-CN
|
||||
|
||||
404 页面。
|
||||
|
||||
## en-US
|
||||
|
||||
404 page.
|
||||
|
||||
````jsx
|
||||
import Exception from 'ant-design-pro/lib/Exception';
|
||||
|
||||
ReactDOM.render(
|
||||
<Exception type="404" />
|
||||
, mountNode);
|
||||
````
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
order: 1
|
||||
title:
|
||||
zh-CN: 500 页面
|
||||
en-US: 500 Page
|
||||
---
|
||||
|
||||
## zh-CN
|
||||
|
||||
500 页面。
|
||||
|
||||
## en-US
|
||||
|
||||
500 page.
|
||||
|
||||
````jsx
|
||||
import Exception from 'ant-design-pro/lib/Exception';
|
||||
|
||||
ReactDOM.render(
|
||||
<Exception type="500" />
|
||||
, mountNode);
|
||||
````
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import * as React from 'react';
|
||||
export interface IExceptionProps {
|
||||
type?: '403' | '404' | '500';
|
||||
title?: React.ReactNode;
|
||||
desc?: React.ReactNode;
|
||||
img?: string;
|
||||
actions?: React.ReactNode;
|
||||
linkElement?: string | React.ComponentType;
|
||||
style?: React.CSSProperties;
|
||||
className?: string;
|
||||
backText?: React.ReactNode;
|
||||
redirect?: string;
|
||||
}
|
||||
|
||||
export default class Exception extends React.Component<IExceptionProps, any> {}
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Exception
|
||||
cols: 1
|
||||
order: 5
|
||||
---
|
||||
|
||||
Exceptions page is used to provide feedback on specific abnormal state. Usually, it contains an explanation of the error status, and provides users with suggestions or operations, to prevent users from feeling lost and confused.
|
||||
|
||||
## API
|
||||
|
||||
Property | Description | Type | Default
|
||||
---------|-------------|------|--------
|
||||
| backText | default return button text | ReactNode | back to home |
|
||||
type | type of exception, the corresponding default `title`, `desc`, `img` will be given if set, which can be overridden by explicit setting of `title`, `desc`, `img` | Enum {'403', '404', '500'} | -
|
||||
title | title | ReactNode | -
|
||||
desc | supplementary description | ReactNode | -
|
||||
img | the url of background image | string | -
|
||||
actions | suggested operations, a default 'Home' link will show if not set | ReactNode | -
|
||||
linkElement | to specify the element of link | string\|ReactElement | 'a'
|
||||
redirect | redirect path | string | '/'
|
||||
@@ -0,0 +1,61 @@
|
||||
import React, { createElement } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { Button } from 'antd';
|
||||
import config from './typeConfig';
|
||||
import styles from './index.less';
|
||||
|
||||
class Exception extends React.PureComponent {
|
||||
static defaultProps = {
|
||||
backText: 'back to home',
|
||||
redirect: '/',
|
||||
};
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
className,
|
||||
backText,
|
||||
linkElement = 'a',
|
||||
type,
|
||||
title,
|
||||
desc,
|
||||
img,
|
||||
actions,
|
||||
redirect,
|
||||
...rest
|
||||
} = this.props;
|
||||
const pageType = type in config ? type : '404';
|
||||
const clsString = classNames(styles.exception, className);
|
||||
return (
|
||||
<div className={clsString} {...rest}>
|
||||
<div className={styles.imgBlock}>
|
||||
<div
|
||||
className={styles.imgEle}
|
||||
style={{ backgroundImage: `url(${img || config[pageType].img})` }}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.content}>
|
||||
<h1>{title || config[pageType].title}</h1>
|
||||
<div className={styles.desc}>{desc || config[pageType].desc}</div>
|
||||
<div className={styles.actions}>
|
||||
{actions ||
|
||||
createElement(
|
||||
linkElement,
|
||||
{
|
||||
to: redirect,
|
||||
href: redirect,
|
||||
},
|
||||
<Button type="primary">{backText}</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Exception;
|
||||
@@ -0,0 +1,89 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
|
||||
.exception {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 80%;
|
||||
min-height: 500px;
|
||||
|
||||
.imgBlock {
|
||||
flex: 0 0 62.5%;
|
||||
width: 62.5%;
|
||||
padding-right: 152px;
|
||||
zoom: 1;
|
||||
&::before,
|
||||
&::after {
|
||||
content: ' ';
|
||||
display: table;
|
||||
}
|
||||
&::after {
|
||||
clear: both;
|
||||
height: 0;
|
||||
font-size: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.imgEle {
|
||||
float: right;
|
||||
width: 100%;
|
||||
max-width: 430px;
|
||||
height: 360px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: auto;
|
||||
|
||||
h1 {
|
||||
margin-bottom: 24px;
|
||||
color: #434e59;
|
||||
font-weight: 600;
|
||||
font-size: 72px;
|
||||
line-height: 72px;
|
||||
}
|
||||
|
||||
.desc {
|
||||
margin-bottom: 16px;
|
||||
color: @text-color-secondary;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.actions {
|
||||
button:not(:last-child) {
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-xl) {
|
||||
.exception {
|
||||
.imgBlock {
|
||||
padding-right: 88px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-sm) {
|
||||
.exception {
|
||||
display: block;
|
||||
text-align: center;
|
||||
.imgBlock {
|
||||
margin: 0 auto 24px;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-xs) {
|
||||
.exception {
|
||||
.imgBlock {
|
||||
margin-bottom: -24px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Exception
|
||||
subtitle: 异常
|
||||
cols: 1
|
||||
order: 5
|
||||
---
|
||||
|
||||
异常页用于对页面特定的异常状态进行反馈。通常,它包含对错误状态的阐述,并向用户提供建议或操作,避免用户感到迷失和困惑。
|
||||
|
||||
## API
|
||||
|
||||
| 参数 | 说明| 类型 | 默认值 |
|
||||
|-------------|------------------------------------------|-------------|-------|
|
||||
| backText| 默认的返回按钮文本 | ReactNode| back to home |
|
||||
| type| 页面类型,若配置,则自带对应类型默认的 `title`,`desc`,`img`,此默认设置可以被 `title`,`desc`,`img` 覆盖 | Enum {'403', '404', '500'} | - |
|
||||
| title | 标题 | ReactNode| -|
|
||||
| desc| 补充描述| ReactNode| -|
|
||||
| img | 背景图片地址 | string| -|
|
||||
| actions | 建议操作,配置此属性时默认的『返回首页』按钮不生效| ReactNode| -|
|
||||
| linkElement | 定义链接的元素 | string\|ReactElement | 'a' |
|
||||
| redirect | 返回按钮的跳转地址 | string | '/'
|
||||
@@ -0,0 +1,19 @@
|
||||
const config = {
|
||||
403: {
|
||||
img: 'https://gw.alipayobjects.com/zos/rmsportal/wZcnGqRDyhPOEYFcZDnb.svg',
|
||||
title: '403',
|
||||
desc: '抱歉,你无权访问该页面',
|
||||
},
|
||||
404: {
|
||||
img: 'https://gw.alipayobjects.com/zos/rmsportal/KpnpchXsobRgLElEozzI.svg',
|
||||
title: '404',
|
||||
desc: '抱歉,你访问的页面不存在',
|
||||
},
|
||||
500: {
|
||||
img: 'https://gw.alipayobjects.com/zos/rmsportal/RVRUAYdCGeYNBWoKiIwB.svg',
|
||||
title: '500',
|
||||
desc: '抱歉,服务器出错了',
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user