u-tooltip.vue 10 KB

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