refactor: refs #8684 improve input handling in VnTable and clean up ItemRequest component
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
parent
240b927a02
commit
cb1fa3c7f5
|
@ -493,6 +493,11 @@ async function renderInput(rowId, field, clickedElement) {
|
|||
console.log('target: ', event.target);
|
||||
await handleTabKey(event, rowId, field);
|
||||
event.stopPropagation();
|
||||
const column = $props.columns.find((col) => col.name === field);
|
||||
if (typeof column?.beforeDestroy === 'function')
|
||||
await column.beforeDestroy(
|
||||
CrudModelRef.value.formData[editingRow.value],
|
||||
);
|
||||
break;
|
||||
case 'Escape':
|
||||
console.log('destroyInput 5');
|
||||
|
@ -530,10 +535,6 @@ async function updateSelectValue(value, column, row, oldValue) {
|
|||
}
|
||||
|
||||
async function destroyInput(rowIndex, field, clickedElement) {
|
||||
const column = $props.columns.find((col) => col.name === field);
|
||||
if (typeof column?.beforeDestroy === 'function')
|
||||
await column.beforeDestroy(CrudModelRef.value.formData[rowIndex]);
|
||||
|
||||
if (!clickedElement)
|
||||
clickedElement = document.querySelector(
|
||||
`[data-row-index="${rowIndex}"][data-col-field="${field}"]`,
|
||||
|
|
|
@ -282,7 +282,6 @@ const columns = computed(() => [
|
|||
actions: [
|
||||
{
|
||||
title: t('globals.clone'),
|
||||
|
||||
icon: 'vn:clone',
|
||||
action: openCloneDialog,
|
||||
isPrimary: true,
|
||||
|
|
|
@ -158,7 +158,7 @@ const columns = computed(() => [
|
|||
await tableRef.value.reload();
|
||||
} catch (error) {
|
||||
notify(error.response.data.error.message, 'negative');
|
||||
console.log('error: ', error);
|
||||
await tableRef.value.reload();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
@ -200,6 +200,7 @@ const columns = computed(() => [
|
|||
{
|
||||
title: t('Discard'),
|
||||
icon: 'thumb_down',
|
||||
fill: true,
|
||||
isPrimary: true,
|
||||
action: (row) => showDenyRequestForm(row.id),
|
||||
},
|
||||
|
|
|
@ -7,7 +7,9 @@ describe('Item list', () => {
|
|||
it('should filter the items and redirect to the summary', () => {
|
||||
cy.selectOption('[data-cy="Category_select"]', 'Plant');
|
||||
cy.selectOption('[data-cy="Type_select"]', 'Anthurium');
|
||||
cy.get('.q-virtual-scroll__content > :nth-child(4) > :nth-child(4)').click();
|
||||
cy.get('td[data-row-index="0"][data-col-field="description"]')
|
||||
.should('exist')
|
||||
.click();
|
||||
cy.url().should('include', '/summary');
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue