You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

342 lines
9.6 KiB

2 months ago
  1. <template>
  2. <view
  3. class="u-tooltip"
  4. :style="[addStyle(customStyle)]"
  5. >
  6. <u-overlay
  7. :show="showTooltip && tooltipTop !== -10000 && overlay"
  8. customStyle="backgroundColor: rgba(0, 0, 0, 0)"
  9. @click="overlayClickHandler"
  10. ></u-overlay>
  11. <view class="u-tooltip__wrapper">
  12. <text
  13. class="u-tooltip__wrapper__text"
  14. :id="textId"
  15. :ref="textId"
  16. :userSelect="false"
  17. :selectable="false"
  18. @longpress.stop="longpressHandler"
  19. :style="{
  20. color: color,
  21. backgroundColor: bgColor && showTooltip && tooltipTop !== -10000 ? bgColor : 'transparent'
  22. }"
  23. >{{ text }}</text>
  24. <u-transition
  25. mode="fade"
  26. :show="showTooltip"
  27. duration="300"
  28. :customStyle="{
  29. position: 'absolute',
  30. top: addUnit(tooltipTop),
  31. zIndex: zIndex,
  32. ...tooltipStyle
  33. }"
  34. >
  35. <view
  36. class="u-tooltip__wrapper__popup"
  37. :id="tooltipId"
  38. :ref="tooltipId"
  39. >
  40. <view
  41. class="u-tooltip__wrapper__popup__indicator"
  42. hover-class="u-tooltip__wrapper__popup__indicator--hover"
  43. v-if="showCopy || buttons.length"
  44. :style="[indicatorStyle, {
  45. width: addUnit(indicatorWidth),
  46. height: addUnit(indicatorWidth),
  47. }]"
  48. >
  49. <!-- 由于nvue不支持三角形绘制这里就做一个四方形再旋转45deg得到露出的一个三角 -->
  50. </view>
  51. <view class="u-tooltip__wrapper__popup__list">
  52. <view
  53. v-if="showCopy"
  54. class="u-tooltip__wrapper__popup__list__btn"
  55. hover-class="u-tooltip__wrapper__popup__list__btn--hover"
  56. @tap="setClipboardData"
  57. >
  58. <text
  59. class="u-tooltip__wrapper__popup__list__btn__text"
  60. >复制</text>
  61. </view>
  62. <u-line
  63. direction="column"
  64. color="#8d8e90"
  65. v-if="showCopy && buttons.length > 0"
  66. length="18"
  67. ></u-line>
  68. <block v-for="(item , index) in buttons" :key="index">
  69. <view
  70. class="u-tooltip__wrapper__popup__list__btn"
  71. hover-class="u-tooltip__wrapper__popup__list__btn--hover"
  72. >
  73. <text
  74. class="u-tooltip__wrapper__popup__list__btn__text"
  75. @tap="btnClickHandler(index)"
  76. >{{ item }}</text>
  77. </view>
  78. <u-line
  79. direction="column"
  80. color="#8d8e90"
  81. v-if="index < buttons.length - 1"
  82. length="18"
  83. ></u-line>
  84. </block>
  85. </view>
  86. </view>
  87. </u-transition>
  88. </view>
  89. </view>
  90. </template>
  91. <script>
  92. import { props } from './props';
  93. import { mpMixin } from '../../libs/mixin/mpMixin';
  94. import { mixin } from '../../libs/mixin/mixin';
  95. import { addStyle, addUnit, getPx, guid, toast, sleep, sys } from '../../libs/function/index';
  96. // #ifdef APP-NVUE
  97. const dom = uni.requireNativePlugin('dom')
  98. // #endif
  99. /**
  100. * Tooltip
  101. * @description
  102. * @tutorial https://ijry.github.io/uview-plus/components/tooltip.html
  103. * @property {String | Number} text 需要显示的提示文字
  104. * @property {String | Number} copyText 点击复制按钮时复制的文本为空则使用text值
  105. * @property {String | Number} size 文本大小默认 14
  106. * @property {String} color 字体颜色默认 '#606266'
  107. * @property {String} bgColor 弹出提示框时文本的背景色默认 'transparent'
  108. * @property {String} direction 弹出提示的方向top-上方bottom-下方默认 'top'
  109. * @property {String | Number} zIndex 弹出提示的z-indexnvue无效默认 10071
  110. * @property {Boolean} showCopy 是否显示复制按钮默认 true
  111. * @property {Array} buttons 扩展的按钮组
  112. * @property {Boolean} overlay 是否显示透明遮罩以防止触摸穿透默认 true
  113. * @property {Object} customStyle 定义需要用到的外部样式
  114. *
  115. * @event {Function}
  116. * @example
  117. */
  118. export default {
  119. name: 'u-tooltip',
  120. mixins: [mpMixin, mixin, props],
  121. data() {
  122. return {
  123. // 是否展示气泡
  124. showTooltip: true,
  125. // 生成唯一id,防止一个页面多个组件,造成干扰
  126. textId: guid(),
  127. tooltipId: guid(),
  128. // 初始时甚至为很大的值,让其移到屏幕外面,为了计算元素的尺寸
  129. tooltipTop: -10000,
  130. // 气泡的位置信息
  131. tooltipInfo: {
  132. width: 0,
  133. left: 0
  134. },
  135. // 文本的位置信息
  136. textInfo: {
  137. width: 0,
  138. left: 0
  139. },
  140. // 三角形指示器的样式
  141. indicatorStyle: {},
  142. // 气泡在可能超出屏幕边沿范围时,重新定位后,距离屏幕边沿的距离
  143. screenGap: 12,
  144. // 三角形指示器的宽高,由于对元素进行了角度旋转,精确计算指示器位置时,需要用到其尺寸信息
  145. indicatorWidth: 14,
  146. }
  147. },
  148. watch: {
  149. propsChange() {
  150. this.getElRect()
  151. }
  152. },
  153. computed: {
  154. // 特别处理H5的复制,因为H5浏览器是自带系统复制功能的,在H5环境
  155. // 当一些依赖参数变化时,需要重新计算气泡和指示器的位置信息
  156. propsChange() {
  157. return [this.text, this.buttons]
  158. },
  159. // 计算气泡和指示器的位置信息
  160. tooltipStyle() {
  161. const style = {
  162. transform: `translateY(${this.direction === 'top' ? '-100%' : '100%'})`,
  163. },
  164. sysInfo = sys()
  165. if (this.tooltipInfo.width / 2 > this.textInfo.left + this.textInfo.width / 2 - this.screenGap) {
  166. this.indicatorStyle = {}
  167. style.left = `-${addUnit(this.textInfo.left - this.screenGap)}`
  168. this.indicatorStyle.left = addUnit(this.textInfo.width / 2 - getPx(style.left) - this.indicatorWidth /
  169. 2)
  170. } else if (this.tooltipInfo.width / 2 > sysInfo.windowWidth - this.textInfo.right + this.textInfo.width / 2 -
  171. this.screenGap) {
  172. this.indicatorStyle = {}
  173. style.right = `-${addUnit(sysInfo.windowWidth - this.textInfo.right - this.screenGap)}`
  174. this.indicatorStyle.right = addUnit(this.textInfo.width / 2 - getPx(style.right) - this
  175. .indicatorWidth / 2)
  176. } else {
  177. const left = Math.abs(this.textInfo.width / 2 - this.tooltipInfo.width / 2)
  178. style.left = this.textInfo.width > this.tooltipInfo.width ? addUnit(left) : -addUnit(left)
  179. this.indicatorStyle = {}
  180. }
  181. if (this.direction === 'top') {
  182. style.marginTop = '-10px'
  183. this.indicatorStyle.bottom = '-4px'
  184. } else {
  185. style.marginBottom = '-10px'
  186. this.indicatorStyle.top = '-4px'
  187. }
  188. return style
  189. }
  190. },
  191. mounted() {
  192. this.init()
  193. },
  194. emits: ["click"],
  195. methods: {
  196. addStyle,
  197. addUnit,
  198. init() {
  199. this.getElRect()
  200. },
  201. // 长按触发事件
  202. async longpressHandler() {
  203. this.tooltipTop = 0
  204. this.showTooltip = true
  205. },
  206. // 点击透明遮罩
  207. overlayClickHandler() {
  208. this.showTooltip = false
  209. },
  210. // 点击弹出按钮
  211. btnClickHandler(index) {
  212. this.showTooltip = false
  213. // 如果需要展示复制按钮,此处index需要加1,因为复制按钮在第一个位置
  214. this.$emit('click', this.showCopy ? index + 1 : index)
  215. },
  216. // 查询内容高度
  217. queryRect(ref) {
  218. // #ifndef APP-NVUE
  219. // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://ijry.github.io/uview-plus/js/getRect.html
  220. // 组件内部一般用this.$uGetRect,对外的为uni.$u.getRect,二者功能一致,名称不同
  221. return new Promise(resolve => {
  222. this.$uGetRect(`#${ref}`).then(size => {
  223. resolve(size)
  224. })
  225. })
  226. // #endif
  227. // #ifdef APP-NVUE
  228. // nvue下,使用dom模块查询元素高度
  229. // 返回一个promise,让调用此方法的主体能使用then回调
  230. return new Promise(resolve => {
  231. dom.getComponentRect(this.$refs[ref], res => {
  232. resolve(res.size)
  233. })
  234. })
  235. // #endif
  236. },
  237. // 元素尺寸
  238. getElRect() {
  239. // 调用之前,先将指示器调整到屏幕外,方便获取尺寸
  240. this.showTooltip = true
  241. this.tooltipTop = -10000
  242. sleep(500).then(() => {
  243. this.queryRect(this.tooltipId).then(size => {
  244. this.tooltipInfo = size
  245. // 获取气泡尺寸之后,将其隐藏,为了让下次切换气泡显示与隐藏时,有淡入淡出的效果
  246. this.showTooltip = false
  247. })
  248. this.queryRect(this.textId).then(size => {
  249. this.textInfo = size
  250. })
  251. })
  252. },
  253. // 复制文本到粘贴板
  254. setClipboardData() {
  255. // 关闭组件
  256. this.showTooltip = false
  257. this.$emit('click', 0)
  258. uni.setClipboardData({
  259. // 优先使用copyText字段,如果没有,则默认使用text字段当做复制的内容
  260. data: this.copyText || this.text,
  261. success: () => {
  262. this.showToast && toast('复制成功')
  263. },
  264. fail: () => {
  265. this.showToast && toast('复制失败')
  266. },
  267. complete: () => {
  268. this.showTooltip = false
  269. }
  270. })
  271. }
  272. }
  273. }
  274. </script>
  275. <style lang="scss" scoped>
  276. @import "../../libs/css/components.scss";
  277. .u-tooltip {
  278. position: relative;
  279. @include flex;
  280. &__wrapper {
  281. @include flex;
  282. justify-content: center;
  283. /* #ifndef APP-NVUE */
  284. white-space: nowrap;
  285. /* #endif */
  286. &__text {
  287. font-size: 14px;
  288. }
  289. &__popup {
  290. @include flex;
  291. justify-content: center;
  292. &__list {
  293. background-color: #060607;
  294. position: relative;
  295. flex: 1;
  296. border-radius: 5px;
  297. padding: 0px 0;
  298. @include flex(row);
  299. align-items: center;
  300. overflow: hidden;
  301. &__btn {
  302. padding: 11px 13px;
  303. &--hover {
  304. background-color: #58595B;
  305. }
  306. &__text {
  307. line-height: 12px;
  308. font-size: 13px;
  309. color: #FFFFFF;
  310. }
  311. }
  312. }
  313. &__indicator {
  314. position: absolute;
  315. background-color: #060607;
  316. width: 14px;
  317. height: 14px;
  318. bottom: -4px;
  319. transform: rotate(45deg);
  320. border-radius: 2px;
  321. z-index: -1;
  322. &--hover {
  323. background-color: #58595B;
  324. }
  325. }
  326. }
  327. }
  328. }
  329. </style>