From cb2321ff507a18617107a1d655ae2561cc6d185b Mon Sep 17 00:00:00 2001 From: yutent Date: Fri, 17 Nov 2023 18:58:46 +0800 Subject: [PATCH] update --- src/badge/index.js | 24 ++++---- src/tooltip/index.js | 132 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 144 insertions(+), 12 deletions(-) create mode 100644 src/tooltip/index.js diff --git a/src/badge/index.js b/src/badge/index.js index 4de9a09..511a1df 100644 --- a/src/badge/index.js +++ b/src/badge/index.js @@ -12,18 +12,6 @@ class Badge extends Component { max: 0 } - get #value() { - if (this.value > 0) { - if (this.max > 0) { - if (this.value > this.max) { - return this.max + '+' - } - } - return this.value - } - return '' - } - static styles = [ css` :host { @@ -90,6 +78,18 @@ class Badge extends Component { ` ] + get #value() { + if (this.value > 0) { + if (this.max > 0) { + if (this.value > this.max) { + return this.max + '+' + } + } + return this.value + } + return '' + } + render() { return html`
diff --git a/src/tooltip/index.js b/src/tooltip/index.js new file mode 100644 index 0000000..65e1b41 --- /dev/null +++ b/src/tooltip/index.js @@ -0,0 +1,132 @@ +/** + * {} + * @author yutent + * @date 2023/03/21 16:14:10 + */ + +import { css, html, Component, bind, styleMap, offset } from 'wkit' + +class Tooltip extends Component { + static props = { + title: 'str!' + } + + static styles = [ + css` + :host { + display: inline-flex; + } + + .container { + position: relative; + } + + .tooltip { + display: none; + position: fixed; + z-index: 9; + justify-content: center; + align-items: center; + max-width: 360px; + min-width: 32px; + padding: 6px 8px; + 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; + -webkit-user-select: none; + user-select: none; + + &::after { + position: absolute; + display: block; + width: 8px; + height: 8px; + border-radius: 2px; + background: var(--wc-tooltip-background, #fff); + content: ''; + transform: rotate(45deg); + } + + &[placement='left-top'] { + &::after { + right: 16px; + bottom: -4px; + } + } + &[placement='left-bottom'] { + &::after { + right: 16px; + top: -4px; + } + } + &[placement='right-top'] { + &::after { + left: 16px; + bottom: -4px; + } + } + &[placement='right-bottom'] { + &::after { + left: 16px; + top: -4px; + } + } + } + ` + ] + + mounted() { + console.log(this.clientWidth, this.offsetHeight) + bind(this.$refs.wrap, 'mouseenter', ev => { + console.log(ev.pageX, ev.pageY) + let { left, top } = offset(this) + let placement = 'left' + let styles = { display: 'block' } + + if (left < 200 || left + this.clientWidth < 360) { + placement = 'right' + styles.left = left + 'px' + } else { + let right = window.innerWidth - left - this.clientWidth + console.log('right: ', right) + + styles.right = right + 'px' + } + + top += 8 + this.clientHeight + if (top < 100) { + placement += '-bottom' + styles.top = top + 'px' + } else { + // top -= 8 + placement += '-top' + styles.bottom = top + 'px' + } + console.log(placement) + // + this.$refs.tips.setAttribute('placement', placement) + this.$refs.tips.style.cssText = styleMap(styles) + }) + bind(this.$refs.wrap, 'mouseleave', ev => { + console.log(ev.pageX, ev.pageY) + // + this.$refs.tips.style.cssText = styleMap({ display: 'none' }) + }) + } + + render() { + return html` +
+
+
+ ${this.title} +
+
+ ` + } +} + +Tooltip.reg('tooltip')