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.
38 lines
880 B
38 lines
880 B
<script setup lang="ts"> |
|
import type { ProjectEventType } from 'nocodb-sdk' |
|
import { AppEvents } from 'nocodb-sdk' |
|
|
|
const props = defineProps<{ |
|
item: ProjectEventType |
|
}>() |
|
|
|
const item = toRef(props, 'item') |
|
|
|
const { navigateToProject } = useGlobal() |
|
|
|
const action = computed(() => { |
|
switch (item.value.type) { |
|
case AppEvents.VIEW_CREATE: |
|
return 'created' |
|
case AppEvents.VIEW_UPDATE: |
|
return 'updated' |
|
case AppEvents.VIEW_DELETE: |
|
return 'deleted' |
|
} |
|
}) |
|
|
|
const onClick = () => { |
|
if (item.value.type === AppEvents.VIEW_DELETE) return |
|
navigateToProject({ baseId: item.value.body.id }) |
|
} |
|
</script> |
|
|
|
<template> |
|
<NotificationItemWrapper :item="item" @click="onClick"> |
|
<div class="text-xs gap-2"> |
|
Shared view |
|
<strong>{{ item.body.title }}</strong> |
|
{{ action }} successfully |
|
</div> |
|
</NotificationItemWrapper> |
|
</template>
|
|
|