uni-events-helper-wx
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.

295 lines
7.9 KiB

3 years ago
  1. <template>
  2. <view
  3. class="u-notice"
  4. @tap="clickHandler"
  5. >
  6. <slot name="icon">
  7. <view
  8. class="u-notice__left-icon"
  9. v-if="icon"
  10. >
  11. <u-icon
  12. :name="icon"
  13. :color="color"
  14. size="19"
  15. ></u-icon>
  16. </view>
  17. </slot>
  18. <view
  19. class="u-notice__content"
  20. ref="u-notice__content"
  21. >
  22. <text
  23. ref="u-notice__content__text"
  24. class="u-notice__content__text"
  25. :style="[textStyle]"
  26. >{{text}}</text>
  27. </view>
  28. <view
  29. class="u-notice__right-icon"
  30. v-if="['link', 'closable'].includes(mode)"
  31. >
  32. <u-icon
  33. v-if="mode === 'link'"
  34. name="arrow-right"
  35. :size="17"
  36. :color="color"
  37. ></u-icon>
  38. <u-icon
  39. v-if="mode === 'closable'"
  40. @click="close"
  41. name="close"
  42. :size="16"
  43. :color="color"
  44. ></u-icon>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import props from './props.js';
  50. // #ifdef APP-NVUE
  51. const animation = uni.requireNativePlugin('animation')
  52. const dom = uni.requireNativePlugin('dom')
  53. // #endif
  54. /**
  55. * RowNotice 滚动通知中的水平滚动模式
  56. * @description 水平滚动
  57. * @tutorial https://www.uviewui.com/components/noticeBar.html
  58. * @property {String | Number} text 显示的内容字符串
  59. * @property {String} icon 是否显示左侧的音量图标 (默认 'volume' )
  60. * @property {String} mode 通告模式link-显示右箭头closable-显示右侧关闭图标
  61. * @property {String} color 文字颜色各图标也会使用文字颜色 (默认 '#f9ae3d' )
  62. * @property {String} bgColor 背景颜色 (默认 ''#fdf6ec' )
  63. * @property {String | Number} fontSize 字体大小单位px (默认 14 )
  64. * @property {String | Number} speed 水平滚动时的滚动速度即每秒滚动多少px(rpx)这有利于控制文字无论多少时都能有一个恒定的速度 (默认 80 )
  65. *
  66. * @event {Function} click 点击通告文字触发
  67. * @event {Function} close 点击右侧关闭图标触发
  68. * @example
  69. */
  70. export default {
  71. name: 'u-row-notice',
  72. mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
  73. data() {
  74. return {
  75. animationDuration: '0', // 动画执行时间
  76. animationPlayState: 'paused', // 动画的开始和结束执行
  77. // nvue下,内容发生变化,导致滚动宽度也变化,需要标志为是否需要重新计算宽度
  78. // 不能在内容变化时直接重新计算,因为nvue的animation模块上一次的滚动不是刚好结束,会有影响
  79. nvueInit: true,
  80. show: true
  81. };
  82. },
  83. watch: {
  84. text() {
  85. // #ifdef APP-NVUE
  86. this.nvueInit = true
  87. // #endif
  88. // #ifndef APP-NVUE
  89. this.vue()
  90. // #endif
  91. },
  92. fontSize() {
  93. t // #ifdef APP-NVUE
  94. this.nvueInit = true
  95. // #endif
  96. // #ifndef APP-NVUE
  97. this.vue()
  98. // #endif
  99. },
  100. speed() {
  101. // #ifdef APP-NVUE
  102. this.nvueInit = true
  103. // #endif
  104. // #ifndef APP-NVUE
  105. this.vue()
  106. // #endif
  107. }
  108. },
  109. computed: {
  110. // 文字内容的样式
  111. textStyle() {
  112. let style = {}
  113. style.color = this.color
  114. style.animationDuration = this.animationDuration
  115. style.animationPlayState = this.animationPlayState
  116. style.fontSize = uni.$u.addUnit(this.fontSize)
  117. return style
  118. },
  119. },
  120. mounted() {
  121. // #ifdef APP-PLUS
  122. // 在APP上(含nvue),监听当前webview是否处于隐藏状态(进入下一页时即为hide状态)
  123. // 如果webivew隐藏了,为了节省性能的损耗,应停止动画的执行,同时也是为了保持进入下一页返回后,滚动位置保持不变
  124. var pages = getCurrentPages()
  125. var page = pages[pages.length - 1]
  126. var currentWebview = page.$getAppWebview()
  127. currentWebview.addEventListener('hide', () => {
  128. this.webviewHide = true
  129. })
  130. currentWebview.addEventListener('show', () => {
  131. this.webviewHide = false
  132. })
  133. // #endif
  134. this.init()
  135. },
  136. methods: {
  137. init() {
  138. // #ifdef APP-NVUE
  139. this.nvue()
  140. // #endif
  141. // #ifndef APP-NVUE
  142. this.vue()
  143. // #endif
  144. },
  145. // vue版处理
  146. async vue() {
  147. // #ifndef APP-NVUE
  148. let boxWidth = 0,
  149. textWidth = 0
  150. // 进行一定的延时
  151. await uni.$u.sleep()
  152. // 查询盒子和文字的宽度
  153. textWidth = (await this.$uGetRect('.u-notice__content__text')).width
  154. boxWidth = (await this.$uGetRect('.u-notice__content')).width
  155. // 根据t=s/v(时间=路程/速度),这里为何不需要加上#u-notice-box的宽度,因为中设置了.u-notice-content样式中设置了padding-left: 100%
  156. // 恰巧计算出来的结果中已经包含了#u-notice-box的宽度
  157. this.animationDuration = `${textWidth / uni.$u.getPx(this.speed)}s`
  158. // 这里必须这样开始动画,否则在APP上动画速度不会改变
  159. this.animationPlayState = 'paused'
  160. setTimeout(() => {
  161. this.animationPlayState = 'running'
  162. }, 10)
  163. // #endif
  164. },
  165. // nvue版处理
  166. async nvue() {
  167. // #ifdef APP-NVUE
  168. this.nvueInit = false
  169. let boxWidth = 0,
  170. textWidth = 0
  171. // 进行一定的延时
  172. await uni.$u.sleep()
  173. // 查询盒子和文字的宽度
  174. textWidth = (await this.getNvueRect('u-notice__content__text')).width
  175. boxWidth = (await this.getNvueRect('u-notice__content')).width
  176. // 将文字移动到盒子的右边沿,之所以需要这么做,是因为nvue不支持100%单位,否则可以通过css设置
  177. animation.transition(this.$refs['u-notice__content__text'], {
  178. styles: {
  179. transform: `translateX(${boxWidth}px)`
  180. },
  181. }, () => {
  182. // 如果非禁止动画,则开始滚动
  183. !this.stopAnimation && this.loopAnimation(textWidth, boxWidth)
  184. });
  185. // #endif
  186. },
  187. loopAnimation(textWidth, boxWidth) {
  188. // #ifdef APP-NVUE
  189. animation.transition(this.$refs['u-notice__content__text'], {
  190. styles: {
  191. // 目标移动终点为-textWidth,也即当文字的最右边贴到盒子的左边框的位置
  192. transform: `translateX(-${textWidth}px)`
  193. },
  194. // 滚动时间的计算为,时间 = 路程(boxWidth + textWidth) / 速度,最后转为毫秒
  195. duration: (boxWidth + textWidth) / uni.$u.getPx(this.speed) * 1000,
  196. delay: 10
  197. }, () => {
  198. animation.transition(this.$refs['u-notice__content__text'], {
  199. styles: {
  200. // 重新将文字移动到盒子的右边沿
  201. transform: `translateX(${this.stopAnimation ? 0 : boxWidth}px)`
  202. },
  203. }, () => {
  204. // 如果非禁止动画,则继续下一轮滚动
  205. if (!this.stopAnimation) {
  206. // 判断是否需要初始化计算尺寸
  207. if (this.nvueInit) {
  208. this.nvue()
  209. } else {
  210. this.loopAnimation(textWidth, boxWidth)
  211. }
  212. }
  213. });
  214. })
  215. // #endif
  216. },
  217. getNvueRect(el) {
  218. // #ifdef APP-NVUE
  219. // 返回一个promise
  220. return new Promise(resolve => {
  221. dom.getComponentRect(this.$refs[el], (res) => {
  222. resolve(res.size)
  223. })
  224. })
  225. // #endif
  226. },
  227. // 点击通告栏
  228. clickHandler(index) {
  229. this.$emit('click')
  230. },
  231. // 点击右侧按钮,需要判断点击的是关闭图标还是箭头图标
  232. close() {
  233. this.$emit('close')
  234. }
  235. },
  236. // #ifdef APP-NVUE
  237. beforeDestroy() {
  238. this.stopAnimation = true
  239. },
  240. // #endif
  241. };
  242. </script>
  243. <style lang="scss">
  244. @import "../../libs/css/components.scss";
  245. .u-notice {
  246. @include flex;
  247. align-items: center;
  248. justify-content: space-between;
  249. &__left-icon {
  250. align-items: center;
  251. margin-right: 5px;
  252. }
  253. &__right-icon {
  254. margin-left: 5px;
  255. align-items: center;
  256. }
  257. &__content {
  258. text-align: right;
  259. flex: 1;
  260. @include flex;
  261. flex-wrap: nowrap;
  262. overflow: hidden;
  263. &__text {
  264. font-size: 14px;
  265. color: $u-warning;
  266. /* #ifndef APP-NVUE */
  267. // 这一句很重要,为了能让滚动左右连接起来
  268. padding-left: 100%;
  269. word-break: keep-all;
  270. white-space: nowrap;
  271. animation: u-loop-animation 10s linear infinite both;
  272. /* #endif */
  273. }
  274. }
  275. }
  276. @keyframes u-loop-animation {
  277. 0% {
  278. transform: translate3d(0, 0, 0);
  279. }
  280. 100% {
  281. transform: translate3d(-100%, 0, 0);
  282. }
  283. }
  284. </style>