tui-notice-bar.vue
9.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<template>
<view class="tui-notice__bar" :class="{'tui-notice__fixed':isFixed}"
:style="{backgroundColor:backgroundColor,paddingTop:padding[0] || 0,paddingRight:padding[1]||0,paddingBottom:padding[2] || padding[0]||0,paddingLeft:padding[3] || padding[1]||0,height:scrollable || single?height+'rpx':'auto',top:isFixed?top:'auto'}"
@click="onClick">
<view class="tui-notice__shrink" @tap.stop="leftClick" v-if="isLeft">
<slot name="left"></slot>
</view>
<view class="tui-notice__wrap" :class="{'tui-notice__wrap-scroll':scrollable}"
:style="{height:scrollable&& !isNvue?size+'rpx':'auto'}" ref="tui_notice_box">
<view :id="elId_box"
:class="{'tui-notice__content':scrollable,'tui-notice__content-single':!scrollable && single}">
<text ref="animationEle" class="tui-notice__text" :id="elId"
:style="{color:getColor,fontSize:size+'rpx',lineHeight:scrollable && !isNvue?size+'rpx':'normal',fontWeight:bold?'bold':'',width:wrapWidth+'px', 'animationDuration': animationDuration,'-webkit-animationDuration': animationDuration,animationPlayState: webviewHide?'paused':animationPlayState,'-webkit-animationPlayState':webviewHide?'paused':animationPlayState, animationDelay: animationDelay, '-webkit-animationDelay':animationDelay}"
:class="{'tui-notice__single':!scrollable && single,'tui-notice__scrollable':scrollable}">{{content}}</text>
</view>
</view>
<view class="tui-notice__shrink" @tap.stop="rightClick" v-if="isRight">
<slot name="right"></slot>
</view>
</view>
</template>
<script>
// #ifdef APP-NVUE
const dom = weex.requireModule('dom');
const animation = weex.requireModule('animation');
// #endif
export default {
name: "tui-notice-bar",
emits: ['click', 'leftClick', 'rightClick'],
props: {
//通告栏高度
height: {
type: [Number, String],
default: 72
},
content: {
type: String,
default: ''
},
//字体大小 rpx
size: {
type: [Number, String],
default: 28
},
color: {
type: String,
default: ''
},
bold: {
type: Boolean,
default: false
},
backgroundColor: {
type: String,
default: '#fff8d5'
},
//scrollable为false时使用,['20rpx','30rpx','20rpx','30rpx']=>[上,右,下,左],为了兼容nvue
padding: {
type: Array,
default () {
return []
}
},
//是否单行
single: {
type: Boolean,
default: false
},
//是否滚动,添加后控制单行效果取消
scrollable: {
type: Boolean,
default: false
},
//每秒滚动速度(距离) 默认 100px/s
speed: {
type: [Number, String],
default: 100
},
//backwards: 动画从头开始播;forwards:动画从结束点开始播
activeMode: {
type: String,
default: 'backwards'
},
//是否需要左侧slot内容
isLeft: {
type: Boolean,
default: false
},
//是否需要右侧slot内容
isRight: {
type: Boolean,
default: false
},
//是否固定在顶部
isFixed: {
type: Boolean,
default: false
},
//isFixed为true时top值
top: {
type: String
// #ifdef H5
,
default: '44px'
// #endif
// #ifndef H5
,
default: '0'
// #endif
},
//自定义参数
params: {
type: [Number, String],
default: 0
}
},
data() {
const elId = `tui_${Math.ceil(Math.random() * 10e5).toString(36)}`
const elId_box = `tui_${Math.ceil(Math.random() * 10e5).toString(36)}`
let isNvue = false;
// #ifdef APP-NVUE
isNvue = true;
// #endif
return {
elId: elId,
elId_box: elId_box,
noticeWidth: 0,
boxWidth: 0,
wrapWidth: '',
webviewHide: false,
// #ifdef APP-NVUE
stopAnimation: false,
// #endif
isNvue: isNvue,
animationDuration: 'none',
animationPlayState: 'paused',
animationDelay: '0s'
};
},
mounted() {
// #ifdef APP-PLUS
let pages = getCurrentPages();
let page = pages[pages.length - 1];
let currentWebview = page.$getAppWebview();
currentWebview.addEventListener('hide', () => {
this.webviewHide = true
})
currentWebview.addEventListener('show', () => {
this.webviewHide = false
})
// #endif
this.$nextTick(() => {
setTimeout(() => {
this.initAnimation()
}, 50)
})
},
computed: {
getColor() {
return this.color || (uni && uni.$tui && uni.$tui.color.warning) || '#ff7900'
}
},
watch: {
scrollable(val) {
if (val) {
this.$nextTick(() => {
this.initAnimation()
})
}
},
content(val) {
this.$nextTick(() => {
setTimeout(() => {
this.initAnimation()
}, 50)
})
}
},
//APP-NVUE 暂不支持vue3
// #ifdef APP-NVUE
// #ifndef VUE3
beforeDestroy() {
this.stopAnimation = true
},
// #endif
// #ifdef VUE3
beforeUnmount() {
this.stopAnimation = true
},
// #endif
// #endif
methods: {
initAnimation() {
if (!this.content || this.content == '') return;
if (this.scrollable) {
// #ifndef APP-NVUE
let query = [],
boxWidth = 0,
noticeWidth = 0;
let noticeQuery = new Promise((resolve, reject) => {
uni.createSelectorQuery()
// #ifndef MP-ALIPAY
.in(this)
// #endif
.select(`#${this.elId}`)
.boundingClientRect()
.exec(ret => {
this.noticeWidth = ret[0].width
resolve()
})
})
if (this.activeMode === 'forwards') {
let boxQuery = new Promise((resolve, reject) => {
uni.createSelectorQuery()
// #ifndef MP-ALIPAY
.in(this)
// #endif
.select(`#${this.elId_box}`)
.boundingClientRect()
.exec(ret => {
this.boxWidth = ret[0].width
resolve()
})
})
query.push(boxQuery)
}
query.push(noticeQuery)
Promise.all(query).then(() => {
this.animationDuration = `${this.noticeWidth / (Number(this.speed) || 100)}s`
if (this.activeMode === 'forwards') {
this.animationDelay = `-${this.boxWidth / (Number(this.speed) || 100)}s`
}
setTimeout(() => {
this.animationPlayState = 'running'
}, 1000)
})
// #endif
// #ifdef APP-NVUE
dom.getComponentRect(this.$refs['animationEle'], (res) => {
let winWidth = uni.getSystemInfoSync().windowWidth
this.noticeWidth = res.size.width
animation.transition(this.$refs['animationEle'], {
styles: {
transform: `translateX(-${winWidth}px)`
},
duration: 0,
timingFunction: 'linear',
delay: 0
}, () => {
if (!this.stopAnimation) {
animation.transition(this.$refs['animationEle'], {
styles: {
transform: `translateX(-${this.noticeWidth}px)`
},
timingFunction: 'linear',
duration: (this.noticeWidth - winWidth) / (Number(this.speed) || 100) * 1000,
delay: 1000
}, () => {
if (!this.stopAnimation) {
this.loopAnimation()
}
});
}
});
})
// #endif
}
// #ifdef APP-NVUE
if (!this.scrollable && this.single) {
dom.getComponentRect(this.$refs['tui_notice_box'], (res) => {
this.wrapWidth = res.size.width
})
}
// #endif
},
loopAnimation() {
// #ifdef APP-NVUE
animation.transition(this.$refs['animationEle'], {
styles: {
transform: `translateX(0)`
},
duration: 0
}, () => {
if (!this.stopAnimation) {
animation.transition(this.$refs['animationEle'], {
styles: {
transform: `translateX(-${this.noticeWidth}px)`
},
duration: this.noticeWidth / (Number(this.speed) || 100) * 1000,
timingFunction: 'linear',
delay: 0
}, () => {
if (!this.stopAnimation) {
this.loopAnimation()
}
});
}
});
// #endif
},
onClick() {
this.$emit('click', {
params: this.params
})
},
leftClick() {
this.$emit('leftClick', {
params: this.params
})
},
rightClick() {
this.$emit('rightClick', {
params: this.params
})
}
}
}
</script>
<style scoped>
.tui-notice__bar {
/* #ifndef APP-NVUE */
display: flex;
width: 100%;
box-sizing: border-box;
/* #endif */
flex-direction: row;
align-items: center;
}
.tui-notice__fixed {
position: fixed;
left: 0;
z-index: 100;
}
.tui-notice__shrink {
/* #ifndef APP-NVUE */
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
/* #endif */
/* #ifdef H5 */
cursor: pointer;
/* #endif */
}
.tui-notice__wrap {
flex: 1;
flex-direction: column;
overflow: hidden;
}
.tui-notice__wrap-scroll {
flex-direction: row;
}
/* #ifndef APP-NVUE */
.tui-notice__wrap-scroll {
position: relative;
}
/* #endif */
.tui-notice__content {
/* #ifdef APP-NVUE */
flex: 0;
/* #endif */
/* #ifndef APP-NVUE */
flex: 1;
display: block;
overflow: hidden;
/* #endif */
}
.tui-notice__text {
/* #ifndef APP-NVUE */
word-break: break-all;
/* #endif */
}
.tui-notice__content-single {
/* #ifndef APP-NVUE */
display: flex;
flex: none;
width: 100%;
justify-content: center;
/* #endif */
}
.tui-notice__single {
/* #ifdef APP-NVUE */
lines: 1;
/* #endif */
/* #ifndef APP-NVUE */
display: block;
width: 100%;
white-space: nowrap;
/* #endif */
flex-direction: row;
overflow: hidden;
text-overflow: ellipsis;
}
.tui-notice__scrollable {
/* #ifdef APP-NVUE */
lines: 1;
padding-left: 750rpx;
/* #endif */
/* #ifndef APP-NVUE */
position: absolute;
display: block;
white-space: nowrap;
padding-left: 101%;
animation: notice 10s 0s linear infinite both;
animation-play-state: paused;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
/* #endif */
}
@keyframes notice {
100% {
transform: translate3d(-100%, 0, 0);
}
}
</style>