summaryrefslogtreecommitdiff
path: root/src/client/components/toast.vue
blob: fefe91e3bd6e137050f9b7e147371864138198cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<template>
<div class="mk-toast">
	<transition name="notification-slide" appear @after-leave="() => { destroyDom(); }">
		<x-notification :notification="notification" class="notification" v-if="show"/>
	</transition>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import XNotification from './notification.vue';

export default Vue.extend({
	components: {
		XNotification
	},
	props: {
		notification: {
			type: Object,
			required: true
		}
	},
	data() {
		return {
			show: true
		};
	},
	mounted() {
		setTimeout(() => {
			this.show = false;
		}, 6000);
	}
});
</script>

<style lang="scss" scoped>
.notification-slide-enter-active, .notification-slide-leave-active {
	transition: opacity 0.3s, transform 0.3s !important;
}
.notification-slide-enter, .notification-slide-leave-to {
	opacity: 0;
	transform: translateX(-250px);
}

.mk-toast {
	position: fixed;
	z-index: 10000;
	left: 0;
	width: 250px;
	top: 32px;
	padding: 0 32px;
	pointer-events: none;

	@media (max-width: 700px) {
		top: initial;
		bottom: 112px;
		padding: 0 16px;
	}

	@media (max-width: 500px) {
		bottom: 92px;
		padding: 0 8px;
	}

	> .notification {
		height: 100%;
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		background-color: var(--toastBg);
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
		border-radius: 8px;
		color: var(--toastFg);
		overflow: hidden;
	}
}
</style>