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.
478 lines
14 KiB
478 lines
14 KiB
<script lang="ts" setup> |
|
import { Empty } from 'ant-design-vue' |
|
import type { BaseType } from 'nocodb-sdk' |
|
import { ProjectRoles, ProjectStatus, WorkspaceUserRoles, timeAgo } from 'nocodb-sdk' |
|
import { nextTick } from '@vue/runtime-core' |
|
|
|
const workspaceStore = useWorkspace() |
|
|
|
const { updateProjectTitle } = workspaceStore |
|
|
|
const { activePage } = storeToRefs(workspaceStore) |
|
|
|
const basesStore = useBases() |
|
|
|
const { basesList, isProjectsLoading } = storeToRefs(basesStore) |
|
|
|
const { navigateToProject } = useGlobal() |
|
|
|
const { $e } = useNuxtApp() |
|
|
|
const { isUIAllowed } = useRoles() |
|
|
|
const showProjectDeleteModal = ref(false) |
|
|
|
const toBeDeletedProjectId = ref<string | undefined>() |
|
|
|
const openProject = async (base: BaseType) => { |
|
navigateToProject({ |
|
baseId: base.id!, |
|
type: base.type as NcProjectType, |
|
}) |
|
} |
|
|
|
const roleAlias = { |
|
[WorkspaceUserRoles.OWNER]: 'Workspace Owner', |
|
[WorkspaceUserRoles.VIEWER]: 'Workspace Viewer', |
|
[WorkspaceUserRoles.CREATOR]: 'Workspace Creator', |
|
[WorkspaceUserRoles.EDITOR]: 'Workspace Editor', |
|
[WorkspaceUserRoles.COMMENTER]: 'Workspace Commenter', |
|
[ProjectRoles.CREATOR]: 'Base Creator', |
|
[ProjectRoles.EDITOR]: 'Base Editor', |
|
[ProjectRoles.VIEWER]: 'Base Viewer', |
|
[ProjectRoles.COMMENTER]: 'Base Commenter', |
|
[ProjectRoles.OWNER]: 'Base Owner', |
|
} |
|
|
|
const deleteProject = (base: BaseType) => { |
|
$e('c:base:delete') |
|
|
|
showProjectDeleteModal.value = true |
|
toBeDeletedProjectId.value = base.id |
|
} |
|
|
|
const renameInput = ref<HTMLInputElement>() |
|
|
|
const enableEdit = (index: number) => { |
|
basesList.value![index]!.temp_title = basesList.value![index].title |
|
basesList.value![index]!.edit = true |
|
nextTick(() => { |
|
renameInput.value?.focus() |
|
renameInput.value?.select() |
|
}) |
|
} |
|
const disableEdit = (index: number) => { |
|
basesList.value![index]!.temp_title = undefined |
|
basesList.value![index]!.edit = false |
|
} |
|
|
|
const customRow = (record: BaseType) => ({ |
|
onClick: async () => { |
|
openProject(record) |
|
|
|
$e('a:base:open') |
|
}, |
|
class: ['group'], |
|
}) |
|
|
|
const columns = computed(() => [ |
|
{ |
|
title: 'Base Name', |
|
dataIndex: 'title', |
|
sorter: { |
|
compare: (a, b) => a.title?.localeCompare(b.title), |
|
multiple: 5, |
|
}, |
|
}, |
|
...(isEeUI && activePage.value !== 'workspace' |
|
? [ |
|
{ |
|
title: 'Workspace Name', |
|
dataIndex: 'workspace_title', |
|
sorter: { |
|
compare: (a, b) => a.workspace_title?.localeCompare(b.workspace_title), |
|
multiple: 4, |
|
}, |
|
}, |
|
] |
|
: []), |
|
{ |
|
title: 'Role', |
|
dataIndex: 'workspace_role', |
|
sorter: { |
|
compare: (a, b) => a - b, |
|
multiple: 1, |
|
}, |
|
}, |
|
{ |
|
title: 'Last Opened', |
|
dataIndex: 'last_accessed', |
|
sorter: { |
|
compare: (a, b) => new Date(b.last_accessed) - new Date(a.last_accessed), |
|
multiple: 2, |
|
}, |
|
}, |
|
|
|
{ |
|
title: '', |
|
dataIndex: 'id', |
|
hidden: true, |
|
width: '24px', |
|
style: { |
|
padding: 0, |
|
}, |
|
}, |
|
]) |
|
|
|
const isMoveDlgOpen = ref(false) |
|
const selectedProjectToMove = ref() |
|
|
|
const workspaceMoveProjectOnSuccess = async (workspaceId: string) => { |
|
isMoveDlgOpen.value = false |
|
navigateTo({ |
|
query: { |
|
workspaceId, |
|
page: 'workspace', |
|
}, |
|
}) |
|
} |
|
|
|
const isDuplicateDlgOpen = ref(false) |
|
|
|
const selectedProjectToDuplicate = ref() |
|
|
|
const duplicateProject = (base: BaseType) => { |
|
selectedProjectToDuplicate.value = base |
|
isDuplicateDlgOpen.value = true |
|
} |
|
|
|
let clickCount = 0 |
|
|
|
let timer: any = null |
|
|
|
const delay = 250 |
|
|
|
function onProjectTitleClick(index: number) { |
|
clickCount++ |
|
if (clickCount === 1) { |
|
timer = setTimeout(function () { |
|
openProject(basesList.value![index]) |
|
clickCount = 0 |
|
}, delay) |
|
} else { |
|
clearTimeout(timer) |
|
enableEdit(index) |
|
clickCount = 0 |
|
} |
|
} |
|
|
|
const setColor = async (color: string, base: BaseType) => { |
|
try { |
|
const meta = { |
|
...parseProp(base.meta), |
|
iconColor: color, |
|
} |
|
|
|
basesStore.updateProject(base.id!, { meta: JSON.stringify(meta) }) |
|
|
|
$e('a:base:icon:color:navdraw', { iconColor: color }) |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<div> |
|
<div |
|
v-if="!basesList || basesList?.length === 0 || isProjectsLoading" |
|
class="w-full flex flex-row justify-center items-center" |
|
style="height: calc(100vh - 16rem)" |
|
> |
|
<div v-if="isProjectsLoading"> |
|
<GeneralLoader size="xlarge" /> |
|
</div> |
|
<div v-else class="flex flex-col items-center gap-y-5"> |
|
<MaterialSymbolsInboxOutlineRounded |
|
class="text-2xl text-primary" |
|
:class="{ |
|
'h-8 w-8': activePage === 'workspace', |
|
'h-12 w-12': activePage !== 'workspace', |
|
}" |
|
/> |
|
<template v-if="activePage === 'workspace'"> |
|
<div class="font-medium text-xl">Welcome to nocoDB</div> |
|
<div class="font-medium">Create your first Base!</div> |
|
</template> |
|
<template v-else-if="activePage === 'recent'"> |
|
<div class="font-medium text-lg">No Recent Projects</div> |
|
</template> |
|
<template v-else-if="activePage === 'starred'"> |
|
<div class="font-medium text-lg">No Starred Projects</div> |
|
</template> |
|
<template v-else-if="activePage === 'shared'"> |
|
<div class="font-medium text-lg">No Shared Projects</div> |
|
</template> |
|
</div> |
|
</div> |
|
<a-table |
|
v-else |
|
v-model:data-source="basesList" |
|
class="h-full" |
|
:class="{ |
|
'full-height-table': activePage !== 'workspace', |
|
}" |
|
:custom-row="customRow" |
|
:columns="columns" |
|
:pagination="false" |
|
:scroll="{ y: 'calc(100% - 54px)' }" |
|
> |
|
<template #emptyText> |
|
<a-empty :image="Empty.PRESENTED_IMAGE_SIMPLE" :description="$t('labels.noData')" /> |
|
</template> |
|
|
|
<template #bodyCell="{ column, text, record, index: i }"> |
|
<template v-if="column.dataIndex === 'title'"> |
|
<div class="flex items-center nc-base-title gap-2.5 max-w-full -ml-1.5"> |
|
<div class="flex items-center gap-2 text-center"> |
|
<GeneralBaseIconColorPicker |
|
:key="`${record.id}_${parseProp(record.meta).iconColor}`" |
|
:type="record?.type" |
|
:model-value="parseProp(record.meta).iconColor" |
|
:readonly="(record?.type && record?.type !== 'database') || !isUIAllowed('baseRename')" |
|
@update:model-value="setColor($event, record)" |
|
> |
|
</GeneralBaseIconColorPicker> |
|
<!-- todo: replace with switch --> |
|
</div> |
|
|
|
<div class="min-w-10"> |
|
<input |
|
v-if="record.edit" |
|
ref="renameInput" |
|
v-model="record.temp_title" |
|
class="!leading-none p-1 bg-transparent max-w-full !w-auto" |
|
autofocus |
|
@click.stop |
|
@blur="disableEdit(i)" |
|
@keydown.enter="updateProjectTitle(record)" |
|
@keydown.esc="disableEdit(i)" |
|
/> |
|
|
|
<div |
|
v-else |
|
:title="record.title" |
|
class="whitespace-nowrap overflow-hidden overflow-ellipsis cursor-pointer" |
|
@click.stop="onProjectTitleClick(i)" |
|
> |
|
{{ record.title }} |
|
</div> |
|
</div> |
|
|
|
<!-- <div v-if="!record.edit" class="nc-click-transition-1" @click.stop> --> |
|
<!-- <MdiStar v-if="record.starred" class="text-yellow-400 cursor-pointer" @click="removeFromFavourite(record.id)" /> --> |
|
<!-- <MdiStarOutline --> |
|
<!-- v-else --> |
|
<!-- class="opacity-0 group-hover:opacity-100 transition transition-opacity text-yellow-400 cursor-pointer" --> |
|
<!-- @click="addToFavourite(record.id)" --> |
|
<!-- /> --> |
|
<!-- </div> --> |
|
</div> |
|
</template> |
|
|
|
<div v-if="column.dataIndex === 'last_accessed'" class="text-xs text-gray-500"> |
|
{{ text ? timeAgo(text) : 'Newly invited' }} |
|
</div> |
|
|
|
<div v-if="column.dataIndex === 'workspace_title'" class="text-xs text-gray-500"> |
|
<span v-if="text" class="text-xs text-gray-500 whitespace-nowrap overflow-hidden overflow-ellipsis"> |
|
<nuxt-link |
|
:to="{ |
|
query: { |
|
page: 'workspace', |
|
workspaceId: 'default', |
|
}, |
|
}" |
|
class="!text-gray-500 !no-underline !hover:underline !hover:text-gray-500" |
|
@click.stop |
|
> |
|
{{ text }} |
|
</nuxt-link> |
|
</span> |
|
</div> |
|
|
|
<div v-if="column.dataIndex === 'workspace_role'" class="flex flex-row text-xs justify-between text-gray-500"> |
|
<div class="flex"> |
|
{{ roleAlias[record.workspace_role || record.project_role] }} |
|
</div> |
|
<div class="flex items-center gap-2"></div> |
|
</div> |
|
|
|
<template v-if="column.dataIndex === 'id'"> |
|
<a-dropdown |
|
v-if="isUIAllowed('baseActionMenu', { roles: [record.workspace_role, record.project_role].join() })" |
|
:trigger="['click']" |
|
> |
|
<div @click.stop> |
|
<template v-if="record.status === ProjectStatus.JOB"> |
|
<component :is="iconMap.reload" class="animate-infinite animate-spin" /> |
|
</template> |
|
<GeneralIcon v-else icon="threeDotVertical" class="outline-0 nc-workspace-menu nc-click-transition" /> |
|
</div> |
|
<template #overlay> |
|
<a-menu> |
|
<a-menu-item @click="enableEdit(i)"> |
|
<div class="nc-menu-item-wrapper"> |
|
<GeneralIcon icon="rename" class="text-gray-700" /> |
|
{{ $t('general.rename') }} {{ $t('objects.project') }} |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item |
|
v-if=" |
|
record.type === NcProjectType.DB && |
|
isUIAllowed('baseDuplicate', { roles: [record.workspace_role, record.project_role].join() }) |
|
" |
|
@click="duplicateProject(record)" |
|
> |
|
<div class="nc-menu-item-wrapper"> |
|
<GeneralIcon icon="duplicate" class="text-gray-700" /> |
|
{{ $t('general.duplicate') }} {{ $t('objects.project') }} |
|
</div> |
|
</a-menu-item> |
|
<!-- |
|
<a-menu-item |
|
v-if="false && isUIAllowed('baseMove', { roles: [record.workspace_role, record.project_role].join() })" |
|
@click="moveProject(record)" |
|
> |
|
<div class="nc-menu-item-wrapper"> |
|
<GeneralIcon icon="move" class="text-gray-700" /> |
|
{{ $t('general.move') }} {{ $t('objects.project') }} |
|
</div> |
|
</a-menu-item> |
|
--> |
|
<a-menu-item |
|
v-if="isUIAllowed('baseDelete', { roles: [record.workspace_role, record.project_role].join() })" |
|
@click="deleteProject(record)" |
|
> |
|
<div class="nc-menu-item-wrapper text-red-500"> |
|
<GeneralIcon icon="delete" /> |
|
{{ $t('general.delete') }} {{ $t('objects.project') }} |
|
</div> |
|
</a-menu-item> |
|
</a-menu> |
|
</template> |
|
</a-dropdown> |
|
<div v-else></div> |
|
</template> |
|
</template> |
|
</a-table> |
|
<DlgProjectDelete v-if="toBeDeletedProjectId" v-model:visible="showProjectDeleteModal" :base-id="toBeDeletedProjectId" /> |
|
<WorkspaceMoveProjectDlg |
|
v-if="selectedProjectToMove" |
|
v-model="isMoveDlgOpen" |
|
:base="selectedProjectToMove" |
|
@success="workspaceMoveProjectOnSuccess" |
|
/> |
|
<DlgProjectDuplicate v-if="selectedProjectToDuplicate" v-model="isDuplicateDlgOpen" :base="selectedProjectToDuplicate" /> |
|
</div> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
:deep(.ant-table-cell:first-child) { |
|
@apply !pl-6; |
|
} |
|
|
|
:deep(.ant-table-cell:last-child) { |
|
@apply !plr6; |
|
} |
|
|
|
:deep(th.ant-table-cell) { |
|
@apply font-weight-400; |
|
} |
|
|
|
:deep(.ant-table-wrapper) { |
|
.ant-spin-nested-loading, |
|
.ant-spin-container, |
|
.ant-table, |
|
.ant-table-container { |
|
@apply h-full; |
|
} |
|
} |
|
|
|
:deep(.ant-table-row) { |
|
@apply cursor-pointer; |
|
} |
|
|
|
:deep(th.ant-table-cell) { |
|
@apply !text-gray-500; |
|
} |
|
|
|
:deep(.ant-table-cell:last-child) { |
|
@apply !p-0; |
|
} |
|
:deep(.ant-table-row:last-child > td) { |
|
@apply !border-b-0; |
|
} |
|
|
|
:deep(.ant-table-cell:nth-child(2)) { |
|
@apply !p-0; |
|
} |
|
|
|
:deep(.ant-table-body) { |
|
@apply !p-0 w-full !overflow-y-auto; |
|
} |
|
|
|
:deep(.ant-table-thead > tr > th) { |
|
@apply !bg-transparent; |
|
} |
|
|
|
:deep(.ant-table-cell::before) { |
|
width: 0 !important; |
|
} |
|
|
|
:deep(.ant-table-column-sorter) { |
|
@apply text-gray-100 !hover:text-gray-300; |
|
} |
|
|
|
:deep(.ant-table-column-sorters) { |
|
@apply !justify-start !gap-x-2; |
|
} |
|
:deep(.ant-table-column-sorters > .ant-table-column-title) { |
|
flex: none; |
|
} |
|
|
|
:deep(.full-height-table .ant-table-body) { |
|
height: calc(100vh - var(--topbar-height) - 9rem) !important; |
|
} |
|
:deep(.ant-table-body) { |
|
overflow-y: overlay; |
|
height: calc(100vh - var(--topbar-height) - 13.45rem); |
|
|
|
&::-webkit-scrollbar { |
|
width: 4px; |
|
} |
|
&::-webkit-scrollbar-track { |
|
background: #f6f6f600 !important; |
|
} |
|
&::-webkit-scrollbar-thumb { |
|
background: #f6f6f600; |
|
} |
|
&::-webkit-scrollbar-thumb:hover { |
|
background: #f6f6f600; |
|
} |
|
} |
|
:deep(.ant-table-body) { |
|
&::-webkit-scrollbar { |
|
width: 4px; |
|
} |
|
&::-webkit-scrollbar-track { |
|
background: #f6f6f600 !important; |
|
} |
|
&::-webkit-scrollbar-thumb { |
|
background: rgb(215, 215, 215); |
|
} |
|
&::-webkit-scrollbar-thumb:hover { |
|
background: rgb(203, 203, 203); |
|
} |
|
} |
|
</style>
|
|
|