Yao b42d1e8e8f
[bugfix] 修复 gulp 插件引起的组件编译后代码异常的问题 (#209)
* add eslint

* eslint 校验

* reset gulp build config
2018-04-30 23:08:58 +08:00

75 lines
1.3 KiB
JavaScript

const FONT_COLOR = '#fff';
const BG_COLOR = '#e64340';
Component({
properties: {
content: String,
color: {
type: String,
value: FONT_COLOR
},
backgroundColor: {
type: String,
value: BG_COLOR
},
isShow: {
type: Boolean,
value: false
},
duration: {
type: Number,
value: 3000
}
},
methods: {
show() {
const { duration } = this.data;
this._timer && clearTimeout(this._timer);
this.setData({
isShow: true
});
if (duration > 0 && duration !== Infinity) {
this._timer = setTimeout(() => {
this.hide();
}, duration);
}
},
hide() {
this._timer = clearTimeout(this._timer);
this.setData({
isShow: false
});
}
}
});
function Toptips(options = {}) {
const pages = getCurrentPages();
const ctx = pages[pages.length - 1];
const defaultOptions = {
selector: '#zan-toptips',
duration: 3000
};
options = Object.assign(defaultOptions, parseParam(options));
const $toptips = ctx.selectComponent(options.selector);
delete options.selector;
$toptips.setData({
...options
});
$toptips && $toptips.show();
}
function parseParam(params) {
return typeof params === 'object' ? params : { content: params };
}
module.exports = Toptips;