mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
67 lines
1.6 KiB
Vue
67 lines
1.6 KiB
Vue
<template>
|
|
<nuxt-link
|
|
class="notification-panel__notification-link"
|
|
:to="url"
|
|
@click.native="markAsReadAndHandleClick"
|
|
>
|
|
<div class="notification-panel__notification-content-title">
|
|
<i18n path="userMentionInRichTextFieldNotification.title" tag="span">
|
|
<template #sender>
|
|
<strong v-if="sender">{{ sender }}</strong>
|
|
<strong v-else
|
|
><s>{{
|
|
$t('userMentionInRichTextFieldNotification.deletedUser')
|
|
}}</s></strong
|
|
>
|
|
</template>
|
|
<template #fieldName>
|
|
<strong>{{ notification.data.field_name }}</strong>
|
|
</template>
|
|
<template #rowId>
|
|
<strong>{{
|
|
notification.data.row_name || notification.data.row_id
|
|
}}</strong>
|
|
</template>
|
|
<template #tableName>
|
|
<strong>{{ notification.data.table_name }}</strong>
|
|
</template>
|
|
</i18n>
|
|
</div>
|
|
</nuxt-link>
|
|
</template>
|
|
|
|
<script>
|
|
import notificationContent from '@baserow/modules/core/mixins/notificationContent'
|
|
|
|
export default {
|
|
name: 'UserMentionInRichTextFieldNotification',
|
|
mixins: [notificationContent],
|
|
props: {
|
|
notification: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
params() {
|
|
return {
|
|
databaseId: this.notification.data.database_id,
|
|
tableId: this.notification.data.table_id,
|
|
rowId: this.notification.data.row_id,
|
|
}
|
|
},
|
|
url() {
|
|
return {
|
|
name: 'database-table-row',
|
|
params: this.params,
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick() {
|
|
this.$emit('close-panel')
|
|
},
|
|
},
|
|
}
|
|
</script>
|