Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): flux sort no longer being overidden by default FE sort #16235

Merged
merged 3 commits into from
Dec 16, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Bug Fixes

1. [16235](https://github.com/influxdata/influxdb/pull/16235): Removed default frontend sorting when flux queries specify sorting

### UI Improvements

## v2.0.0-alpha.21 [2019-12-13]
Expand Down
60 changes: 60 additions & 0 deletions ui/cypress/e2e/explorer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,66 @@ describe('DataExplorer', () => {
cy.getByTestID('raw-data--toggle').click()
})
})

describe('visualize tables', () => {
const numLines = 360

beforeEach(() => {
cy.flush()

cy.signin().then(({body}) => {
const {
org: {id},
bucket,
} = body
cy.wrap(body.org).as('org')
cy.wrap(bucket).as('bucket')

// POST 360 lines to the server
cy.writeData(lines(numLines))

// start at the data explorer
cy.fixture('routes').then(({orgs, explorer}) => {
cy.visit(`${orgs}/${id}${explorer}`)
})
})
})

it('can view table data', () => {
// build the query to return data from beforeEach
cy.getByTestID(`selector-list m`).click()
cy.getByTestID('selector-list v').click()
cy.getByTestID(`selector-list tv1`).click()
cy.getByTestID('selector-list sort').click()

cy.getByTestID('time-machine-submit-button').click()

cy.getByTestID('view-type--dropdown').click()
cy.getByTestID(`view-type--table`).click()
// check to see that the FE rows are NOT sorted with flux sort
cy.get('.table-graph-cell__sort-asc').should('not.exist')
cy.get('.table-graph-cell__sort-desc').should('not.exist')
cy.getByTestID('_value-table-header')
.should('exist')
.then(el => {
// get the column index
const columnIndex = el[0].getAttribute('data-column-index')
let prev = -Infinity
// get all the column values for that one and see if they are in order
cy.get(`[data-column-index="${columnIndex}"]`).each(val => {
const num = Number(val.text())
if (isNaN(num) === false) {
expect(num > prev).to.equal(true)
prev = num
}
})
})
cy.getByTestID('_value-table-header').click()
cy.get('.table-graph-cell__sort-asc').should('exist')
// TODO: complete testing when FE sorting functionality is sorted
// https://github.com/influxdata/influxdb/issues/16200
})
})
})

// skipping until feature flag feature is removed for deleteWithPredicate
Expand Down
3 changes: 2 additions & 1 deletion ui/src/shared/components/tables/TableCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ interface Props extends CellRendererProps {

class TableCell extends PureComponent<Props> {
public render() {
const {rowIndex, columnIndex, onHover} = this.props
const {data, rowIndex, columnIndex, onHover} = this.props
return (
<div
style={this.style}
className={this.class}
onClick={this.handleClick}
data-column-index={columnIndex}
data-row-index={rowIndex}
{...(rowIndex === 0 ? {'data-testID': `${data}-table-header`} : {})} // conditionally adds test-ID for tableCell header
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dang this is ugly

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ya but it’s less that conditionally rendering a component with 1 added prop / adding a testID unnecessarily and sullying the DOM

onMouseOver={onHover}
title={this.contents}
>
Expand Down
11 changes: 2 additions & 9 deletions ui/src/shared/components/tables/TableGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,9 @@ class TableGraph extends PureComponent<Props, State> {

if (headerSet.has(sortOptions.field)) {
return sortOptions
} else if (headerSet.has('_time')) {
return {...sortOptions, field: '_time'}
} else if (headerSet.has('_start')) {
return {...sortOptions, field: '_start'}
} else if (headerSet.has('_stop')) {
return {...sortOptions, field: '_stop'}
} else {
const headers = table.data[0]
return {...sortOptions, field: headers[0]}
}
const headers = table.data[0]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what does this do?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was the initial default statement set for filtering. While the intention of it is not clear to me, the function of it is to set the default sort to undefined

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

weird

return {...sortOptions, field: headers[0]}
}
}

Expand Down