-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add onPreHeaderContextMenu for Column Picker usage (#1030)
* feat: add onPreHeaderContextMenu for Column Picker usage - adding new events `onPreHeaderContextMenu` and `onPreHeaderClick` which is mostly to be able to open the Column Picker from either the regular column headers OR the Column Group from the Pre-Header when defined
- Loading branch information
1 parent
cec789c
commit ea2c175
Showing
10 changed files
with
368 additions
and
218 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
238 changes: 139 additions & 99 deletions
238
cypress/e2e/example-frozen-columns-and-column-group.cy.ts
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 |
---|---|---|
@@ -1,101 +1,141 @@ | ||
describe('Example - Row Grouping Titles', () => { | ||
const fullPreTitles = ['', 'Common Factor', 'Period', 'Analysis']; | ||
const fullTitles = ['#', 'Title', 'Duration', 'Start', 'Finish', '% Complete', 'Effort Driven']; | ||
|
||
it('should display Example Frozen Columns & Column Group', () => { | ||
cy.visit(`${Cypress.config('baseUrl')}/examples/example-frozen-columns-and-column-group.html`); | ||
cy.get('h2').should('contain', 'Demonstrates:'); | ||
cy.contains('Frozen columns with extra header row grouping columns into categories'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should have a frozen grid on page load with 3 columns on the left and 4 columns on the right', () => { | ||
cy.get('[style="top: 0px;"]').should('have.length', 2); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 3); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"]').children().should('have.length', 4); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
|
||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should click on the "Remove Frozen Columns" button to switch to a regular grid without frozen columns and expect 7 columns on the left container', () => { | ||
cy.contains('Remove Frozen Columns') | ||
.click({ force: true }); | ||
|
||
cy.get('[style="top: 0px;"]').should('have.length', 1); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 7); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(3)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(4)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should click on the "Set 3 Frozen Columns" button to switch frozen columns grid and expect 3 frozen columns on the left and 4 columns on the right', () => { | ||
cy.contains('Set 3 Frozen Columns') | ||
.click({ force: true }); | ||
|
||
cy.get('[style="top: 0px;"]').should('have.length', 2); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 3); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"]').children().should('have.length', 4); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
|
||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
const fullPreTitles = ['', 'Common Factor', 'Period', 'Analysis']; | ||
const fullTitles = ['#', 'Title', 'Duration', 'Start', 'Finish', '% Complete', 'Effort Driven']; | ||
|
||
it('should display Example Frozen Columns & Column Group', () => { | ||
cy.visit(`${Cypress.config('baseUrl')}/examples/example-frozen-columns-and-column-group.html`); | ||
cy.get('h2').should('contain', 'Demonstrates:'); | ||
cy.contains('Frozen columns with extra header row grouping columns into categories'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should have a frozen grid on page load with 3 columns on the left and 4 columns on the right', () => { | ||
cy.get('[style="top: 0px;"]').should('have.length', 2); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 3); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"]').children().should('have.length', 4); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
|
||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should click on the "Remove Frozen Columns" button to switch to a regular grid without frozen columns and expect 7 columns on the left container', () => { | ||
cy.contains('Remove Frozen Columns') | ||
.click({ force: true }); | ||
|
||
cy.get('[style="top: 0px;"]').should('have.length', 1); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 7); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(3)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(4)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should click on the "Set 3 Frozen Columns" button to switch frozen columns grid and expect 3 frozen columns on the left and 4 columns on the right', () => { | ||
cy.contains('Set 3 Frozen Columns') | ||
.click({ force: true }); | ||
|
||
cy.get('[style="top: 0px;"]').should('have.length', 2); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"]').children().should('have.length', 3); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"]').children().should('have.length', 4); | ||
|
||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', 'Task 0'); | ||
cy.get('.grid-canvas-left > [style="top: 0px;"] > .slick-cell:nth(2)').should('contain', '5 days'); | ||
|
||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(0)').should('contain', '01/01/2009'); | ||
cy.get('.grid-canvas-right > [style="top: 0px;"] > .slick-cell:nth(1)').should('contain', '01/05/2009'); | ||
}); | ||
|
||
it('should have exact Column Pre-Header & Column Header Titles in the grid', () => { | ||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(0)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitles[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header-columns:nth(1)') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitles[index])); | ||
}); | ||
|
||
it('should be able to call column picker from the pre-header', () => { | ||
const fullPreTitlesWithoutId = ['Common Factor', 'Period', 'Period', 'Analysis']; | ||
const fullTitlesWithoutId = ['Title', 'Duration', 'Start', 'Finish', '% Complete', 'Effort Driven']; | ||
const fullTitlesWithGroup = ['#', 'Common Factor - Title', 'Common Factor - Duration', 'Period - Start', 'Period - Finish', 'Analysis - % Complete', 'Analysis - Effort Driven']; | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-preheader-panel .slick-header-column:nth(1)') | ||
.trigger('mouseover') | ||
.trigger('contextmenu') | ||
.invoke('show'); | ||
|
||
cy.get('.slick-columnpicker') | ||
.find('.slick-columnpicker-list') | ||
.children() | ||
.each(($child, index) => { | ||
if (index <= 6) { | ||
expect($child.text()).to.eq(fullTitlesWithGroup[index]); | ||
} | ||
}); | ||
|
||
cy.get('.slick-columnpicker') | ||
.find('.slick-columnpicker-list') | ||
.children('li:nth-child(1)') | ||
.children('label') | ||
.should('contain', '#') | ||
.click(); | ||
|
||
cy.get('.slick-columnpicker > button.close > .close').click(); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-preheader-panel .slick-header-columns') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullPreTitlesWithoutId[index])); | ||
|
||
cy.get('#myGrid') | ||
.find('.slick-header:not(.slick-preheader-panel) .slick-header-columns') | ||
.children() | ||
.each(($child, index) => expect($child.text()).to.eq(fullTitlesWithoutId[index])); | ||
}); | ||
}); |
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
Oops, something went wrong.