ant-design-vue/components/popover/index.jsx

60 lines
1.6 KiB
Vue
Raw Normal View History

import { inject } from 'vue';
2019-01-12 03:33:27 +00:00
import Tooltip from '../tooltip';
import abstractTooltipProps from '../tooltip/abstractTooltipProps';
import PropTypes from '../_util/vue-types';
import { getOptionProps, getComponent, getSlot } from '../_util/props-util';
2019-04-10 01:23:53 +00:00
import { ConfigConsumerProps } from '../config-provider';
2018-03-19 02:16:27 +00:00
2019-01-12 03:33:27 +00:00
const props = abstractTooltipProps();
const Popover = {
2018-04-08 13:17:20 +00:00
name: 'APopover',
2018-01-12 08:10:41 +00:00
props: {
2018-01-15 10:54:26 +00:00
...props,
prefixCls: PropTypes.string,
2018-01-12 08:10:41 +00:00
transitionName: PropTypes.string.def('zoom-big'),
content: PropTypes.any,
title: PropTypes.any,
},
setup() {
return {
configProvider: inject('configProvider', ConfigConsumerProps),
};
2019-04-10 01:23:53 +00:00
},
2018-01-12 08:10:41 +00:00
methods: {
2019-01-12 03:33:27 +00:00
getPopupDomNode() {
return this.$refs.tooltip.getPopupDomNode();
2018-01-12 08:10:41 +00:00
},
},
2019-02-01 09:23:00 +00:00
render() {
2019-04-10 01:23:53 +00:00
const { title, prefixCls: customizePrefixCls, $slots } = this;
2019-09-11 14:35:25 +00:00
const getPrefixCls = this.configProvider.getPrefixCls;
2019-04-10 01:23:53 +00:00
const prefixCls = getPrefixCls('popover', customizePrefixCls);
2019-01-12 03:33:27 +00:00
const props = getOptionProps(this);
delete props.title;
delete props.content;
2018-01-12 08:10:41 +00:00
const tooltipProps = {
...props,
prefixCls,
2018-01-12 08:10:41 +00:00
ref: 'tooltip',
title: (
<div>
{(title || $slots.title) && (
<div class={`${prefixCls}-title`}>{getComponent(this, 'title')}</div>
)}
<div class={`${prefixCls}-inner-content`}>{getComponent(this, 'content')}</div>
</div>
),
2019-01-12 03:33:27 +00:00
};
return <Tooltip {...tooltipProps}>{getSlot(this)}</Tooltip>;
2018-01-12 08:10:41 +00:00
},
2019-01-12 03:33:27 +00:00
};
2018-01-12 08:10:41 +00:00
/* istanbul ignore next */
Popover.install = function(app) {
app.component(Popover.name, Popover);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Popover;