mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 09:07:07 +00:00
- Rename `Project` => `Base` - Rename `Base` => `Source` - Remove `db` from data/meta api endpoints - Add backward compatibility for old apis - Migrations for renaming table and columns Signed-off-by: Pranav C <pranavxc@gmail.com>
39 lines
873 B
Vue
39 lines
873 B
Vue
<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">
|
|
View
|
|
<strong>{{ item.body.title }}</strong>
|
|
{{ action }} successfully
|
|
</div>
|
|
</NotificationItemWrapper>
|
|
</template>
|