mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
185 lines
5.7 KiB
185 lines
5.7 KiB
<template> |
|
|
|
|
|
<v-menu offset-y :close-on-content-click="false" class=""> |
|
<!-- notification button --> |
|
|
|
<template v-slot:activator="{on}"> |
|
<div class="d-flex align-center"> |
|
<v-badge v-if="GetHasErrors && !GetPendingStatus" color="red" overlap bottom class="ml-4"> |
|
<template v-slot:badge> |
|
<v-icon v-on="on" size="10">mdi-exclamation</v-icon> |
|
</template> |
|
<v-icon v-on="on" size="20">mdi-bell-ring</v-icon> |
|
</v-badge> |
|
<v-icon v-on="on" size="20" v-else class="ml-4">mdi-bell-ring</v-icon> |
|
<v-progress-circular |
|
v-if="GetPendingStatus" |
|
style="position: absolute" |
|
:width="3" |
|
size="40" |
|
color="orange" |
|
indeterminate |
|
></v-progress-circular> |
|
</div> |
|
</template> |
|
|
|
<v-list v-if="notificationList.length" style="max-height: 250px;overflow-y: auto"> |
|
<div v-for="item in notificationList" |
|
:key="item.time"> |
|
<v-list-item> |
|
<v-list-item-avatar size="30"> |
|
<v-progress-circular |
|
v-if="item.status === 'pending'" |
|
:width="3" |
|
size="30" |
|
color="orange" |
|
indeterminate |
|
></v-progress-circular> |
|
<v-icon |
|
v-else |
|
size="20" |
|
:class="notificationIcons[item.status].class" |
|
>{{ notificationIcons[item.status].icon }} |
|
</v-icon> |
|
</v-list-item-avatar> |
|
|
|
<v-list-item-content> |
|
<v-list-item-title> {{ item.type }} |
|
<b>"{{ item.module }}.{{ item.title }}"</b>{{ notificationIcons[item.status].message }} |
|
</v-list-item-title> |
|
<v-list-item-subtitle>{{ timeDifference(item.time) }}</v-list-item-subtitle> |
|
</v-list-item-content> |
|
|
|
|
|
<!-- <v-list-item-content>--> |
|
<!-- <v-list-item-title>--> |
|
<!-- {{ item.message }}--> |
|
<!-- </v-list-item-title>--> |
|
<!-- <v-list-item-subtitle>--> |
|
<!-- {{ new Date(item.time).toTimeString() }}--> |
|
<!-- </v-list-item-subtitle>--> |
|
<!-- </v-list-item-content>--> |
|
</v-list-item> |
|
<v-divider></v-divider> |
|
|
|
</div> |
|
|
|
</v-list> |
|
<v-list> |
|
<v-list-item v-if="notificationList.length" style="min-height:30px"><a class="text-center mb-0" |
|
style="width: 100%;min-width:200px" |
|
@click.prevent="clearNotification">Clear</a> |
|
</v-list-item> |
|
<v-list-item v-else> |
|
<v-list-item-content> |
|
<v-list-item-subtitle class="px-3">No new notifications</v-list-item-subtitle> |
|
</v-list-item-content> |
|
</v-list-item> |
|
</v-list> |
|
</v-menu> |
|
</template> |
|
|
|
<script> |
|
import {mapGetters} from "vuex"; |
|
|
|
export default { |
|
name: "notification", |
|
computed: { |
|
|
|
...mapGetters({ |
|
GetHasErrors: 'notification/GetHasErrors', |
|
GetPendingStatus: 'notification/GetPendingStatus', |
|
}), |
|
notificationList() { |
|
return this.$store.state.notification.list |
|
} |
|
}, |
|
data() { |
|
return { |
|
notificationIcons: { |
|
success: { |
|
message: ' successful', |
|
class: 'success', |
|
icon: 'mdi-check-circle' |
|
}, |
|
error: { |
|
message: ' failed', |
|
class: 'error', |
|
icon: 'mdi-cloud-alert' |
|
}, |
|
pending: { |
|
message: ' pending', |
|
class: 'success', |
|
icon: 'mdi-check-circle' |
|
} |
|
} |
|
} |
|
}, |
|
methods: { |
|
timeDifference(previous) { |
|
let current = Date.now(); |
|
var msPerMinute = 60 * 1000; |
|
var msPerHour = msPerMinute * 60; |
|
var msPerDay = msPerHour * 24; |
|
var msPerMonth = msPerDay * 30; |
|
var msPerYear = msPerDay * 365; |
|
|
|
var elapsed = current - previous; |
|
|
|
if (elapsed < msPerMinute) { |
|
return Math.round(elapsed / 1000) + ' seconds ago'; |
|
} else if (elapsed < msPerHour) { |
|
return Math.round(elapsed / msPerMinute) + ' minutes ago'; |
|
} else if (elapsed < msPerDay) { |
|
return Math.round(elapsed / msPerHour) + ' hours ago'; |
|
} else if (elapsed < msPerMonth) { |
|
return 'approximately ' + Math.round(elapsed / msPerDay) + ' days ago'; |
|
} else if (elapsed < msPerYear) { |
|
return 'approximately ' + Math.round(elapsed / msPerMonth) + ' months ago'; |
|
} else { |
|
return 'approximately ' + Math.round(elapsed / msPerYear) + ' years ago'; |
|
} |
|
}, |
|
clearNotification() { |
|
this.$store.commit('notification/MutListClearFinished'); |
|
} |
|
|
|
|
|
}, filters: { |
|
capitalize: function (value) { |
|
if (!value) return '' |
|
value = value.toString() |
|
return value.charAt(0).toUpperCase() + value.slice(1) |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
|
|
</style> |
|
<!-- |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/ |
|
-->
|
|
|