aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/components/NotificationButton.vue
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-22 23:55:52 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-22 23:55:52 +0100
commitf1dee718da95836ffa5c0985c9e8f5643e0f3f6f (patch)
tree24967a28bcae1fc1e5b08da9f58bcc678ed52937 /src-vue/src/components/NotificationButton.vue
parentcc5ae684221d3165479d7a68556a2bb6fa81cf3a (diff)
downloadFlightCore-f1dee718da95836ffa5c0985c9e8f5643e0f3f6f.tar.gz
FlightCore-f1dee718da95836ffa5c0985c9e8f5643e0f3f6f.zip
dev: Replace with sample Tauri 2.0 project
as a first step to convert FlightCore to Tauri 2.0
Diffstat (limited to 'src-vue/src/components/NotificationButton.vue')
-rw-r--r--src-vue/src/components/NotificationButton.vue81
1 files changed, 0 insertions, 81 deletions
diff --git a/src-vue/src/components/NotificationButton.vue b/src-vue/src/components/NotificationButton.vue
deleted file mode 100644
index 3835032d..00000000
--- a/src-vue/src/components/NotificationButton.vue
+++ /dev/null
@@ -1,81 +0,0 @@
-<template>
- <el-dropdown trigger="click" placement="bottom-end" max-height="280" popper-class="fc_popper">
- <el-badge v-if="notifications.length != 0" :value="notifications.length" :max="9" class="item" type="primary">
- <el-button color="white" icon="BellFilled" circle />
- </el-badge>
- <el-button v-else color="white" icon="BellFilled" circle />
- <template #dropdown>
- <el-dropdown-menu :key="counter">
- <el-alert
- v-if="notifications.length != 0"
- v-for="(notification, i) in notifications"
- :key="i"
- :title="notification.title"
- :description="notification.text"
- :type="notification.type"
- show-icon
- style="width: 300px"
- @close.stop="removeNotification(i)"
- />
- <el-result
- v-else
- icon="success"
- :title="i18n.global.tc('notification.no_new.title')"
- :sub-title="i18n.global.tc('notification.no_new.text')"
- >
- <template #icon>
- </template>
- </el-result>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
-</template>
-
-<script lang="ts">
-import { defineComponent } from 'vue';
-import {Notification} from '../plugins/modules/notifications';
-import {i18n} from "../main";
-
-export default defineComponent({
- name: 'NotificationButton',
- data: () => ({
- // This variable is used as a key for the dropdown menu, so we can force it to refresh when a item is deleted.
- counter: 0
- }),
- computed: {
- i18n() {
- return i18n
- },
- notifications(): Notification[] {
- return this.$store.state.notifications.notifications;
- }
- },
- methods: {
- removeNotification(index: number) {
- this.$store.commit('removeNotification', index);
- // By refreshing the notifications list, we ensure the first notification get the index 0, ensuring this list
- // is synchronized with the store list.
- this.counter += 1;
- }
- }
-})
-</script>
-
-<style scoped>
-.el-dropdown {
- height: 100%;
- max-height: 300px;
-}
-
-.el-button {
- margin: auto 25px auto 0 !important;
-}
-
-.el-alert {
- margin: 5px 10px 5px 5px;
-}
-
-.el-badge:deep(sup) {
- transform: translate(-10px, 5px) !important;
-}
-</style>