u-row-notice.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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. immediate: true,
  86. handler(newValue, oldValue) {
  87. // #ifdef APP-NVUE
  88. this.nvueInit = true
  89. // #endif
  90. // #ifndef APP-NVUE
  91. this.vue()
  92. // #endif
  93. if(!uni.$u.test.string(newValue)) {
  94. uni.$u.error('noticebar组件direction为row时,要求text参数为字符串形式')
  95. }
  96. }
  97. },
  98. fontSize() {
  99. // #ifdef APP-NVUE
  100. this.nvueInit = true
  101. // #endif
  102. // #ifndef APP-NVUE
  103. this.vue()
  104. // #endif
  105. },
  106. speed() {
  107. // #ifdef APP-NVUE
  108. this.nvueInit = true
  109. // #endif
  110. // #ifndef APP-NVUE
  111. this.vue()
  112. // #endif
  113. }
  114. },
  115. computed: {
  116. // 文字内容的样式
  117. textStyle() {
  118. let style = {}
  119. style.color = this.color
  120. style.animationDuration = this.animationDuration
  121. style.animationPlayState = this.animationPlayState
  122. style.fontSize = uni.$u.addUnit(this.fontSize)
  123. return style
  124. },
  125. },
  126. mounted() {
  127. // #ifdef APP-PLUS
  128. // 在APP上(含nvue),监听当前webview是否处于隐藏状态(进入下一页时即为hide状态)
  129. // 如果webivew隐藏了,为了节省性能的损耗,应停止动画的执行,同时也是为了保持进入下一页返回后,滚动位置保持不变
  130. var pages = getCurrentPages()
  131. var page = pages[pages.length - 1]
  132. var currentWebview = page.$getAppWebview()
  133. currentWebview.addEventListener('hide', () => {
  134. this.webviewHide = true
  135. })
  136. currentWebview.addEventListener('show', () => {
  137. this.webviewHide = false
  138. })
  139. // #endif
  140. this.init()
  141. },
  142. methods: {
  143. init() {
  144. // #ifdef APP-NVUE
  145. this.nvue()
  146. // #endif
  147. // #ifndef APP-NVUE
  148. this.vue()
  149. // #endif
  150. if(!uni.$u.test.string(this.text)) {
  151. uni.$u.error('noticebar组件direction为row时,要求text参数为字符串形式')
  152. }
  153. },
  154. // vue版处理
  155. async vue() {
  156. // #ifndef APP-NVUE
  157. let boxWidth = 0,
  158. textWidth = 0
  159. // 进行一定的延时
  160. await uni.$u.sleep()
  161. // 查询盒子和文字的宽度
  162. textWidth = (await this.$uGetRect('.u-notice__content__text')).width
  163. boxWidth = (await this.$uGetRect('.u-notice__content')).width
  164. // 根据t=s/v(时间=路程/速度),这里为何不需要加上#u-notice-box的宽度,因为中设置了.u-notice-content样式中设置了padding-left: 100%
  165. // 恰巧计算出来的结果中已经包含了#u-notice-box的宽度
  166. this.animationDuration = `${textWidth / uni.$u.getPx(this.speed)}s`
  167. // 这里必须这样开始动画,否则在APP上动画速度不会改变
  168. this.animationPlayState = 'paused'
  169. setTimeout(() => {
  170. this.animationPlayState = 'running'
  171. }, 10)
  172. // #endif
  173. },
  174. // nvue版处理
  175. async nvue() {
  176. // #ifdef APP-NVUE
  177. this.nvueInit = false
  178. let boxWidth = 0,
  179. textWidth = 0
  180. // 进行一定的延时
  181. await uni.$u.sleep()
  182. // 查询盒子和文字的宽度
  183. textWidth = (await this.getNvueRect('u-notice__content__text')).width
  184. boxWidth = (await this.getNvueRect('u-notice__content')).width
  185. // 将文字移动到盒子的右边沿,之所以需要这么做,是因为nvue不支持100%单位,否则可以通过css设置
  186. animation.transition(this.$refs['u-notice__content__text'], {
  187. styles: {
  188. transform: `translateX(${boxWidth}px)`
  189. },
  190. }, () => {
  191. // 如果非禁止动画,则开始滚动
  192. !this.stopAnimation && this.loopAnimation(textWidth, boxWidth)
  193. });
  194. // #endif
  195. },
  196. loopAnimation(textWidth, boxWidth) {
  197. // #ifdef APP-NVUE
  198. animation.transition(this.$refs['u-notice__content__text'], {
  199. styles: {
  200. // 目标移动终点为-textWidth,也即当文字的最右边贴到盒子的左边框的位置
  201. transform: `translateX(-${textWidth}px)`
  202. },
  203. // 滚动时间的计算为,时间 = 路程(boxWidth + textWidth) / 速度,最后转为毫秒
  204. duration: (boxWidth + textWidth) / uni.$u.getPx(this.speed) * 1000,
  205. delay: 10
  206. }, () => {
  207. animation.transition(this.$refs['u-notice__content__text'], {
  208. styles: {
  209. // 重新将文字移动到盒子的右边沿
  210. transform: `translateX(${this.stopAnimation ? 0 : boxWidth}px)`
  211. },
  212. }, () => {
  213. // 如果非禁止动画,则继续下一轮滚动
  214. if (!this.stopAnimation) {
  215. // 判断是否需要初始化计算尺寸
  216. if (this.nvueInit) {
  217. this.nvue()
  218. } else {
  219. this.loopAnimation(textWidth, boxWidth)
  220. }
  221. }
  222. });
  223. })
  224. // #endif
  225. },
  226. getNvueRect(el) {
  227. // #ifdef APP-NVUE
  228. // 返回一个promise
  229. return new Promise(resolve => {
  230. dom.getComponentRect(this.$refs[el], (res) => {
  231. resolve(res.size)
  232. })
  233. })
  234. // #endif
  235. },
  236. // 点击通告栏
  237. clickHandler(index) {
  238. this.$emit('click')
  239. },
  240. // 点击右侧按钮,需要判断点击的是关闭图标还是箭头图标
  241. close() {
  242. this.$emit('close')
  243. }
  244. },
  245. // #ifdef APP-NVUE
  246. beforeDestroy() {
  247. this.stopAnimation = true
  248. },
  249. // #endif
  250. };
  251. </script>
  252. <style lang="scss" scoped>
  253. @import "../../libs/css/components.scss";
  254. .u-notice {
  255. @include flex;
  256. align-items: center;
  257. justify-content: space-between;
  258. &__left-icon {
  259. align-items: center;
  260. margin-right: 5px;
  261. }
  262. &__right-icon {
  263. margin-left: 5px;
  264. align-items: center;
  265. }
  266. &__content {
  267. text-align: right;
  268. flex: 1;
  269. @include flex;
  270. flex-wrap: nowrap;
  271. overflow: hidden;
  272. &__text {
  273. font-size: 14px;
  274. color: $u-warning;
  275. /* #ifndef APP-NVUE */
  276. // 这一句很重要,为了能让滚动左右连接起来
  277. padding-left: 100%;
  278. word-break: keep-all;
  279. white-space: nowrap;
  280. animation: u-loop-animation 10s linear infinite both;
  281. /* #endif */
  282. }
  283. }
  284. }
  285. @keyframes u-loop-animation {
  286. 0% {
  287. transform: translate3d(0, 0, 0);
  288. }
  289. 100% {
  290. transform: translate3d(-100%, 0, 0);
  291. }
  292. }
  293. </style>