|
|
|
@ -91,7 +91,7 @@ provide(PaginationDataInj, paginationData)
|
|
|
|
|
|
|
|
|
|
provide(ChangePageInj, changePage) |
|
|
|
|
|
|
|
|
|
provide(ReadonlyInj, isUIAllowed('xcDatatableEditable')) |
|
|
|
|
provide(ReadonlyInj, !isUIAllowed('xcDatatableEditable')) |
|
|
|
|
|
|
|
|
|
reloadViewDataHook?.on(async () => { |
|
|
|
|
await loadData() |
|
|
|
@ -294,9 +294,9 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
<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="nc-grid-header"> |
|
|
|
|
<tr class="nc-grid-header border-1 bg-gray-100 sticky top[-1px]"> |
|
|
|
|
<th> |
|
|
|
|
<div class="w-full h-full bg-gray-100 flex w-[80px] px-1 items-center"> |
|
|
|
|
<div class="w-full h-full bg-gray-100 flex min-w-[80px] pl-5 pr-1 items-center"> |
|
|
|
|
<div class="nc-no-label text-gray-500" :class="{ hidden: selectedAllRecords }">#</div> |
|
|
|
|
<div |
|
|
|
|
:class="{ hidden: !selectedAllRecords, flex: selectedAllRecords }" |
|
|
|
@ -348,28 +348,26 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
<SmartsheetRow v-for="(row, rowIndex) of data" :key="rowIndex" :row="row"> |
|
|
|
|
<template #default="{ state }"> |
|
|
|
|
<tr class="nc-grid-row"> |
|
|
|
|
<td key="row-index" class="caption nc-grid-cell"> |
|
|
|
|
<div class="align-center flex w-[80px]"> |
|
|
|
|
<td key="row-index" class="caption nc-grid-cell pl-5 pr-1"> |
|
|
|
|
<div class="align-center flex min-w-[80px]"> |
|
|
|
|
<div class="nc-row-no" :class="{ hidden: row.rowMeta.selected }">{{ rowIndex + 1 }}</div> |
|
|
|
|
<div |
|
|
|
|
:class="{ hidden: !row.rowMeta.selected, flex: row.rowMeta.selected }" |
|
|
|
|
class="nc-row-expand-and-checkbox" |
|
|
|
|
> |
|
|
|
|
<a-checkbox v-model:checked="row.rowMeta.selected" /> |
|
|
|
|
</div> |
|
|
|
|
<span class="flex-1" /> |
|
|
|
|
<div class="nc-expand"> |
|
|
|
|
<div class="nc-expand" :class="{ 'nc-comment': row.rowMeta?.commentCount }"> |
|
|
|
|
<span |
|
|
|
|
v-if="row.rowMeta?.commentCount" |
|
|
|
|
class="py-1 px-3 rounded-full text-xs" |
|
|
|
|
class="py-1 px-3 rounded-full text-xs cursor-pointer select-none transform hover:(scale-110)" |
|
|
|
|
:style="{ backgroundColor: enumColor.light[row.rowMeta.commentCount % enumColor.light.length] }" |
|
|
|
|
@click="expandForm(row, state)" |
|
|
|
|
> |
|
|
|
|
{{ row.rowMeta.commentCount }} |
|
|
|
|
</span> |
|
|
|
|
<div |
|
|
|
|
v-else |
|
|
|
|
class="cursor-pointer flex items-center border-1 active:ring rounded p-1 hover:bg-primary/10" |
|
|
|
|
> |
|
|
|
|
<div v-else class="cursor-pointer flex items-center border-1 active:ring rounded p-1 hover:bg-primary/10"> |
|
|
|
|
<MdiArrowExpand |
|
|
|
|
class="select-none transform hover:(text-pink-500 scale-120)" |
|
|
|
|
@click="expandForm(row, state)" |
|
|
|
@ -377,7 +375,6 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</td> |
|
|
|
|
<td |
|
|
|
|
v-for="(columnObj, colIndex) of fields" |
|
|
|
@ -484,7 +481,7 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
position: relative; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
td > div { |
|
|
|
|
td:not(:first-child) > div { |
|
|
|
|
overflow: hidden; |
|
|
|
|
@apply flex align-center h-auto px-1; |
|
|
|
|
} |
|
|
|
@ -534,11 +531,16 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
|
|
|
|
|
.nc-grid-row { |
|
|
|
|
.nc-row-expand-and-checkbox { |
|
|
|
|
@apply w-full items-center justify-between p-1; |
|
|
|
|
@apply w-full items-center justify-between; |
|
|
|
|
} |
|
|
|
|
.nc-expand { |
|
|
|
|
&:not(.nc-comment) { |
|
|
|
|
@apply hidden; |
|
|
|
|
} |
|
|
|
|
&.nc-comment { |
|
|
|
|
display: flex; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
.nc-row-no { |
|
|
|
@ -556,6 +558,11 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.nc-grid-header { |
|
|
|
|
position: sticky; |
|
|
|
|
top: -1px; |
|
|
|
|
|
|
|
|
|
@apply z-1; |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
.nc-no-label { |
|
|
|
|
@apply hidden; |
|
|
|
|