133 lines
2.5 KiB
Vue
133 lines
2.5 KiB
Vue
<template>
|
|
<div class="notifications" v-hotkey.global="keymap">
|
|
<button :data-active="isOpen" @click="toggle" title="%i18n:@title%">
|
|
%fa:R bell%<template v-if="hasUnreadNotification">%fa:circle%</template>
|
|
</button>
|
|
<div class="pop" v-if="isOpen">
|
|
<mk-notifications/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import contains from '../../../common/scripts/contains';
|
|
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
isOpen: false
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
hasUnreadNotification(): boolean {
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadNotification;
|
|
},
|
|
|
|
keymap(): any {
|
|
return {
|
|
'shift+n': this.toggle
|
|
};
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
toggle() {
|
|
this.isOpen ? this.close() : this.open();
|
|
},
|
|
|
|
open() {
|
|
this.isOpen = true;
|
|
Array.from(document.querySelectorAll('body *')).forEach(el => {
|
|
el.addEventListener('mousedown', this.onMousedown);
|
|
});
|
|
},
|
|
|
|
close() {
|
|
this.isOpen = false;
|
|
Array.from(document.querySelectorAll('body *')).forEach(el => {
|
|
el.removeEventListener('mousedown', this.onMousedown);
|
|
});
|
|
},
|
|
|
|
onMousedown(e) {
|
|
e.preventDefault();
|
|
if (!contains(this.$el, e.target) && this.$el != e.target) this.close();
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.notifications
|
|
> button
|
|
display block
|
|
margin 0
|
|
padding 0
|
|
width 32px
|
|
color var(--desktopHeaderFg)
|
|
border none
|
|
background transparent
|
|
cursor pointer
|
|
|
|
*
|
|
pointer-events none
|
|
|
|
&:hover
|
|
&[data-active='true']
|
|
color var(--desktopHeaderHoverFg)
|
|
|
|
> [data-fa].bell
|
|
font-size 1.2em
|
|
line-height 48px
|
|
|
|
> [data-fa].circle
|
|
margin-left -5px
|
|
vertical-align super
|
|
font-size 10px
|
|
color var(--primary)
|
|
|
|
> .pop
|
|
$bgcolor = var(--face)
|
|
display block
|
|
position absolute
|
|
top 56px
|
|
right -72px
|
|
width 300px
|
|
background $bgcolor
|
|
border-radius 4px
|
|
box-shadow 0 1px 4px rgba(#000, 0.25)
|
|
|
|
&:before
|
|
content ""
|
|
pointer-events none
|
|
display block
|
|
position absolute
|
|
top -28px
|
|
right 74px
|
|
border-top solid 14px transparent
|
|
border-right solid 14px transparent
|
|
border-bottom solid 14px rgba(#000, 0.1)
|
|
border-left solid 14px transparent
|
|
|
|
&:after
|
|
content ""
|
|
pointer-events none
|
|
display block
|
|
position absolute
|
|
top -27px
|
|
right 74px
|
|
border-top solid 14px transparent
|
|
border-right solid 14px transparent
|
|
border-bottom solid 14px $bgcolor
|
|
border-left solid 14px transparent
|
|
|
|
> .mk-notifications
|
|
max-height 350px
|
|
font-size 1rem
|
|
overflow auto
|
|
|
|
</style>
|