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.
167 lines
4.5 KiB
167 lines
4.5 KiB
<script setup lang="ts"> |
|
import type { AIRecordType, ButtonType, ColumnType } from 'nocodb-sdk' |
|
|
|
interface Props { |
|
modelValue?: AIRecordType | null |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits(['update:modelValue', 'save']) |
|
|
|
const { generateRows, generatingRows, generatingColumnRows, aiIntegrations } = useNocoAi() |
|
|
|
const { row } = useSmartsheetRowStoreOrThrow() |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const column = inject(ColumnInj) as Ref< |
|
ColumnType & { |
|
colOptions: ButtonType |
|
} |
|
> |
|
|
|
const editEnabled = inject(EditModeInj, ref(false)) |
|
|
|
const readOnly = inject(ReadonlyInj, ref(false)) |
|
|
|
const isGrid = inject(IsGridInj, ref(false)) |
|
|
|
const isGallery = inject(IsGalleryInj, ref(false)) |
|
|
|
const isKanban = inject(IsKanbanInj, ref(false)) |
|
|
|
const isExpandedForm = inject(IsExpandedFormOpenInj, ref(false)) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const isAiEdited = ref(false) |
|
|
|
const isFieldAiIntegrationAvailable = computed(() => { |
|
const fkIntegrationId = column.value?.colOptions?.fk_integration_id |
|
|
|
if (!fkIntegrationId) return false |
|
|
|
return ncIsArrayIncludes(aiIntegrations.value, fkIntegrationId, 'id') |
|
}) |
|
|
|
const pk = computed(() => { |
|
if (!meta.value?.columns) return |
|
return extractPkFromRow(unref(row).row, meta.value.columns) |
|
}) |
|
|
|
const generate = async () => { |
|
if (!meta?.value?.id || !meta.value.columns || !column?.value?.id) return |
|
|
|
if (!pk.value) return |
|
const outputColumnIds = |
|
ncIsString(column.value.colOptions?.output_column_ids) && column.value.colOptions.output_column_ids.split(',').length > 1 |
|
? column.value.colOptions.output_column_ids.split(',') |
|
: [] |
|
const outputColumns = outputColumnIds.map((id) => meta.value?.columnsById[id]) |
|
|
|
generatingRows.value.push(pk.value) |
|
generatingColumnRows.value.push(column.value.id) |
|
|
|
const res = await generateRows(meta.value.id, column.value.id, [pk.value], false, !!isExpandedForm.value) |
|
|
|
if (res?.length) { |
|
const resRow = res[0] |
|
|
|
if (outputColumnIds.length) { |
|
for (const col of outputColumns) { |
|
if (col) { |
|
unref(row).row[col.title!] = resRow[col.title!] |
|
} |
|
} |
|
} else { |
|
const obj: AIRecordType = resRow[column.value.title!] |
|
if (obj && typeof obj === 'object') { |
|
vModel.value = obj |
|
setTimeout(() => { |
|
isAiEdited.value = false |
|
}, 100) |
|
} |
|
} |
|
} |
|
|
|
generatingRows.value = generatingRows.value.filter((v) => v !== pk.value) |
|
generatingColumnRows.value = generatingColumnRows.value.filter((v) => v !== column.value.id) |
|
} |
|
|
|
const isLoading = computed(() => { |
|
return !!( |
|
pk.value && |
|
generatingRows.value.includes(pk.value) && |
|
column.value?.id && |
|
generatingColumnRows.value.includes(column.value.id) |
|
) |
|
}) |
|
|
|
const handleSave = () => { |
|
emits('save') |
|
} |
|
|
|
const debouncedSave = useDebounceFn(handleSave, 1000) |
|
</script> |
|
|
|
<template> |
|
<div |
|
v-if="(!readOnly || isGallery || isKanban) && !vModel" |
|
class="flex items-center w-full" |
|
:class="{ |
|
'justify-center': isGrid && !isExpandedForm, |
|
}" |
|
> |
|
<NcTooltip :disabled="isFieldAiIntegrationAvailable" class="flex"> |
|
<template #title> |
|
{{ aiIntegrations.length ? $t('tooltip.aiIntegrationReConfigure') : $t('tooltip.aiIntegrationAddAndReConfigure') }} |
|
</template> |
|
<button |
|
class="nc-cell-ai-button nc-cell-button h-7" |
|
size="small" |
|
:disabled="!isFieldAiIntegrationAvailable || isLoading" |
|
@click.stop="generate" |
|
> |
|
<div class="flex items-center gap-1"> |
|
<GeneralLoader v-if="isLoading" size="regular" class="!text-nc-content-purple-dark" /> |
|
<GeneralIcon v-else icon="ncAutoAwesome" class="text-nc-content-purple-dark h-4 w-4" /> |
|
<span class="text-sm font-semibold">Generate</span> |
|
</div> |
|
</button> |
|
</NcTooltip> |
|
</div> |
|
|
|
<LazyCellTextArea |
|
v-else-if="vModel" |
|
v-model="vModel.value" |
|
v-model:is-ai-edited="isAiEdited" |
|
:is-ai="true" |
|
:ai-meta="vModel" |
|
:is-field-ai-integration-available="isFieldAiIntegrationAvailable" |
|
@update:model-value="debouncedSave" |
|
@generate="generate" |
|
@close="editEnabled = false" |
|
/> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
.nc-cell-button { |
|
@apply rounded-lg px-2 flex items-center gap-2 transition-all justify-center border-1 border-nc-border-gray-medium; |
|
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.06), 0px 5px 3px -2px rgba(0, 0, 0, 0.02); |
|
|
|
&[disabled] { |
|
@apply !bg-gray-100 opacity-50; |
|
} |
|
} |
|
</style> |
|
|
|
<style lang="scss"> |
|
.nc-data-cell { |
|
&:has(.nc-cell-ai-button) { |
|
@apply !border-none; |
|
box-shadow: none !important; |
|
} |
|
} |
|
</style>
|
|
|