import { createNamespace, isDef } from '../utils';
import { doubleRaf, raf } from '../utils/dom/raf';
import { BindEventMixin } from '../mixins/bind-event';
import Icon from '../icon';
const [createComponent, bem] = createNamespace('notice-bar');
export default createComponent({
mixins: [
BindEventMixin(function (bind) {
// fix cache issues with forwards and back history in safari
// see: https://guwii.com/cache-issues-with-forwards-and-back-history-in-safari/
bind(window, 'pageshow', this.reset);
}),
],
inject: {
vanPopup: {
default: null,
},
},
props: {
text: String,
mode: String,
color: String,
leftIcon: String,
wrapable: Boolean,
background: String,
scrollable: {
type: Boolean,
default: null,
},
delay: {
type: [Number, String],
default: 1,
},
speed: {
type: [Number, String],
default: 60,
},
},
data() {
return {
show: true,
offset: 0,
duration: 0,
wrapWidth: 0,
contentWidth: 0,
};
},
watch: {
scrollable: 'reset',
text: {
handler: 'reset',
immediate: true,
},
},
created() {
// https://github.com/youzan/vant/issues/8634
if (this.vanPopup) {
this.vanPopup.onReopen(this.reset);
}
},
activated() {
this.reset();
},
methods: {
onClickIcon(event) {
if (this.mode === 'closeable') {
this.show = false;
this.$emit('close', event);
}
},
onTransitionEnd() {
this.offset = this.wrapWidth;
this.duration = 0;
// wait for Vue to render offset
// using nextTick won't work in iOS14
raf(() => {
// use double raf to ensure animation can start
doubleRaf(() => {
this.offset = -this.contentWidth;
this.duration = (this.contentWidth + this.wrapWidth) / this.speed;
this.$emit('replay');
});
});
},
// not an exposed-api, but may used by some users
start() {
this.reset();
},
// @exposed-api
reset() {
const delay = isDef(this.delay) ? this.delay * 1000 : 0;
this.offset = 0;
this.duration = 0;
this.wrapWidth = 0;
this.contentWidth = 0;
clearTimeout(this.startTimer);
this.startTimer = setTimeout(() => {
const { wrap, content } = this.$refs;
if (!wrap || !content || this.scrollable === false) {
return;
}
const wrapWidth = wrap.getBoundingClientRect().width;
const contentWidth = content.getBoundingClientRect().width;
if (this.scrollable || contentWidth > wrapWidth) {
doubleRaf(() => {
this.offset = -contentWidth;
this.duration = contentWidth / this.speed;
this.wrapWidth = wrapWidth;
this.contentWidth = contentWidth;
});
}
}, delay);
},
},
render() {
const { slots, mode, leftIcon, onClickIcon } = this;
const barStyle = {
color: this.color,
background: this.background,
};
const contentStyle = {
transform: this.offset ? `translateX(${this.offset}px)` : '',
transitionDuration: this.duration + 's',
};
function LeftIcon() {
const slot = slots('left-icon');
if (slot) {
return slot;
}
if (leftIcon) {
return