ant-design-vue/components/card/Meta.jsx

49 lines
1.5 KiB
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import PropTypes from '../_util/vue-types';
2020-01-18 21:34:23 +08:00
import { getComponentFromProp, getListeners } from '../_util/props-util';
2019-03-13 21:32:14 +08:00
import { ConfigConsumerProps } from '../config-provider';
2018-01-20 14:33:42 +08:00
export default {
2018-04-08 21:17:20 +08:00
name: 'ACardMeta',
2018-01-20 14:33:42 +08:00
props: {
2019-09-10 18:57:08 +08:00
prefixCls: PropTypes.string,
title: PropTypes.any,
description: PropTypes.any,
2018-01-20 14:33:42 +08:00
},
2019-03-13 21:32:14 +08:00
inject: {
2019-09-11 22:35:25 +08:00
configProvider: { default: () => ConfigConsumerProps },
2019-03-13 21:32:14 +08:00
},
2019-01-12 11:33:27 +08:00
render() {
2019-03-13 21:32:14 +08:00
const { prefixCls: customizePrefixCls } = this.$props;
2019-09-11 22:35:25 +08:00
const getPrefixCls = this.configProvider.getPrefixCls;
2019-03-13 21:32:14 +08:00
const prefixCls = getPrefixCls('card', customizePrefixCls);
2018-01-20 14:33:42 +08:00
const classString = {
[`${prefixCls}-meta`]: true,
2019-01-12 11:33:27 +08:00
};
2018-01-20 14:33:42 +08:00
2019-01-12 11:33:27 +08:00
const avatar = getComponentFromProp(this, 'avatar');
const title = getComponentFromProp(this, 'title');
const description = getComponentFromProp(this, 'description');
2019-01-12 11:33:27 +08:00
const avatarDom = avatar ? <div class={`${prefixCls}-meta-avatar`}>{avatar}</div> : null;
const titleDom = title ? <div class={`${prefixCls}-meta-title`}>{title}</div> : null;
const descriptionDom = description ? (
<div class={`${prefixCls}-meta-description`}>{description}</div>
) : null;
const MetaDetail =
titleDom || descriptionDom ? (
<div class={`${prefixCls}-meta-detail`}>
{titleDom}
{descriptionDom}
</div>
) : null;
2018-01-20 14:33:42 +08:00
return (
2020-01-18 21:34:23 +08:00
<div {...{ on: getListeners(this) }} class={classString}>
2018-01-20 14:33:42 +08:00
{avatarDom}
{MetaDetail}
</div>
2019-01-12 11:33:27 +08:00
);
2018-01-20 14:33:42 +08:00
},
2019-01-12 11:33:27 +08:00
};