Skip to content

Commit

Permalink
Fixes filters emitted from table viz (#2335)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Mar 6, 2017
1 parent bd480e0 commit ad4a950
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ class ChartContainer extends React.PureComponent {
{}
),

addFilter: () => {},

removeFilter: () => {},

done: () => {},
clearError: () => {
// no need to do anything here since Alert is closable
Expand Down
23 changes: 12 additions & 11 deletions superset/assets/visualizations/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,24 @@ function tableVis(slice, payload) {
.enter()
.append('tr')
.selectAll('td')
.data((row) => data.columns.map((c) => {
let val = row[c];
.data(row => data.columns.map(c => {
const val = row[c];
let html;
const isMetric = metrics.indexOf(c) >= 0;
if (c === 'timestamp') {
val = timestampFormatter(val);
html = timestampFormatter(val);
}
if (typeof(val) === 'string') {
val = `<span class="like-pre">${val}</span>`;
html = `<span class="like-pre">${val}</span>`;
}
if (isMetric) {
html = slice.d3format(c, val);
}
return {
col: c,
val,
isMetric: metrics.indexOf(c) >= 0,
html,
isMetric,
};
}))
.enter()
Expand Down Expand Up @@ -118,12 +124,7 @@ function tableVis(slice, payload) {
.style('cursor', function (d) {
return (!d.isMetric) ? 'pointer' : '';
})
.html((d) => {
if (d.isMetric) {
return slice.d3format(d.col, d.val);
}
return d.val;
});
.html(d => d.html ? d.html : d.val);
const height = slice.height();
let paging = false;
let pageLength;
Expand Down

0 comments on commit ad4a950

Please sign in to comment.