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

60 lines
1.5 KiB
Vue
Raw Normal View History

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, getComponentFromProp } from '../_util/props-util';
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,
2018-01-12 08:10:41 +00:00
prefixCls: PropTypes.string.def('ant-popover'),
transitionName: PropTypes.string.def('zoom-big'),
content: PropTypes.any,
title: PropTypes.any,
},
model: {
prop: 'visible',
2018-06-26 02:17:30 +00:00
event: 'visibleChange',
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-01-12 03:33:27 +00:00
const { title, prefixCls, $slots } = this;
const props = getOptionProps(this);
delete props.title;
delete props.content;
2018-01-12 08:10:41 +00:00
const tooltipProps = {
props: {
...props,
},
ref: 'tooltip',
on: this.$listeners,
2019-01-12 03:33:27 +00:00
};
2018-01-12 08:10:41 +00:00
return (
2019-01-12 03:33:27 +00:00
<Tooltip {...tooltipProps}>
<template slot="title">
2018-01-12 11:04:42 +00:00
<div>
2019-01-12 03:33:27 +00:00
{(title || $slots.title) && (
<div class={`${prefixCls}-title`}>{getComponentFromProp(this, 'title')}</div>
)}
<div class={`${prefixCls}-inner-content`}>{getComponentFromProp(this, 'content')}</div>
2018-01-12 11:04:42 +00:00
</div>
2018-01-12 08:10:41 +00:00
</template>
{this.$slots.default}
</Tooltip>
2019-01-12 03:33:27 +00:00
);
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 */
2019-01-12 03:33:27 +00:00
Popover.install = function(Vue) {
Vue.component(Popover.name, Popover);
};
2019-01-12 03:33:27 +00:00
export default Popover;