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

[Bugfix] Issues with table filtering #4073

Merged
merged 2 commits into from
Dec 17, 2017
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions superset/assets/javascripts/chart/Chart.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class Chart extends React.PureComponent {
this.props.clearFilter();
}

removeFilter(col, vals) {
this.props.removeFilter(col, vals);
removeFilter(col, vals, refresh = true) {
this.props.removeFilter(col, vals, refresh);
}

clearError() {
Expand Down
4 changes: 2 additions & 2 deletions superset/assets/javascripts/dashboard/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export function clearFilter(sliceId) {
}

export const REMOVE_FILTER = 'REMOVE_FILTER';
export function removeFilter(sliceId, col, vals) {
return { type: REMOVE_FILTER, sliceId, col, vals };
export function removeFilter(sliceId, col, vals, refresh = true) {
return { type: REMOVE_FILTER, sliceId, col, vals, refresh };
}

export const UPDATE_DASHBOARD_LAYOUT = 'UPDATE_DASHBOARD_LAYOUT';
Expand Down
46 changes: 21 additions & 25 deletions superset/assets/javascripts/dashboard/reducers.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,27 +138,26 @@ export const dashboard = function (state = {}, action) {
return state;
}

let filters;
let filters = state.filters;
const { sliceId, col, vals, merge, refresh } = action;
const filterKeys = ['__from', '__to', '__time_col',
'__time_grain', '__time_origin', '__granularity'];
if (filterKeys.indexOf(col) >= 0 ||
selectedSlice.formData.groupby.indexOf(col) !== -1) {
if (!(sliceId in state.filters)) {
filters = { ...state.filters, [sliceId]: {} };
}

let newFilter = {};
if (state.filters[sliceId] && !(col in state.filters[sliceId]) || !merge) {
newFilter = { ...state.filters[sliceId], [col]: vals };
if (!(sliceId in filters)) {
// Straight up set the filters if none existed for the slice
newFilter = { [col]: vals };
} else if (filters[sliceId] && !(col in filters[sliceId]) || !merge) {
newFilter = { ...filters[sliceId], [col]: vals };
// d3.merge pass in array of arrays while some value form filter components
// from and to filter box require string to be process and return
} else if (state.filters[sliceId][col] instanceof Array) {
newFilter[col] = d3.merge([state.filters[sliceId][col], vals]);
} else if (filters[sliceId][col] instanceof Array) {
newFilter[col] = d3.merge([filters[sliceId][col], vals]);
} else {
newFilter[col] = d3.merge([[state.filters[sliceId][col]], vals])[0] || '';
newFilter[col] = d3.merge([[filters[sliceId][col]], vals])[0] || '';
}
filters = { ...state.filters, [sliceId]: newFilter };
filters = { ...filters, [sliceId]: newFilter };
}
return { ...state, filters, refresh };
},
Expand All @@ -168,21 +167,18 @@ export const dashboard = function (state = {}, action) {
return { ...state, filter: newFilters, refresh: true };
},
[actions.REMOVE_FILTER]() {
const newFilters = { ...state.filters };
const { sliceId, col, vals } = action;

if (sliceId in state.filters) {
if (col in state.filters[sliceId]) {
const a = [];
newFilters[sliceId][col].forEach(function (v) {
if (vals.indexOf(v) < 0) {
a.push(v);
}
});
newFilters[sliceId][col] = a;
}
const { sliceId, col, vals, refresh } = action;
const excluded = new Set(vals);
const valFilter = val => !excluded.has(val);

let filters = state.filters;
// Have to be careful not to modify the dashboard state so that
// the render actually triggers
if (sliceId in state.filters && col in state.filters[sliceId]) {
const newFilter = filters[sliceId][col].filter(valFilter);
filters = { ...filters, [sliceId]: newFilter };
}
return { ...state, filter: newFilters, refresh: true };
return { ...state, filters, refresh };
},

// slice reducer
Expand Down
7 changes: 7 additions & 0 deletions superset/assets/visualizations/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ function tableVis(slice, payload) {
return d;
});

const filters = slice.getFilters();
table.append('tbody')
.selectAll('tr')
.data(data.records)
Expand Down Expand Up @@ -119,6 +120,12 @@ function tableVis(slice, payload) {
.attr('data-sort', function (d) {
return (d.isMetric) ? d.val : null;
})
// Check if the dashboard currently has a filter for each row
.classed('filtered', d =>
filters &&
filters[d.col] &&
filters[d.col].indexOf(d.val) >= 0,
)
.on('click', function (d) {
if (!d.isMetric && fd.table_filter) {
const td = d3.select(this);
Expand Down