mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
Resolve "Notification Panel Crash with Comment Notifications Lacking User Sender"
This commit is contained in:
parent
0362330b8e
commit
f3e531bdd9
14 changed files with 75 additions and 32 deletions
changelog/entries/unreleased/bug
premium/web-frontend/modules/baserow_premium
web-frontend/modules
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "bug",
|
||||||
|
"message": "Fix bug causing the notification panel to crash with comment notifications lacking user sender",
|
||||||
|
"issue_number": 2157,
|
||||||
|
"bullet_points": [],
|
||||||
|
"created_at": "2023-12-14"
|
||||||
|
}
|
|
@ -7,7 +7,12 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="rowCommentMentionNotification.title" tag="span">
|
<i18n path="rowCommentMentionNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{ notification.sender.first_name }}</strong>
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
|
<strong v-else
|
||||||
|
><s>{{
|
||||||
|
$t('rowCommentMentionNotification.deletedUser')
|
||||||
|
}}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #row>
|
<template #row>
|
||||||
<strong>{{ notification.data.row_id }}</strong>
|
<strong>{{ notification.data.row_id }}</strong>
|
||||||
|
|
|
@ -7,7 +7,10 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="rowCommentNotification.title" tag="span">
|
<i18n path="rowCommentNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{ notification.sender.first_name }}</strong>
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
|
<strong v-else
|
||||||
|
><s>{{ $t('rowCommentNotification.deletedUser') }}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #row>
|
<template #row>
|
||||||
<strong>{{ notification.data.row_id }}</strong>
|
<strong>{{ notification.data.row_id }}</strong>
|
||||||
|
|
|
@ -54,10 +54,12 @@
|
||||||
"delete": "Delete comment"
|
"delete": "Delete comment"
|
||||||
},
|
},
|
||||||
"rowCommentMentionNotification": {
|
"rowCommentMentionNotification": {
|
||||||
"title": "{sender} mentioned you in row {row} in {table}"
|
"title": "{sender} mentioned you in row {row} in {table}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"rowCommentNotification": {
|
"rowCommentNotification": {
|
||||||
"title": "{sender} posted a comment in row {row} in {table}"
|
"title": "{sender} posted a comment in row {row} in {table}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"trashType": {
|
"trashType": {
|
||||||
"row_comment": "row comment"
|
"row_comment": "row comment"
|
||||||
|
|
|
@ -139,20 +139,23 @@ export default {
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
loaded(newVal, oldVal) {
|
loaded(isLoaded) {
|
||||||
// On receiving many notifications, only the unread count is sent via web
|
// On receiving many notifications, only the unread count is sent via web
|
||||||
// sockets. The store's 'loaded' state resets to false due to sync
|
// sockets and the 'loaded' state resets to false in the store. This
|
||||||
// discrepancies. If the panel is closed, new notifications load on next
|
// watcher ensure to do the correct action if the panel is open and we
|
||||||
// open. If open, to preserve scroll position, a refresh hint displays
|
// receive new notifications.
|
||||||
// instead of reloading.
|
|
||||||
|
|
||||||
if (this.open && oldVal && !newVal) {
|
if (isLoaded || !this.open) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we have no notifications, we can safely load the initial set.
|
||||||
|
// Otherwise, we show a hint that new notifications are available.
|
||||||
if (this.totalCount === 0) {
|
if (this.totalCount === 0) {
|
||||||
this.initialLoad()
|
this.initialLoad()
|
||||||
} else {
|
} else {
|
||||||
this.needRefresh = true
|
this.needRefresh = true
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -167,7 +170,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
show(target) {
|
show(target) {
|
||||||
if (!this.loaded) {
|
if (!this.loaded && !this.loading) {
|
||||||
this.initialLoad()
|
this.initialLoad()
|
||||||
}
|
}
|
||||||
this.open = true
|
this.open = true
|
||||||
|
@ -184,10 +187,6 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.$once('hidden', removeOnClickOutsideHandler)
|
this.$once('hidden', removeOnClickOutsideHandler)
|
||||||
|
|
||||||
if (!this.loaded) {
|
|
||||||
this.initialLoad()
|
|
||||||
}
|
|
||||||
this.$emit('shown')
|
this.$emit('shown')
|
||||||
},
|
},
|
||||||
hide() {
|
hide() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template functional>
|
<template functional>
|
||||||
<div class="notification-panel__notification-user-initials">
|
<div class="notification-panel__notification-user-initials">
|
||||||
{{ props.notification.sender.first_name | nameAbbreviation }}
|
{{ props.notification.sender?.first_name | nameAbbreviation }}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,12 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="workspaceInvitationAcceptedNotification.title" tag="span">
|
<i18n path="workspaceInvitationAcceptedNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{ notification.sender.first_name }}</strong>
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
|
<strong v-else
|
||||||
|
><s>{{
|
||||||
|
$t('workspaceInvitationAcceptedNotification.deletedUser')
|
||||||
|
}}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #workspaceName>
|
<template #workspaceName>
|
||||||
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
||||||
|
|
|
@ -7,7 +7,12 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="workspaceInvitationCreatedNotification.title" tag="span">
|
<i18n path="workspaceInvitationCreatedNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{ notification.sender.first_name }}</strong>
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
|
<strong v-else
|
||||||
|
><s>{{
|
||||||
|
$t('workspaceInvitationCreatedNotification.deletedUser')
|
||||||
|
}}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #workspaceName>
|
<template #workspaceName>
|
||||||
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
||||||
|
|
|
@ -7,7 +7,12 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="workspaceInvitationRejectedNotification.title" tag="span">
|
<i18n path="workspaceInvitationRejectedNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{ notification.sender.first_name }}</strong>
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
|
<strong v-else
|
||||||
|
><s>{{
|
||||||
|
$t('workspaceInvitationRejectedNotification.deletedUser')
|
||||||
|
}}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #workspaceName>
|
<template #workspaceName>
|
||||||
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
<strong>{{ notification.data.invited_to_workspace_name }}</strong>
|
||||||
|
|
|
@ -555,13 +555,16 @@
|
||||||
"notFound": "No users found"
|
"notFound": "No users found"
|
||||||
},
|
},
|
||||||
"workspaceInvitationAcceptedNotification": {
|
"workspaceInvitationAcceptedNotification": {
|
||||||
"title": "{sender} has accepted your invitation to join {workspaceName}"
|
"title": "{sender} has accepted your invitation to join {workspaceName}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"workspaceInvitationRejectedNotification": {
|
"workspaceInvitationRejectedNotification": {
|
||||||
"title": "{sender} has rejected your invitation to join {workspaceName}"
|
"title": "{sender} has rejected your invitation to join {workspaceName}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"workspaceInvitationCreatedNotification": {
|
"workspaceInvitationCreatedNotification": {
|
||||||
"title": "{sender} has invited you to join {workspaceName}"
|
"title": "{sender} has invited you to join {workspaceName}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"versionUpgradeNotification": {
|
"versionUpgradeNotification": {
|
||||||
"title": "{version} is here! Check out what's new."
|
"title": "{version} is here! Check out what's new."
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
import { notifyIf } from '@baserow/modules/core/utils/error'
|
import { notifyIf } from '@baserow/modules/core/utils/error'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
computed: {
|
||||||
|
sender() {
|
||||||
|
return this.notification.sender?.first_name
|
||||||
|
},
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
markAsReadAndHandleClick(evt) {
|
markAsReadAndHandleClick(evt) {
|
||||||
this.$emit('click')
|
this.$emit('click')
|
||||||
|
|
|
@ -171,8 +171,8 @@ export const actions = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async fetchAll({ commit, state }, { workspaceId }) {
|
async fetchAll({ commit, state }, { workspaceId }) {
|
||||||
commit('SET_LOADING', true)
|
|
||||||
commit('SET_LOADED', false)
|
commit('SET_LOADED', false)
|
||||||
|
commit('SET_LOADING', true)
|
||||||
try {
|
try {
|
||||||
const { data } = await notificationService(this.$client).fetchAll(
|
const { data } = await notificationService(this.$client).fetchAll(
|
||||||
workspaceId,
|
workspaceId,
|
||||||
|
|
|
@ -7,9 +7,12 @@
|
||||||
<div class="notification-panel__notification-content-title">
|
<div class="notification-panel__notification-content-title">
|
||||||
<i18n path="collaboratorAddedToRowNotification.title" tag="span">
|
<i18n path="collaboratorAddedToRowNotification.title" tag="span">
|
||||||
<template #sender>
|
<template #sender>
|
||||||
<strong>{{
|
<strong v-if="sender">{{ sender }}</strong>
|
||||||
notification.sender?.first_name || $t('anonymous')
|
<strong v-else
|
||||||
}}</strong>
|
><s>{{
|
||||||
|
$t('collaboratorAddedToRowNotification.deletedUser')
|
||||||
|
}}</s></strong
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template #fieldName>
|
<template #fieldName>
|
||||||
<strong>{{ notification.data.field_name }}</strong>
|
<strong>{{ notification.data.field_name }}</strong>
|
||||||
|
|
|
@ -804,7 +804,8 @@
|
||||||
"notifyUserWhenAdded": "Notify user when added"
|
"notifyUserWhenAdded": "Notify user when added"
|
||||||
},
|
},
|
||||||
"collaboratorAddedToRowNotification": {
|
"collaboratorAddedToRowNotification": {
|
||||||
"title": "{sender} assigned you to {fieldName} in row {rowId} in {tableName}"
|
"title": "{sender} assigned you to {fieldName} in row {rowId} in {tableName}",
|
||||||
|
"deletedUser": "A deleted user"
|
||||||
},
|
},
|
||||||
"formSubmittedNotification": {
|
"formSubmittedNotification": {
|
||||||
"title": "{formName} has been submitted in table {tableName}:",
|
"title": "{formName} has been submitted in table {tableName}:",
|
||||||
|
|
Loading…
Add table
Reference in a new issue