* N8N-3057 Fixed Keyboard shortcuts no longer working on / Fixed callDebounced function * N8N-3057 Update Debounce Function * N8N-3057 Refactor callDebounce function * N8N-3057 Update Dobounce Function
101 lines
2.0 KiB
Vue
101 lines
2.0 KiB
Vue
<template>
|
|
<span>
|
|
<slot v-bind:bp="bp" v-bind:value="value" />
|
|
</span>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {
|
|
BREAKPOINT_SM,
|
|
BREAKPOINT_MD,
|
|
BREAKPOINT_LG,
|
|
BREAKPOINT_XL,
|
|
} from "@/constants";
|
|
|
|
/**
|
|
* matching element.io https://element.eleme.io/#/en-US/component/layout#col-attributes
|
|
* xs < 768
|
|
* sm >= 768
|
|
* md >= 992
|
|
* lg >= 1200
|
|
* xl >= 1920
|
|
*/
|
|
|
|
import mixins from "vue-typed-mixins";
|
|
import { genericHelpers } from "@/components/mixins/genericHelpers";
|
|
|
|
export default mixins(genericHelpers).extend({
|
|
name: "BreakpointsObserver",
|
|
props: [
|
|
"valueXS",
|
|
"valueXL",
|
|
"valueLG",
|
|
"valueMD",
|
|
"valueSM",
|
|
"valueDefault",
|
|
],
|
|
data() {
|
|
return {
|
|
width: window.innerWidth,
|
|
};
|
|
},
|
|
created() {
|
|
window.addEventListener("resize", this.onResize);
|
|
},
|
|
beforeDestroy() {
|
|
window.removeEventListener("resize", this.onResize);
|
|
},
|
|
methods: {
|
|
onResize() {
|
|
this.callDebounced("onResizeEnd", { debounceTime: 50 });
|
|
},
|
|
onResizeEnd() {
|
|
this.$data.width = window.innerWidth;
|
|
},
|
|
},
|
|
computed: {
|
|
bp(): string {
|
|
if (this.$data.width < BREAKPOINT_SM) {
|
|
return "XS";
|
|
}
|
|
|
|
if (this.$data.width >= BREAKPOINT_XL) {
|
|
return "XL";
|
|
}
|
|
|
|
if (this.$data.width >= BREAKPOINT_LG) {
|
|
return "LG";
|
|
}
|
|
|
|
if (this.$data.width >= BREAKPOINT_MD) {
|
|
return "MD";
|
|
}
|
|
|
|
return "SM";
|
|
},
|
|
value(): any | undefined { // tslint:disable-line:no-any
|
|
if (this.$props.valueXS !== undefined && this.$data.width < BREAKPOINT_SM) {
|
|
return this.$props.valueXS;
|
|
}
|
|
|
|
if (this.$props.valueXL !== undefined && this.$data.width >= BREAKPOINT_XL) {
|
|
return this.$props.valueXL;
|
|
}
|
|
|
|
if (this.$props.valueLG !== undefined && this.$data.width >= BREAKPOINT_LG) {
|
|
return this.$props.valueLG;
|
|
}
|
|
|
|
if (this.$props.valueMD !== undefined && this.$data.width >= BREAKPOINT_MD) {
|
|
return this.$props.valueMD;
|
|
}
|
|
|
|
if (this.$props.valueSM !== undefined) {
|
|
return this.$props.valueSM;
|
|
}
|
|
|
|
return this.$props.valueDefault;
|
|
},
|
|
},
|
|
});
|
|
</script> |