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.
456 lines
13 KiB
456 lines
13 KiB
<script lang="ts" setup> |
|
import { onClickOutside } from '@vueuse/core' |
|
import { isVirtualCol } from 'nocodb-sdk' |
|
import { message } from 'ant-design-vue' |
|
import { |
|
inject, |
|
onKeyStroke, |
|
onMounted, |
|
onUnmounted, |
|
provide, |
|
useGridViewColumnWidth, |
|
useProvideColumnCreateStore, |
|
useSmartsheetStoreOrThrow, |
|
useViewData, |
|
} from '#imports' |
|
import { |
|
ActiveViewInj, |
|
ChangePageInj, |
|
EditModeInj, |
|
FieldsInj, |
|
IsFormInj, |
|
IsGridInj, |
|
IsLockedInj, |
|
MetaInj, |
|
PaginationDataInj, |
|
ReloadViewDataHookInj, |
|
} from '~/context' |
|
import { NavigateDir } from '~/lib' |
|
import MdiArrowExpandIcon from '~icons/mdi/arrow-expand' |
|
import MdiPlusIcon from '~icons/mdi/plus' |
|
|
|
const meta = inject(MetaInj) |
|
const view = inject(ActiveViewInj) |
|
// keep a root fields variable and will get modified from |
|
// fields menu and get used in grid and gallery |
|
const fields = inject(FieldsInj, ref([])) |
|
const isLocked = inject(IsLockedInj, false) |
|
// todo: get from parent ( inject or use prop ) |
|
const isPublicView = false |
|
|
|
const selected = reactive<{ row: number | null; col: number | null }>({ row: null, col: null }) |
|
let editEnabled = $ref(false) |
|
const { sqlUi } = useProject() |
|
const { xWhere } = useSmartsheetStoreOrThrow() |
|
const addColumnDropdown = ref(false) |
|
const contextMenu = ref(false) |
|
const contextMenuTarget = ref(false) |
|
|
|
const visibleColLength = $computed(() => fields.value?.length) |
|
|
|
const { |
|
loadData, |
|
paginationData, |
|
formattedData: data, |
|
updateOrSaveRow, |
|
changePage, |
|
addEmptyRow, |
|
deleteRow, |
|
deleteSelectedRows, |
|
selectedAllRecords, |
|
} = useViewData(meta, view as any, xWhere) |
|
const { loadGridViewColumns, updateWidth, resizingColWidth, resizingCol } = useGridViewColumnWidth(view as any) |
|
onMounted(loadGridViewColumns) |
|
|
|
provide(IsFormInj, false) |
|
provide(IsGridInj, true) |
|
provide(PaginationDataInj, paginationData) |
|
provide(ChangePageInj, changePage) |
|
|
|
const reloadViewDataHook = inject(ReloadViewDataHookInj) |
|
reloadViewDataHook?.on(() => { |
|
loadData() |
|
}) |
|
|
|
const selectCell = (row: number, col: number) => { |
|
selected.row = row |
|
selected.col = col |
|
} |
|
|
|
onKeyStroke(['Enter'], (e) => { |
|
if (selected.row !== null && selected.col !== null) { |
|
editEnabled = true |
|
} |
|
}) |
|
|
|
watch( |
|
() => (view?.value as any)?.id, |
|
async (n?: string, o?: string) => { |
|
if (n && n !== o) { |
|
await loadData() |
|
} |
|
}, |
|
{ immediate: true }, |
|
) |
|
|
|
const onresize = (colID: string, event: any) => { |
|
updateWidth(colID, event.detail) |
|
} |
|
const onXcResizing = (cn: string, event: any) => { |
|
resizingCol.value = cn |
|
resizingColWidth.value = event.detail |
|
} |
|
|
|
defineExpose({ |
|
loadData, |
|
}) |
|
|
|
// instantiate column create store |
|
if (meta) useProvideColumnCreateStore(meta) |
|
|
|
// reset context menu target on hide |
|
watch(contextMenu, () => { |
|
if (!contextMenu.value) { |
|
contextMenuTarget.value = false |
|
} |
|
}) |
|
|
|
const isPkAvail = $computed(() => meta?.value?.columns?.some((c) => c.pk)) |
|
|
|
const clearCell = async (ctx: { row: number; col: number }) => { |
|
const rowObj = data.value[ctx.row] |
|
const columnObj = fields.value[ctx.col] |
|
|
|
if (isVirtualCol(columnObj)) { |
|
return |
|
} |
|
|
|
rowObj.row[columnObj.title] = null |
|
// update/save cell value |
|
await updateOrSaveRow(rowObj, columnObj.title) |
|
} |
|
|
|
const { copy } = useClipboard() |
|
|
|
/** handle keypress events */ |
|
const onKeyDown = async (e: KeyboardEvent) => { |
|
if (selected.row === null || selected.col === null) return |
|
/** on tab key press navigate through cells */ |
|
switch (e.key) { |
|
case 'Tab': |
|
e.preventDefault() |
|
if (e.shiftKey) { |
|
if (selected.col > 0) { |
|
selected.col-- |
|
} else if (selected.row > 0) { |
|
selected.row-- |
|
selected.col = visibleColLength - 1 |
|
} |
|
} else { |
|
if (selected.col < visibleColLength - 1) { |
|
selected.col++ |
|
} else if (selected.row < data.value.length - 1) { |
|
selected.row++ |
|
selected.col = 0 |
|
} |
|
} |
|
break |
|
/** on enter key press make cell editable */ |
|
case 'Enter': |
|
e.preventDefault() |
|
editEnabled = true |
|
break |
|
/** on delete key press clear cell */ |
|
case 'Delete': |
|
e.preventDefault() |
|
await clearCell(selected as { row: number; col: number }) |
|
break |
|
/** on arrow key press navigate through cells */ |
|
case 'ArrowRight': |
|
e.preventDefault() |
|
if (selected.col < visibleColLength - 1) selected.col++ |
|
break |
|
case 'ArrowLeft': |
|
e.preventDefault() |
|
if (selected.col > 0) selected.col-- |
|
break |
|
case 'ArrowUp': |
|
e.preventDefault() |
|
if (selected.row > 0) selected.row-- |
|
break |
|
case 'ArrowDown': |
|
e.preventDefault() |
|
if (selected.row < data.value.length - 1) selected.row++ |
|
break |
|
default: |
|
{ |
|
const rowObj = data.value[selected.row] |
|
const columnObj = fields.value[selected.col] |
|
|
|
if (e.metaKey || e.ctrlKey) { |
|
switch (e.keyCode) { |
|
// copy - ctrl/cmd +c |
|
case 67: |
|
await copy(rowObj.row[columnObj.title] || '') |
|
break |
|
} |
|
} |
|
|
|
if (editEnabled || e.ctrlKey || e.altKey || e.metaKey) { |
|
return |
|
} |
|
|
|
/** on letter key press make cell editable and empty */ |
|
if (e?.key?.length === 1) { |
|
if (!isPkAvail && !rowObj.rowMeta.new) { |
|
return message.info("Update not allowed for table which doesn't have primary Key") |
|
} |
|
rowObj.row[columnObj.title] = '' |
|
editEnabled = true |
|
} |
|
} |
|
break |
|
} |
|
} |
|
|
|
onMounted(() => { |
|
document.addEventListener('keydown', onKeyDown) |
|
}) |
|
onUnmounted(() => { |
|
document.removeEventListener('keydown', onKeyDown) |
|
}) |
|
|
|
/** On clicking outside of table reset active cell */ |
|
const smartTable = ref(null) |
|
onClickOutside(smartTable, (event) => { |
|
selected.row = null |
|
selected.col = null |
|
}) |
|
|
|
const onNavigate = (dir: NavigateDir) => { |
|
if (selected.row === null || selected.col === null) return |
|
switch (dir) { |
|
case NavigateDir.NEXT: |
|
if (selected.col < visibleColLength - 1) { |
|
selected.col++ |
|
} else if (selected.row < data.value.length - 1) { |
|
selected.row++ |
|
selected.col = 0 |
|
} |
|
break |
|
case NavigateDir.PREV: |
|
if (selected.col > 0) { |
|
selected.col-- |
|
} else if (selected.row > 0) { |
|
selected.row-- |
|
selected.col = visibleColLength - 1 |
|
} |
|
break |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<div class="flex flex-col h-100 min-h-0 w-100"> |
|
<div class="nc-grid-wrapper min-h-0 flex-1 scrollbar-thin-primary"> |
|
<a-dropdown v-model:visible="contextMenu" :trigger="['contextmenu']"> |
|
<table ref="smartTable" class="xc-row-table nc-grid backgroundColorDefault" @contextmenu.prevent="contextMenu = true"> |
|
<thead> |
|
<tr class="group"> |
|
<th> |
|
<div class="flex align-center w-[80px]"> |
|
<div class="group-hover:hidden" :class="{ hidden: selectedAllRecords }">#</div> |
|
<div |
|
:class="{ hidden: !selectedAllRecords, flex: selectedAllRecords }" |
|
class="group-hover:flex w-full align-center" |
|
> |
|
<a-checkbox v-model:checked="selectedAllRecords" /> |
|
<span class="flex-1" /> |
|
</div> |
|
</div> |
|
</th> |
|
<th |
|
v-for="col in fields" |
|
:key="col.title" |
|
v-xc-ver-resize |
|
:data-col="col.id" |
|
@xcresize="onresize(col.id, $event)" |
|
@xcresizing="onXcResizing(col.title, $event)" |
|
@xcresized="resizingCol = null" |
|
> |
|
<SmartsheetHeaderVirtualCell v-if="isVirtualCol(col)" :column="col" /> |
|
<SmartsheetHeaderCell v-else :column="col" /> |
|
</th> |
|
<!-- v-if="!isLocked && !isVirtual && !isPublicView && _isUIAllowed('add-column')" --> |
|
<th v-t="['c:column:add']" @click="addColumnDropdown = true"> |
|
<a-dropdown v-model:visible="addColumnDropdown" :trigger="['click']"> |
|
<div class="h-full w-[60px] flex align-center justify-center"> |
|
<MdiPlusIcon class="text-sm" /> |
|
</div> |
|
<template #overlay> |
|
<SmartsheetColumnEditOrAdd @click.stop @cancel="addColumnDropdown = false" /> |
|
</template> |
|
</a-dropdown> |
|
</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<tr v-for="(row, rowIndex) in data" :key="rowIndex" class="nc-grid-row group"> |
|
<td key="row-index" class="caption nc-grid-cell"> |
|
<div class="align-center flex w-[80px]"> |
|
<div class="group-hover:hidden" :class="{ hidden: row.rowMeta.selected }">{{ rowIndex + 1 }}</div> |
|
<div |
|
:class="{ hidden: !row.rowMeta.selected, flex: row.rowMeta.selected }" |
|
class="group-hover:flex w-full align-center" |
|
> |
|
<a-checkbox v-model:checked="row.rowMeta.selected" /> |
|
<span class="flex-1" /> |
|
<MdiArrowExpandIcon class="text-sm text-pink hidden group-hover:inline-block" /> |
|
</div> |
|
</div> |
|
</td> |
|
<td |
|
v-for="(columnObj, colIndex) in fields" |
|
:key="rowIndex + columnObj.title" |
|
class="cell pointer nc-grid-cell" |
|
:class="{ |
|
active: !isPublicView && selected.col === colIndex && selected.row === rowIndex, |
|
}" |
|
:data-col="columnObj.id" |
|
:data-title="columnObj.title" |
|
@click="selectCell(rowIndex, colIndex)" |
|
@dblclick="editEnabled = true" |
|
@contextmenu="contextMenuTarget = { row: rowIndex, col: colIndex }" |
|
> |
|
<div class="w-full h-full"> |
|
<SmartsheetVirtualCell |
|
v-if="isVirtualCol(columnObj)" |
|
v-model="row.row[columnObj.title]" |
|
:column="columnObj" |
|
:active="selected.col === colIndex && selected.row === rowIndex" |
|
:row="row" |
|
@navigate="onNavigate" |
|
/> |
|
|
|
<SmartsheetCell |
|
v-else |
|
v-model="row.row[columnObj.title]" |
|
:column="columnObj" |
|
:edit-enabled="editEnabled && selected.col === colIndex && selected.row === rowIndex" |
|
@update:edit-enabled="editEnabled = false" |
|
@save="updateOrSaveRow(row, columnObj.title)" |
|
@navigate="onNavigate" |
|
@cancel="editEnabled = false" |
|
/> |
|
</div> |
|
</td> |
|
</tr> |
|
|
|
<tr v-if="!isLocked"> |
|
<td |
|
v-t="['c:row:add:grid-bottom']" |
|
:colspan="visibleColLength + 1" |
|
class="text-left pointer nc-grid-add-new-cell" |
|
@click="addEmptyRow()" |
|
> |
|
<a-tooltip top left> |
|
<div class="w-min flex align-center"> |
|
<MdiPlusIcon class="text-pint-500 text-xs" /> |
|
<span class="ml-1 caption grey--text"> |
|
{{ $t('activity.addRow') }} |
|
</span> |
|
</div> |
|
<template #title> |
|
<span class="caption"> Add new row</span> |
|
</template> |
|
</a-tooltip> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
<template #overlay> |
|
<div class="bg-white shadow" @click="contextMenu = false"> |
|
<div v-if="contextMenuTarget" class="nc-menu-item" @click="deleteRow(contextMenuTarget.row)">Delete row</div> |
|
<div class="nc-menu-item" @click="deleteSelectedRows">Delete all selected rows</div> |
|
<div v-if="contextMenuTarget" class="nc-menu-item" @click="clearCell(contextMenuTarget)">Clear cell</div> |
|
<div v-if="contextMenuTarget" class="nc-menu-item" @click="addEmptyRow(contextMenuTarget.row + 1)"> |
|
Insert new row |
|
</div> |
|
</div> |
|
</template> |
|
</a-dropdown> |
|
</div> |
|
|
|
<SmartsheetPagination /> |
|
</div> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
.nc-grid-wrapper { |
|
width: 100%; |
|
// todo : proper height calculation |
|
height: calc(100vh - 215px); |
|
overflow: auto; |
|
|
|
td, |
|
th { |
|
min-height: 41px !important; |
|
height: 41px !important; |
|
position: relative; |
|
//padding: 0 5px; |
|
|
|
& > div { |
|
overflow: hidden; |
|
@apply flex align-center h-auto; |
|
padding: 0 5px; |
|
} |
|
} |
|
|
|
table, |
|
td, |
|
th { |
|
border-right: 1px solid #7f828b33 !important; |
|
border-left: 1px solid #7f828b33 !important; |
|
border-bottom: 1px solid #7f828b33 !important; |
|
border-top: 1px solid #7f828b33 !important; |
|
border-collapse: collapse; |
|
} |
|
|
|
td { |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
} |
|
|
|
td.active::after, |
|
td.active::before { |
|
content: ''; |
|
position: absolute; |
|
z-index: 3; |
|
height: calc(100% + 2px); |
|
width: calc(100% + 2px); |
|
left: -1px; |
|
top: -1px; |
|
pointer-events: none; |
|
} |
|
|
|
// todo: replace with css variable |
|
td.active::after { |
|
@apply border-2 border-solid border-primary; |
|
} |
|
|
|
td.active::before { |
|
background: #0040bc; |
|
opacity: 0.1; |
|
} |
|
} |
|
|
|
:deep { |
|
.resizer:hover, |
|
.resizer:active, |
|
.resizer:focus { |
|
// todo: replace with primary color |
|
@apply bg-blue-500/50; |
|
cursor: col-resize; |
|
} |
|
} |
|
</style>
|
|
|