index.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view
  3. v-if="show"
  4. :class="'custom-class ' + utils.bem('notice-bar', { withicon: mode, wrapable })"
  5. :style="'color: ' + color + '; background-color: ' + backgroundColor + ';'"
  6. @tap="onClick"
  7. >
  8. <van-icon v-if="leftIcon" size="16px" :name="leftIcon" class="van-notice-bar__left-icon" />
  9. <slot v-else name="left-icon" />
  10. <view class="van-notice-bar__wrap">
  11. <view :class="'van-notice-bar__content ' + (!scrollable && !wrapable ? 'van-ellipsis' : '')" :animation="animationData">
  12. {{ text }}
  13. </view>
  14. </view>
  15. <van-icon v-if="mode === 'closeable'" class="van-notice-bar__right-icon" name="cross" @tap.native.stop.prevent="onClickIcon" />
  16. <navigator v-else-if="mode === 'link'" :url="url" :open-type="openType">
  17. <van-icon class="van-notice-bar__right-icon" name="arrow" />
  18. </navigator>
  19. <slot v-else name="right-icon" />
  20. </view>
  21. </template>
  22. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  23. <script>
  24. 'use strict';
  25. Object.defineProperty(exports, '__esModule', {
  26. value: true
  27. });
  28. var component_1 = require('../common/component');
  29. var FONT_COLOR = '#ed6a0c';
  30. var BG_COLOR = '#fffbe8';
  31. component_1.VantComponent({
  32. props: {
  33. text: {
  34. type: String,
  35. value: '',
  36. observer: function () {
  37. var that = this;
  38. this.$nextTick(function () {
  39. that.init();
  40. });
  41. }
  42. },
  43. mode: {
  44. type: String,
  45. value: ''
  46. },
  47. url: {
  48. type: String,
  49. value: ''
  50. },
  51. openType: {
  52. type: String,
  53. value: 'navigate'
  54. },
  55. delay: {
  56. type: Number,
  57. value: 1
  58. },
  59. speed: {
  60. type: Number,
  61. value: 50,
  62. observer: function () {
  63. var that = this;
  64. this.$nextTick(function () {
  65. that.init();
  66. });
  67. }
  68. },
  69. scrollable: {
  70. type: Boolean,
  71. value: true
  72. },
  73. leftIcon: {
  74. type: String,
  75. value: ''
  76. },
  77. color: {
  78. type: String,
  79. value: FONT_COLOR
  80. },
  81. backgroundColor: {
  82. type: String,
  83. value: BG_COLOR
  84. },
  85. wrapable: Boolean
  86. },
  87. data: {
  88. show: true
  89. },
  90. created: function () {
  91. this.resetAnimation = uni.createAnimation({
  92. duration: 0,
  93. timingFunction: 'linear'
  94. });
  95. },
  96. destroyed: function () {
  97. if (this.timer) {
  98. clearTimeout(this.timer);
  99. }
  100. },
  101. methods: {
  102. init: function () {
  103. var that = this;
  104. Promise.all([this.getRect('.van-notice-bar__content'), this.getRect('.van-notice-bar__wrap')]).then(function (rects) {
  105. var contentRect = rects[0];
  106. var wrapRect = rects[1];
  107. if (contentRect == null || wrapRect == null || !contentRect.width || !wrapRect.width) {
  108. return;
  109. }
  110. var _a = that;
  111. var speed = _a.speed;
  112. var scrollable = _a.scrollable;
  113. var delay = _a.delay;
  114. if (scrollable && wrapRect.width < contentRect.width) {
  115. var duration = (contentRect.width / speed) * 1000;
  116. that.wrapWidth = wrapRect.width;
  117. that.contentWidth = contentRect.width;
  118. that.duration = duration;
  119. that.animation = uni.createAnimation({
  120. duration: duration,
  121. timingFunction: 'linear',
  122. delay: delay
  123. });
  124. that.scroll();
  125. }
  126. });
  127. },
  128. scroll: function () {
  129. var that = this;
  130. if (this.timer) {
  131. clearTimeout(this.timer);
  132. }
  133. this.timer = null;
  134. this.setData({
  135. animationData: this.resetAnimation.translateX(this.wrapWidth).step().export()
  136. });
  137. setTimeout(function () {
  138. that.setData({
  139. animationData: that.animation.translateX(-that.contentWidth).step().export()
  140. });
  141. }, 20);
  142. this.timer = setTimeout(function () {
  143. that.scroll();
  144. }, this.duration);
  145. },
  146. onClickIcon: function () {
  147. if (this.timer) {
  148. clearTimeout(this.timer);
  149. }
  150. this.timer = null;
  151. this.setData({
  152. show: false
  153. });
  154. },
  155. onClick: function (event) {
  156. this.$emit('click', event);
  157. }
  158. }
  159. });
  160. </script>
  161. <style>
  162. @import './index.css';
  163. </style>