Sharkey/src/client/app/desktop/views/components/context-menu.vue

97 lines
1.8 KiB
Vue
Raw Normal View History

2018-02-18 05:35:18 +02:00
<template>
2018-06-08 05:46:45 +03:00
<div class="context-menu" @contextmenu.prevent="() => {}">
2018-02-20 18:39:51 +02:00
<x-menu :menu="menu" @x="click"/>
2018-02-18 05:35:18 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import * as anime from 'animejs';
import contains from '../../../common/scripts/contains';
2018-02-20 18:39:51 +02:00
import XMenu from './context-menu.menu.vue';
2018-02-18 05:35:18 +02:00
export default Vue.extend({
2018-02-19 09:18:18 +02:00
components: {
2018-02-20 18:39:51 +02:00
XMenu
2018-02-19 09:18:18 +02:00
},
2018-02-18 05:35:18 +02:00
props: ['x', 'y', 'menu'],
mounted() {
this.$nextTick(() => {
2018-06-08 05:46:45 +03:00
const width = this.$el.offsetWidth;
const height = this.$el.offsetHeight;
let x = this.x;
let y = this.y;
if (x + width > window.innerWidth) {
x = window.innerWidth - width;
}
if (y + height > window.innerHeight) {
y = window.innerHeight - height;
}
this.$el.style.left = x + 'px';
this.$el.style.top = y + 'px';
2018-02-18 05:35:18 +02:00
Array.from(document.querySelectorAll('body *')).forEach(el => {
el.addEventListener('mousedown', this.onMousedown);
});
this.$el.style.display = 'block';
anime({
targets: this.$el,
opacity: [0, 1],
duration: 100,
easing: 'linear'
});
});
},
methods: {
onMousedown(e) {
e.preventDefault();
if (!contains(this.$el, e.target) && (this.$el != e.target)) this.close();
return false;
},
click(item) {
2018-06-08 05:46:45 +03:00
if (item.action) item.action();
2018-02-18 05:35:18 +02:00
this.close();
},
close() {
Array.from(document.querySelectorAll('body *')).forEach(el => {
el.removeEventListener('mousedown', this.onMousedown);
});
this.$emit('closed');
this.$destroy();
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-20 01:45:37 +03:00
root(isDark)
2018-02-18 05:35:18 +02:00
$width = 240px
$item-height = 38px
$padding = 10px
position fixed
top 0
left 0
z-index 4096
width $width
font-size 0.8em
2018-04-20 01:45:37 +03:00
background isDark ? #282c37 : #fff
2018-02-18 05:35:18 +02:00
border-radius 0 4px 4px 4px
2018-04-29 02:51:17 +03:00
box-shadow 2px 2px 8px rgba(#000, 0.2)
2018-02-18 05:35:18 +02:00
opacity 0
2018-04-20 01:45:37 +03:00
.context-menu[data-darkmode]
root(true)
.context-menu:not([data-darkmode])
root(false)
2018-02-18 05:35:18 +02:00
</style>