mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
212 lines
4.6 KiB
JavaScript
212 lines
4.6 KiB
JavaScript
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 <Icon class={bem('left-icon')} name={leftIcon} />;
|
|
}
|
|
}
|
|
|
|
function RightIcon() {
|
|
const slot = slots('right-icon');
|
|
|
|
if (slot) {
|
|
return slot;
|
|
}
|
|
|
|
let iconName;
|
|
if (mode === 'closeable') {
|
|
iconName = 'cross';
|
|
} else if (mode === 'link') {
|
|
iconName = 'arrow';
|
|
}
|
|
|
|
if (iconName) {
|
|
return (
|
|
<Icon
|
|
class={bem('right-icon')}
|
|
name={iconName}
|
|
onClick={onClickIcon}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div
|
|
role="alert"
|
|
vShow={this.show}
|
|
class={bem({ wrapable: this.wrapable })}
|
|
style={barStyle}
|
|
onClick={(event) => {
|
|
this.$emit('click', event);
|
|
}}
|
|
>
|
|
{LeftIcon()}
|
|
<div ref="wrap" class={bem('wrap')} role="marquee">
|
|
<div
|
|
ref="content"
|
|
class={[
|
|
bem('content'),
|
|
{ 'van-ellipsis': this.scrollable === false && !this.wrapable },
|
|
]}
|
|
style={contentStyle}
|
|
onTransitionend={this.onTransitionEnd}
|
|
>
|
|
{this.slots() || this.text}
|
|
</div>
|
|
</div>
|
|
{RightIcon()}
|
|
</div>
|
|
);
|
|
},
|
|
});
|