uv-row-notice.vue 9.4 KB

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