Sharkey/src/client/app/mobile/views/components/notify.vue

74 lines
1.2 KiB
Vue
Raw Normal View History

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