mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:03:09 +02:00
142 lines
2.4 KiB
Vue
142 lines
2.4 KiB
Vue
<template>
|
|
<div class="mk-contextmenu" @contextmenu.prevent="() => {}">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import * as anime from 'animejs';
|
|
import contains from '../../../common/scripts/contains';
|
|
|
|
export default Vue.extend({
|
|
props: ['x', 'y'],
|
|
mounted() {
|
|
document.querySelectorAll('body *').forEach(el => {
|
|
el.addEventListener('mousedown', this.onMousedown);
|
|
});
|
|
|
|
this.$el.style.display = 'block';
|
|
this.$el.style.left = this.x + 'px';
|
|
this.$el.style.top = this.y + 'px';
|
|
|
|
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;
|
|
},
|
|
close() {
|
|
Array.from(document.querySelectorAll('body *')).forEach(el => {
|
|
el.removeEventListener('mousedown', this.onMousedown);
|
|
});
|
|
|
|
this.$emit('closed');
|
|
this.$destroy();
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.mk-contextmenu
|
|
$width = 240px
|
|
$item-height = 38px
|
|
$padding = 10px
|
|
|
|
display none
|
|
position fixed
|
|
top 0
|
|
left 0
|
|
z-index 4096
|
|
width $width
|
|
font-size 0.8em
|
|
background #fff
|
|
border-radius 0 4px 4px 4px
|
|
box-shadow 2px 2px 8px rgba(0, 0, 0, 0.2)
|
|
opacity 0
|
|
|
|
ul
|
|
display block
|
|
margin 0
|
|
padding $padding 0
|
|
list-style none
|
|
|
|
li
|
|
display block
|
|
|
|
&.separator
|
|
margin-top $padding
|
|
padding-top $padding
|
|
border-top solid 1px #eee
|
|
|
|
&.has-child
|
|
> p
|
|
cursor default
|
|
|
|
> [data-fa]:last-child
|
|
position absolute
|
|
top 0
|
|
right 8px
|
|
line-height $item-height
|
|
|
|
&:hover > ul
|
|
visibility visible
|
|
|
|
&:active
|
|
> p, a
|
|
background $theme-color
|
|
|
|
> p, a
|
|
display block
|
|
z-index 1
|
|
margin 0
|
|
padding 0 32px 0 38px
|
|
line-height $item-height
|
|
color #868C8C
|
|
text-decoration none
|
|
cursor pointer
|
|
|
|
&:hover
|
|
text-decoration none
|
|
|
|
*
|
|
pointer-events none
|
|
|
|
> i
|
|
width 28px
|
|
margin-left -28px
|
|
text-align center
|
|
|
|
&:hover
|
|
> p, a
|
|
text-decoration none
|
|
background $theme-color
|
|
color $theme-color-foreground
|
|
|
|
&:active
|
|
> p, a
|
|
text-decoration none
|
|
background darken($theme-color, 10%)
|
|
color $theme-color-foreground
|
|
|
|
li > ul
|
|
visibility hidden
|
|
position absolute
|
|
top 0
|
|
left $width
|
|
margin-top -($padding)
|
|
width $width
|
|
background #fff
|
|
border-radius 0 4px 4px 4px
|
|
box-shadow 2px 2px 8px rgba(0, 0, 0, 0.2)
|
|
transition visibility 0s linear 0.2s
|
|
|
|
</style>
|