-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: edit/create rows from tables interactive content widget (#952)
* feat: create and edit rows from tables interactive widget Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> --------- Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> Signed-off-by: Julius Härtl <jus@bitgrid.net> Co-authored-by: Julius Härtl <jus@bitgrid.net>
- Loading branch information
1 parent
da8a088
commit 8443dde
Showing
241 changed files
with
3,549 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import ContentReferenceWidget from '../../src/views/ContentReferenceWidget.vue' | ||
|
||
describe('ContentReferenceWidget', () => { | ||
let richObject = {} | ||
|
||
before(() => { | ||
// Load the richObject from a fixture | ||
cy.fixture('widgets/richObject.json') | ||
.then(richObjectFixture => { | ||
richObject = richObjectFixture | ||
}) | ||
}) | ||
|
||
it('mounts', () => { | ||
mountContentWidget(richObject) | ||
|
||
const title = `${richObject.emoji} ${richObject.title}` | ||
|
||
// Verify the table loaded the richObject | ||
// by checking the title | ||
cy.get('.tables-content-widget h2').as('heading') | ||
cy.get('@heading').contains(title) | ||
}) | ||
|
||
it('can search rows', () => { | ||
mountContentWidget(richObject) | ||
|
||
const searchTerm = 'cat' | ||
|
||
// Search for the row including the above search term | ||
cy.get('@options').find('input').type(searchTerm) | ||
|
||
// Ensure there is only one resultant row and | ||
// verify the row correctly includes the search term | ||
cy.get('@rows').its('length').should('equal', 1) | ||
cy.get('@rows').first().as('firstRow') | ||
cy.get('@firstRow').children().first().contains(searchTerm, { matchCase: false }) | ||
}) | ||
|
||
it('can create a row', () => { | ||
mountContentWidget(richObject); | ||
|
||
// Load a fixture used to reply to the create row request | ||
cy.fixture('widgets/createRow.json') | ||
.then((rowData) => { | ||
cy.reply('**/index.php/apps/tables/row', rowData) | ||
}) | ||
|
||
// Click the Create Row button | ||
cy.get('@options').find('button').click() | ||
|
||
// Input row data | ||
cy.get('[data-cy="Name"] input').type('Hello') | ||
cy.get('[data-cy="Account manager"] input').type('World') | ||
|
||
// Create the row and make sure the modal disappears | ||
cy.get('[data-cy="createRowSaveButton"]').click() | ||
cy.get('.modal__content').should('not.exist') | ||
|
||
// Make sure the row was added and is visible | ||
cy.get('@rows').last().children().as('createdRow') | ||
cy.get('@createdRow').first().contains('Hello') | ||
cy.get('@createdRow').next().contains('World') | ||
}) | ||
|
||
it('can edit a row', () => { | ||
mountContentWidget(richObject) | ||
|
||
// Load a fixture which is used to reply to the edit row request | ||
cy.fixture('widgets/editRow.json') | ||
.then((rowData) => { | ||
cy.reply('**/index.php/apps/tables/row/*', rowData) | ||
}) | ||
|
||
// Click the edit button on the first row | ||
cy.get('@rows').first().find('td.sticky button').click({ force: true }) | ||
|
||
// Get the first field of the Edit Row modal | ||
cy.get('.modal__content').as('editRowModal') | ||
cy.get('@editRowModal').find('.row.space-T').as('fields') | ||
cy.get('@fields').first().find('input').as('editNameField') | ||
|
||
// Clear the current input and enter a new value | ||
cy.get('@editNameField').clear() | ||
cy.get('@editNameField').type('Giraffe') | ||
|
||
// Edit the row and make sure the modal disappears | ||
cy.get('[data-cy="editRowSaveButton"]').click() | ||
cy.get('@editRowModal').should('not.exist') | ||
|
||
// Check the edited row for the new value | ||
cy.get('@rows').first().children().as('editedRow') | ||
cy.get('@editedRow').first().contains('Giraffe') | ||
}) | ||
}) | ||
|
||
function mountContentWidget(richObject) { | ||
cy.reply('**/index.php/apps/tables/row/table/*', richObject.rows) | ||
|
||
cy.mount(ContentReferenceWidget, { | ||
propsData: { | ||
richObject, | ||
}, | ||
}) | ||
|
||
// Get some often used elements | ||
cy.get('.tables-content-widget > .options').as('options') | ||
cy.get('.tables-content-widget .NcTable table').as('table') | ||
cy.get('@table').find('tbody tr[data-cy="customTableRow"]').as('rows') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"id": 229, | ||
"tableId": 49, | ||
"createdBy": null, | ||
"createdAt": null, | ||
"lastEditBy": null, | ||
"lastEditAt": null, | ||
"data": [ | ||
{ | ||
"columnId": 159, | ||
"value": "Hello" | ||
}, | ||
{ | ||
"columnId": 160, | ||
"value": "World" | ||
}, | ||
{ | ||
"columnId": 161, | ||
"value": "" | ||
}, | ||
{ | ||
"columnId": 162, | ||
"value": "2024-05-30" | ||
}, | ||
{ | ||
"columnId": 164, | ||
"value": "" | ||
}, | ||
{ | ||
"columnId": 165, | ||
"value": "" | ||
}, | ||
{ | ||
"columnId": 166, | ||
"value": 30 | ||
}, | ||
{ | ||
"columnId": 167, | ||
"value": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"id": 226, | ||
"tableId": 49, | ||
"createdBy": null, | ||
"createdAt": null, | ||
"lastEditBy": null, | ||
"lastEditAt": null, | ||
"data": [ | ||
{ | ||
"columnId": 159, | ||
"value": "Giraffe" | ||
}, | ||
{ | ||
"columnId": 160, | ||
"value": "Mr. Smith" | ||
}, | ||
{ | ||
"columnId": 161, | ||
"value": "Dog food every week" | ||
}, | ||
{ | ||
"columnId": 162, | ||
"value": "2023-01-01" | ||
}, | ||
{ | ||
"columnId": 163, | ||
"value": "2023-12-31" | ||
}, | ||
{ | ||
"columnId": 164, | ||
"value": "The dog is our best friend." | ||
}, | ||
{ | ||
"columnId": 165, | ||
"value": "Standard, SLA Level 2" | ||
}, | ||
{ | ||
"columnId": 166, | ||
"value": 80 | ||
}, | ||
{ | ||
"columnId": 167, | ||
"value": "Likes treats" | ||
} | ||
] | ||
} |
Oops, something went wrong.