2018-02-15 06:29:59 -06:00
|
|
|
<template>
|
2018-09-04 23:47:26 -05:00
|
|
|
<div class="mk-notify" :class="pos">
|
2018-09-03 21:34:36 -05:00
|
|
|
<div>
|
|
|
|
<mk-notification-preview :notification="notification"/>
|
|
|
|
</div>
|
2018-02-15 06:29:59 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-01-17 22:06:11 -06:00
|
|
|
import anime from 'animejs';
|
2018-02-15 06:29:59 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['notification'],
|
2018-09-04 23:47:26 -05:00
|
|
|
computed: {
|
|
|
|
pos() {
|
|
|
|
return this.$store.state.device.mobileNotificationPosition;
|
|
|
|
}
|
|
|
|
},
|
2018-02-15 06:29:59 -06:00
|
|
|
mounted() {
|
2018-02-18 03:40:24 -06:00
|
|
|
this.$nextTick(() => {
|
2018-02-15 06:29:59 -06:00
|
|
|
anime({
|
|
|
|
targets: this.$el,
|
2018-09-04 23:47:26 -05:00
|
|
|
[this.pos]: '0px',
|
2018-02-15 06:29:59 -06:00
|
|
|
duration: 500,
|
|
|
|
easing: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
anime({
|
|
|
|
targets: this.$el,
|
2018-09-04 23:47:26 -05:00
|
|
|
[this.pos]: `-${this.$el.offsetHeight}px`,
|
2018-02-15 06:29:59 -06:00
|
|
|
duration: 500,
|
|
|
|
easing: 'easeOutQuad',
|
2018-09-15 07:53:04 -05:00
|
|
|
complete: () => this.destroyDom()
|
2018-02-15 06:29:59 -06:00
|
|
|
});
|
|
|
|
}, 6000);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-notify
|
2018-09-04 05:19:51 -05:00
|
|
|
$height = 78px
|
|
|
|
|
2018-02-15 06:29:59 -06:00
|
|
|
position fixed
|
2018-09-13 22:39:11 -05:00
|
|
|
z-index 10000
|
2018-02-15 06:29:59 -06:00
|
|
|
left 0
|
2018-09-03 21:34:36 -05:00
|
|
|
right 0
|
2018-02-15 06:29:59 -06:00
|
|
|
width 100%
|
2018-09-03 21:34:36 -05:00
|
|
|
max-width 500px
|
2018-09-04 05:19:51 -05:00
|
|
|
height $height
|
2018-09-03 21:34:36 -05:00
|
|
|
margin 0 auto
|
|
|
|
padding 8px
|
2018-02-15 06:29:59 -06:00
|
|
|
pointer-events none
|
2018-09-03 21:34:36 -05:00
|
|
|
font-size 80%
|
|
|
|
|
2018-09-04 23:47:26 -05:00
|
|
|
&.bottom
|
|
|
|
bottom -($height)
|
|
|
|
|
|
|
|
&.top
|
|
|
|
top -($height)
|
|
|
|
|
2018-09-03 21:34:36 -05:00
|
|
|
> div
|
|
|
|
height 100%
|
|
|
|
-webkit-backdrop-filter blur(2px)
|
|
|
|
backdrop-filter blur(2px)
|
|
|
|
background-color rgba(#000, 0.5)
|
2018-09-04 05:19:51 -05:00
|
|
|
border-radius 7px
|
|
|
|
overflow hidden
|
2018-02-15 06:29:59 -06:00
|
|
|
|
|
|
|
</style>
|