[improvement] add closeOnPopstate mixin (#3708)

This commit is contained in:
neverland
2019-07-01 16:29:47 +08:00
committed by GitHub
parent 3eb802a689
commit 2df51f5aef
4 changed files with 52 additions and 26 deletions
+3 -1
View File
@@ -7,7 +7,9 @@ type BindEventMixinThis = {
binded: boolean;
};
export function BindEventMixin(handler: Function) {
type BindEventHandler = (bind: Function, isBind: boolean) => void;
export function BindEventMixin(handler: BindEventHandler) {
function bind(this: BindEventMixinThis) {
if (!this.binded) {
handler.call(this, on, true);
+40
View File
@@ -0,0 +1,40 @@
import Vue from 'vue';
import { on, off } from '../utils/dom/event';
import { BindEventMixin } from './bind-event';
export const CloseOnPopstateMixin = Vue.extend({
mixins: [BindEventMixin(function (this: any, bind, isBind) {
this.onPopstate(isBind);
})],
props: {
closeOnPopstate: Boolean
},
data() {
return {
bindStatus: false
};
},
watch: {
closeOnPopstate(val: boolean) {
this.onPopstate(val);
}
},
methods: {
onPopstate(bind: boolean) {
/* istanbul ignore if */
if (this.$isServer) {
return;
}
if (this.bindStatus !== bind) {
this.bindStatus = bind;
const action = bind ? on : off;
action(window, 'popstate', (this as any).close);
}
}
}
});