storj/web/satellite/src/components/notifications/NotificationArea.vue

45 lines
1.2 KiB
Vue
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
<template>
<div id="notificationArea" class="notification-container" v-if="notifications.length > 0" >
<Notification v-for="notification in notifications" :notification="notification" :key="notification.id" />
</div>
</template>
<script lang="ts">
2019-09-09 11:33:39 +01:00
import { Component, Vue } from 'vue-property-decorator';
2019-09-09 11:33:39 +01:00
import Notification from '@/components/notifications/Notification.vue';
import { DelayedNotification } from '@/types/DelayedNotification';
@Component({
components: {
Notification,
},
2019-09-09 11:33:39 +01:00
})
export default class NotificationArea extends Vue {
public get notifications(): DelayedNotification[] {
return this.$store.state.notificationsModule.notificationQueue;
}
2019-09-09 11:33:39 +01:00
}
</script>
<style scoped lang="scss">
.notification-container {
width: 417px;
background-color: transparent;
display: flex;
flex-direction: column;
position: fixed;
top: 114px;
right: 17px;
align-items: flex-end;
justify-content: space-between;
border-radius: 12px;
z-index: 9999;
overflow: hidden;
}
</style>