[explore] fixing bugs in controls (#2496)

This commit is contained in:
Maxime Beauchemin 2017-03-28 08:45:19 -07:00 committed by GitHub
parent 56f28859b7
commit e14b74fdbf
2 changed files with 8 additions and 8 deletions

View File

@ -22,7 +22,6 @@ operatorsArr.forEach(op => {
});
const propTypes = {
choices: PropTypes.array,
changeFilter: PropTypes.func,
removeFilter: PropTypes.func,
filter: PropTypes.object.isRequired,
@ -32,7 +31,6 @@ const propTypes = {
const defaultProps = {
changeFilter: () => {},
removeFilter: () => {},
choices: [],
datasource: null,
};
@ -54,8 +52,7 @@ export default class Filter extends React.Component {
type: 'GET',
url: `/superset/filter/${datasource.type}/${datasource.id}/${col}/`,
success: (data) => {
this.props.changeFilter('choices', data);
this.setState({ valuesLoading: false });
this.setState({ valuesLoading: false, valueChoices: data });
},
});
}
@ -100,7 +97,7 @@ export default class Filter extends React.Component {
name="filter-value"
value={filter.val}
isLoading={this.state.valuesLoading}
choices={filter.choices}
choices={this.state.valueChoices}
onChange={this.changeSelect.bind(this)}
/>
);

View File

@ -709,8 +709,7 @@ class DruidDatasource(Model, BaseDatasource):
client = self.cluster.get_pydruid_client()
client.topn(**qry)
df = client.export_pandas()
return [row[0] for row in df.to_records(index=False)]
return [row[column_name] for row in df.to_records(index=False)]
def get_query_str( # noqa / druid
self,
@ -981,7 +980,11 @@ class DruidDatasource(Model, BaseDatasource):
eq = flt['val']
cond = None
if op in ('in', 'not in'):
eq = [types.replace("'", '').strip() for types in eq]
eq = [
types.replace("'", '').strip()
if isinstance(types, basestring)
else types
for types in eq]
elif not isinstance(flt['val'], basestring):
eq = eq[0] if len(eq) > 0 else ''
if col in self.num_cols: