123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- import baseComponent from '../helpers/baseComponent'
- import classNames from '../helpers/libs/classNames'
- import styleToCssString from '../helpers/libs/styleToCssString'
- import { $wuxBackdrop } from '../index'
- import { useRect, useScrollOffset } from '../helpers/hooks/useDOM'
- const getPlacements = ([a, s, b, r] = rects, placement = 'top') => {
- switch (placement) {
- case 'topLeft':
- return {
- top: !r ? s.scrollTop + a.top - b.height - 4 : a.top - b.height - r.top,
- left: !r ? s.scrollLeft + a.left : a.left,
- }
- case 'top':
- return {
- top: !r ? s.scrollTop + a.top - b.height - 4 : a.top - b.height - r.top,
- left: !r ? s.scrollLeft + a.left + (a.width - b.width) / 2 : a.left + (a.width - b.width) / 2,
- }
- case 'topRight':
- return {
- top: !r ? s.scrollTop + a.top - b.height - 4 : a.top - b.height - r.top,
- left: !r ? s.scrollLeft + a.left + a.width - b.width : a.left + a.width - b.width,
- }
- case 'rightTop':
- return {
- top: !r ? s.scrollTop + a.top : a.top - r.top,
- left: !r ? s.scrollLeft + a.left + a.width + 4 : a.left + a.width,
- }
- case 'right':
- return {
- top: !r ? s.scrollTop + a.top + (a.height - b.height) / 2 : a.top + (a.height - b.height) / 2 - r.top,
- left: !r ? s.scrollLeft + a.left + a.width + 4 : a.left + a.width,
- }
- case 'rightBottom':
- return {
- top: !r ? s.scrollTop + a.top + a.height - b.height : a.top + a.height - b.height - r.top,
- left: !r ? s.scrollLeft + a.left + a.width + 4 : a.left + a.width,
- }
- case 'bottomRight':
- return {
- top: !r ? s.scrollTop + a.top + a.height + 4 : a.top + a.height - r.top,
- left: !r ? s.scrollLeft + a.left + a.width - b.width : a.left + a.width - b.width,
- }
- case 'bottom':
- return {
- top: !r ? s.scrollTop + a.top + a.height + 4 : a.top + a.height - r.top,
- left: !r ? s.scrollLeft + a.left + (a.width - b.width) / 2 : a.left + (a.width - b.width) / 2,
- }
- case 'bottomLeft':
- return {
- top: !r ? s.scrollTop + a.top + a.height + 4 : a.top + a.height - r.top,
- left: !r ? s.scrollLeft + a.left : a.left,
- }
- case 'leftBottom':
- return {
- top: !r ? s.scrollTop + a.top + a.height - b.height : a.top + a.height - b.height - r.top,
- left: !r ? s.scrollLeft + a.left - b.width - 4 : a.left - b.width,
- }
- case 'left':
- return {
- top: !r ? s.scrollTop + a.top + (a.height - b.height) / 2 : a.top + (a.height - b.height) / 2 - r.top,
- left: !r ? s.scrollLeft + a.left - b.width - 4 : a.left - b.width,
- }
- case 'leftTop':
- return {
- top: !r ? s.scrollTop + a.top : a.top - r.top,
- left: !r ? s.scrollLeft + a.left - b.width - 4 : a.left - b.width,
- }
- default:
- return {
- left: 0,
- top: 0,
- }
- }
- }
- baseComponent({
- properties: {
- prefixCls: {
- type: String,
- value: 'wux-popover',
- },
- classNames: {
- type: null,
- value: 'wux-animate--fadeIn',
- },
- theme: {
- type: String,
- value: 'light',
- },
- title: {
- type: String,
- value: '',
- },
- content: {
- type: String,
- value: '',
- },
- placement: {
- type: String,
- value: 'top',
- },
- trigger: {
- type: String,
- value: 'click',
- },
- bodyStyle: {
- type: [String, Object],
- value: '',
- observer(newVal) {
- this.setData({
- extStyle: styleToCssString(newVal),
- })
- },
- },
- defaultVisible: {
- type: Boolean,
- value: false,
- },
- visible: {
- type: Boolean,
- value: false,
- observer(newVal) {
- if (this.data.controlled) {
- this.updated(newVal)
- }
- },
- },
- controlled: {
- type: Boolean,
- value: false,
- },
- mask: {
- type: Boolean,
- value: false,
- },
- maskClosable: {
- type: Boolean,
- value: true,
- },
- useSlot: {
- type: Boolean,
- value: true,
- },
- slotRect: {
- type: Object,
- value: null,
- },
- relativeRect: {
- type: Object,
- value: null,
- },
- },
- data: {
- extStyle: '',
- popoverStyle: '',
- popoverVisible: false,
- },
- computed: {
- classes: ['prefixCls, theme, placement', function(prefixCls, theme, placement) {
- const wrap = classNames(prefixCls, {
- [`${prefixCls}--theme-${theme}`]: theme,
- [`${prefixCls}--placement-${placement}`]: placement,
- })
- const content = `${prefixCls}__content`
- const arrow = `${prefixCls}__arrow`
- const inner = `${prefixCls}__inner`
- const title = `${prefixCls}__title`
- const innerContent = `${prefixCls}__inner-content`
- const element = `${prefixCls}__element`
- return {
- wrap,
- content,
- arrow,
- inner,
- title,
- innerContent,
- element,
- }
- }],
- },
- methods: {
- updated(popoverVisible) {
- if (this.data.popoverVisible !== popoverVisible) {
- this.setData({ popoverVisible })
- this.setBackdropVisible(popoverVisible)
- }
- },
- getPopoverStyle() {
- const { prefixCls, placement, slotRect, relativeRect } = this.data
- const promises = []
- if (this.data.useSlot) {
- promises.push(
- useRect(`.${prefixCls}__element`, this)
- )
- }
- promises.push(useScrollOffset(this))
- promises.push(useRect(`.${prefixCls}`, this))
- Promise.all(promises)
- .then((rects) => {
- if (rects.filter((n) => !n).length) return
- const res = rects.length === 3
- ? [...rects, relativeRect]
- : [slotRect, ...rects, relativeRect]
- const placements = getPlacements(res, placement)
- const popoverStyle = styleToCssString(placements)
- this.setData({
- popoverStyle,
- })
- })
- },
- /**
- * 当组件进入过渡的开始状态时,设置气泡框位置信息
- */
- onEnter() {
- this.getPopoverStyle()
- },
- onChange() {
- const { popoverVisible, controlled } = this.data
- const nextVisible = !popoverVisible
- if (!controlled) {
- this.updated(nextVisible)
- }
- this.triggerEvent('change', { visible: nextVisible })
- },
- onClick() {
- if (this.data.trigger === 'click') {
- this.onChange()
- }
- },
- setBackdropVisible(visible) {
- if (this.data.mask && this.$wuxBackdrop) {
- this.$wuxBackdrop[visible ? 'retain' : 'release']()
- }
- },
- onMaskClick() {
- const { maskClosable, popoverVisible } = this.data
- if (maskClosable && popoverVisible) {
- this.onChange()
- }
- },
- },
- ready() {
- const { defaultVisible, visible, controlled } = this.data
- const popoverVisible = controlled ? visible : defaultVisible
- if (this.data.mask) {
- this.$wuxBackdrop = $wuxBackdrop('#wux-backdrop', this)
- }
- this.updated(popoverVisible)
- },
- })
|