优化tooltip在有滚动条时的定位
parent
e691868a55
commit
2f2d1ebbe9
|
@ -1,225 +1,135 @@
|
||||||
/**
|
/**
|
||||||
* {气泡确认框}
|
* {}
|
||||||
* @author chensbox<chensbox@foxmail.com>
|
* @author yutent<yutent.io@gmail.com>
|
||||||
* @date 2023/04/28 16:14:10
|
* @date 2023/03/21 16:14:10
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { css, html, Component, styleMap } from 'wkit'
|
import { css, html, Component, bind, styleMap, offset } from 'wkit'
|
||||||
import '../form/button.js'
|
|
||||||
|
|
||||||
class Popconfirm extends Component {
|
const DEFAULT_TIPS = '请确认你的操作!'
|
||||||
|
|
||||||
|
class PopConfirm extends Component {
|
||||||
static props = {
|
static props = {
|
||||||
title: {
|
title: 'str!'
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
confirmButtonText: {
|
|
||||||
type: String,
|
|
||||||
default: '确定',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
cancelButtonText: {
|
|
||||||
type: String,
|
|
||||||
default: '取消',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
confirmButtonType: {
|
|
||||||
type: String,
|
|
||||||
default: 'primary',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
cancelButtonType: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
icon: {
|
|
||||||
type: String,
|
|
||||||
default: 'info',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
iconColor: {
|
|
||||||
type: String,
|
|
||||||
default: '#ff9900',
|
|
||||||
attribute: false
|
|
||||||
},
|
|
||||||
hideIcon: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false
|
|
||||||
},
|
|
||||||
|
|
||||||
show: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
attribute: false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static styles = [
|
static styles = [
|
||||||
css`
|
css`
|
||||||
:host {
|
:host {
|
||||||
|
display: inline-flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
|
||||||
}
|
}
|
||||||
.popover {
|
|
||||||
z-index: 10;
|
.tooltip {
|
||||||
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
padding: 12px;
|
z-index: 9;
|
||||||
min-width: 150px;
|
justify-content: center;
|
||||||
border-radius: 4px;
|
|
||||||
border: 1px solid #ebeef5;
|
|
||||||
color: #606266;
|
|
||||||
line-height: 1.4;
|
|
||||||
text-align: left;
|
|
||||||
font-size: 14px;
|
|
||||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
||||||
word-break: break-all;
|
|
||||||
background: #fff;
|
|
||||||
transition: opacity 0.15s linear;
|
|
||||||
.btns {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
.cancel {
|
|
||||||
margin-right: 15px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: var(--color-teal-2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.content {
|
|
||||||
padding: 8px 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 14px;
|
max-width: 360px;
|
||||||
color: #606266;
|
min-width: 32px;
|
||||||
line-height: 1.4;
|
padding: 6px 8px;
|
||||||
text-align: justify;
|
border-radius: 3px;
|
||||||
|
font-size: var(--wc-tooltip-font, 14px);
|
||||||
|
background: var(--wc-tooltip-background, #fff);
|
||||||
|
color: var(--wc-tooltip-color, var(--color-dark-1));
|
||||||
|
box-shadow: 0 0 3px var(--wc-tooltip-shadow, rgba(0, 0, 0, 0.2));
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
white-space: nowrap;
|
-webkit-user-select: none;
|
||||||
wc-icon {
|
user-select: none;
|
||||||
margin-right: 5px;
|
|
||||||
--wc-icon-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrow {
|
&::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 12;
|
display: block;
|
||||||
left: 50%;
|
width: 8px;
|
||||||
top: 100%;
|
height: 8px;
|
||||||
transform: translateX(-50%);
|
border-radius: 2px;
|
||||||
border: 6px solid transparent;
|
background: var(--wc-tooltip-background, #fff);
|
||||||
border-bottom-color: #fff;
|
content: '';
|
||||||
&[top] {
|
transform: rotate(45deg);
|
||||||
border-bottom-color: transparent;
|
box-shadow: -1px -1px 0 var(--wc-tooltip-shadow, rgba(0, 0, 0, 0.1));
|
||||||
top: 0;
|
|
||||||
border-top-color: #fff;
|
|
||||||
transform: translateY(-100%);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.show {
|
&[placement='left-top'] {
|
||||||
visibility: visible;
|
&::after {
|
||||||
opacity: 1;
|
right: 16px;
|
||||||
|
bottom: -4px;
|
||||||
|
box-shadow: 1px 1px 0 var(--wc-tooltip-shadow, rgba(0, 0, 0, 0.1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&[placement='left-bottom'] {
|
||||||
|
&::after {
|
||||||
|
right: 16px;
|
||||||
|
top: -4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&[placement='right-top'] {
|
||||||
|
&::after {
|
||||||
|
left: 16px;
|
||||||
|
bottom: -4px;
|
||||||
|
box-shadow: 1px 1px 0 var(--wc-tooltip-shadow, rgba(0, 0, 0, 0.1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&[placement='right-bottom'] {
|
||||||
|
&::after {
|
||||||
|
left: 16px;
|
||||||
|
top: -4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.hide {
|
|
||||||
visibility: hidden;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
]
|
]
|
||||||
|
|
||||||
|
#click(ev) {
|
||||||
|
let { left, top } = offset(this)
|
||||||
|
let placement = 'left'
|
||||||
|
let styles = { display: 'block' }
|
||||||
|
|
||||||
|
if (left < 360 || (left > 360 && window.innerWidth - left > 360)) {
|
||||||
|
placement = 'right'
|
||||||
|
styles.left = left + 'px'
|
||||||
|
} else {
|
||||||
|
let right = window.innerWidth - left - this.clientWidth
|
||||||
|
styles.right = right + 'px'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (top < 96) {
|
||||||
|
top += 8 + this.clientHeight
|
||||||
|
placement += '-bottom'
|
||||||
|
styles.top = top + 'px'
|
||||||
|
} else {
|
||||||
|
let bottom = window.innerHeight - top + 8
|
||||||
|
placement += '-top'
|
||||||
|
styles.bottom = bottom + 'px'
|
||||||
|
}
|
||||||
|
//
|
||||||
|
this.$refs.tips.setAttribute('placement', placement)
|
||||||
|
this.$refs.tips.style.cssText = styleMap(styles)
|
||||||
|
this.$refs.tips.$animate()
|
||||||
|
}
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$slot = this.$refs.slot.assignedElements().shift()
|
// bind(this.$refs.wrap, 'mouseleave', ev => {
|
||||||
this.$popover = this.$refs.popover
|
// this.$refs.tips.$animate(true)
|
||||||
this.$arrow = this.$refs.arrow
|
// })
|
||||||
}
|
|
||||||
|
|
||||||
showPopover() {
|
|
||||||
const slotRect = this.$slot.getBoundingClientRect()
|
|
||||||
const popoverRect = this.$popover.getBoundingClientRect()
|
|
||||||
const halfSlotWidth = slotRect.width / 2
|
|
||||||
const halfPopoverWidth = popoverRect.width / 2
|
|
||||||
const left = slotRect.left + halfSlotWidth - halfPopoverWidth
|
|
||||||
|
|
||||||
if (left < 0) {
|
|
||||||
this.left = slotRect.left
|
|
||||||
} else if (left + popoverRect.width > window.innerWidth) {
|
|
||||||
this.left = slotRect.right - popoverRect.width
|
|
||||||
} else {
|
|
||||||
this.left = left
|
|
||||||
}
|
|
||||||
|
|
||||||
if (slotRect.bottom + 10 + popoverRect.height > window.innerHeight) {
|
|
||||||
this.top = slotRect.top - 10 - popoverRect.height
|
|
||||||
this.$arrow.setAttribute('top', '')
|
|
||||||
} else {
|
|
||||||
this.top = slotRect.bottom + 10
|
|
||||||
}
|
|
||||||
|
|
||||||
this.show = true
|
|
||||||
}
|
|
||||||
hide({ target }) {
|
|
||||||
this.show = false
|
|
||||||
if (target.hasAttribute('solid')) {
|
|
||||||
this.$emit('confirm')
|
|
||||||
} else {
|
|
||||||
this.$emit('cancel')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
let styles = styleMap({
|
|
||||||
left: `${this.left}px`,
|
|
||||||
top: `${this.top}px`
|
|
||||||
})
|
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<div class="popconfirm">
|
<main class="container">
|
||||||
<slot ref="slot" @click=${this.showPopover}></slot>
|
<div class="wrapper" ref="wrap" @click=${this.#click}>
|
||||||
|
<slot></slot>
|
||||||
<div class=${`arrow ${this.show ? 'show' : 'hide'}`} ref="arrow"></div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class=${`popover ${this.show ? 'show' : 'hide'}`}
|
|
||||||
style=${styles}
|
|
||||||
ref="popover"
|
|
||||||
>
|
|
||||||
<p class="content">
|
|
||||||
${this.hideIcon
|
|
||||||
? ''
|
|
||||||
: html`<wc-icon
|
|
||||||
name=${this.icon}
|
|
||||||
style=${`color:${this.iconColor}`}
|
|
||||||
></wc-icon>`}
|
|
||||||
${this.title}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="btns">
|
|
||||||
${!this.cancelButtonType
|
|
||||||
? html`<span class="cancel" @click=${this.hide}
|
|
||||||
>${this.cancelButtonText}</span
|
|
||||||
>`
|
|
||||||
: html`<wc-button
|
|
||||||
type=${this[cancelButtonType]}
|
|
||||||
class="cancel"
|
|
||||||
size="s"
|
|
||||||
@click=${this.hide}
|
|
||||||
>${this[cancelButtonText]}</wc-button
|
|
||||||
>`}
|
|
||||||
|
|
||||||
<wc-button
|
|
||||||
type=${this.confirmButtonType}
|
|
||||||
size="s"
|
|
||||||
solid
|
|
||||||
@click=${this.hide}
|
|
||||||
>${this.confirmButtonText}</wc-button
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="tooltip" ref="tips" #animation=${{}}>
|
||||||
|
<slot name="title">${this.title || DEFAULT_TIPS}</slot
|
||||||
|
><i class="trigon"></i>
|
||||||
</div>
|
</div>
|
||||||
|
</main>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Popconfirm.reg('popconfirm')
|
PopConfirm.reg('popconfirm')
|
||||||
|
|
|
@ -86,6 +86,11 @@ class Tooltip extends Component {
|
||||||
let { left, top } = offset(this)
|
let { left, top } = offset(this)
|
||||||
let placement = 'left'
|
let placement = 'left'
|
||||||
let styles = { display: 'block' }
|
let styles = { display: 'block' }
|
||||||
|
let st = document.documentElement.scrollTop
|
||||||
|
|
||||||
|
if (this.title.trim() === '') {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (left < 360 || (left > 360 && window.innerWidth - left > 360)) {
|
if (left < 360 || (left > 360 && window.innerWidth - left > 360)) {
|
||||||
placement = 'right'
|
placement = 'right'
|
||||||
|
@ -99,8 +104,9 @@ class Tooltip extends Component {
|
||||||
top += 8 + this.clientHeight
|
top += 8 + this.clientHeight
|
||||||
placement += '-bottom'
|
placement += '-bottom'
|
||||||
styles.top = top + 'px'
|
styles.top = top + 'px'
|
||||||
|
// console.log('<><><>', st)
|
||||||
} else {
|
} else {
|
||||||
let bottom = window.innerHeight - top + 8
|
let bottom = window.innerHeight - top + 8 + st
|
||||||
placement += '-top'
|
placement += '-top'
|
||||||
styles.bottom = bottom + 'px'
|
styles.bottom = bottom + 'px'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue