You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.9 KiB
94 lines
2.9 KiB
import { inject } from 'vue';
|
|
import PropTypes from '../_util/vue-types';
|
|
import { getComponent } from '../_util/props-util';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
import CheckCircleFilled from '@ant-design/icons-vue/CheckCircleFilled';
|
|
import CloseCircleFilled from '@ant-design/icons-vue/CloseCircleFilled';
|
|
import ExclamationCircleFilled from '@ant-design/icons-vue/ExclamationCircleFilled';
|
|
import WarningFilled from '@ant-design/icons-vue/WarningFilled';
|
|
import noFound from './noFound';
|
|
import serverError from './serverError';
|
|
import unauthorized from './unauthorized';
|
|
|
|
export const IconMap = {
|
|
success: CheckCircleFilled,
|
|
error: CloseCircleFilled,
|
|
info: ExclamationCircleFilled,
|
|
warning: WarningFilled,
|
|
};
|
|
|
|
export const ExceptionMap = {
|
|
'404': noFound,
|
|
'500': serverError,
|
|
'403': unauthorized,
|
|
};
|
|
|
|
// ExceptionImageMap keys
|
|
const ExceptionStatus = Object.keys(ExceptionMap);
|
|
|
|
export const ResultProps = {
|
|
prefixCls: PropTypes.string,
|
|
icon: PropTypes.any,
|
|
status: PropTypes.oneOf(['success', 'error', 'info', 'warning', '404', '403', '500']).def('info'),
|
|
title: PropTypes.any,
|
|
subTitle: PropTypes.any,
|
|
extra: PropTypes.any,
|
|
};
|
|
|
|
const renderIcon = (prefixCls, { status, icon }) => {
|
|
if (ExceptionStatus.includes(`${status}`)) {
|
|
const SVGComponent = ExceptionMap[status];
|
|
return (
|
|
<div class={`${prefixCls}-icon ${prefixCls}-image`}>
|
|
<SVGComponent />
|
|
</div>
|
|
);
|
|
}
|
|
const IconComponent = IconMap[status];
|
|
const iconNode = icon || <IconComponent />;
|
|
return <div class={`${prefixCls}-icon`}>{iconNode}</div>;
|
|
};
|
|
|
|
const renderExtra = (prefixCls, extra) => extra && <div class={`${prefixCls}-extra`}>{extra}</div>;
|
|
|
|
const Result = {
|
|
name: 'AResult',
|
|
props: ResultProps,
|
|
setup() {
|
|
return {
|
|
configProvider: inject('configProvider', ConfigConsumerProps),
|
|
};
|
|
},
|
|
render(h) {
|
|
const { prefixCls: customizePrefixCls, status } = this;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('result', customizePrefixCls);
|
|
|
|
const title = getComponent(this, 'title');
|
|
const subTitle = getComponent(this, 'subTitle');
|
|
const icon = getComponent(this, 'icon');
|
|
const extra = getComponent(this, 'extra');
|
|
|
|
return (
|
|
<div class={`${prefixCls} ${prefixCls}-${status}`}>
|
|
{renderIcon(prefixCls, { status, icon })}
|
|
<div class={`${prefixCls}-title`}>{title}</div>
|
|
{subTitle && <div class={`${prefixCls}-subtitle`}>{subTitle}</div>}
|
|
{this.$slots.default && <div class={`${prefixCls}-content`}>{this.$slots.default()}</div>}
|
|
{renderExtra(prefixCls, extra)}
|
|
</div>
|
|
);
|
|
},
|
|
};
|
|
|
|
/* add resource */
|
|
Result.PRESENTED_IMAGE_403 = ExceptionMap[403];
|
|
Result.PRESENTED_IMAGE_404 = ExceptionMap[404];
|
|
Result.PRESENTED_IMAGE_500 = ExceptionMap[500];
|
|
|
|
/* istanbul ignore next */
|
|
Result.install = function(app) {
|
|
app.component(Result.name, Result);
|
|
};
|
|
export default Result;
|