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.
ant-design-vue/components/empty/index.jsx

66 lines
1.8 KiB

import PropTypes from '../_util/vue-types';
import { ConfigConsumerProps } from '../config-provider';
import { getComponentFromProp } from '../_util/props-util';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import emptyImg from './empty.svg';
5 years ago
import Base from '../base';
export const TransferLocale = () => {
return {
description: PropTypes.string,
};
};
export const EmptyProps = () => {
return {
prefixCls: PropTypes.string,
image: PropTypes.any,
description: PropTypes.any,
};
};
const Empty = {
name: 'AEmpty',
props: {
...EmptyProps(),
},
methods: {
renderEmpty(contentLocale) {
const { prefixCls: customizePrefixCls, ...restProps } = this.$props;
const prefixCls = ConfigConsumerProps.getPrefixCls('empty', customizePrefixCls);
const image = getComponentFromProp(this, 'image');
const description = getComponentFromProp(this, 'description');
const des = description || contentLocale.description;
const alt = typeof des === 'string' ? des : 'empty';
let imageNode = null;
if (!image) {
imageNode = <img alt={alt} src={emptyImg} />;
} else if (typeof image === 'string') {
imageNode = <img alt={alt} src={image} />;
} else {
imageNode = image;
}
return (
5 years ago
<div class={prefixCls} {...{ on: this.$listeners }}>
<div class={`${prefixCls}-image`}>{imageNode}</div>
<p class={`${prefixCls}-description`}>{des}</p>
{this.$slots.default && <div class={`${prefixCls}-footer`}>{this.$slots.default}</div>}
</div>
);
},
},
render() {
return <LocaleReceiver componentName="Empty" scopedSlots={{ default: this.renderEmpty }} />;
},
};
/* istanbul ignore next */
Empty.install = function(Vue) {
5 years ago
Vue.use(Base);
Vue.component(Empty.name, Empty);
};
export default Empty;