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

Search datasources by name. #6909

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 22 additions & 5 deletions client/app/pages/data-sources/DataSourcesList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from "react";
import PropTypes from "prop-types";

import Button from "antd/lib/button";
import Input from "antd/lib/input";
import routeWithUserSession from "@/components/ApplicationArea/routeWithUserSession";
import navigateTo from "@/components/ApplicationArea/navigateTo";
import CardsList from "@/components/cards-list/CardsList";
Expand All @@ -17,6 +18,7 @@ import DataSource, { IMG_ROOT } from "@/services/data-source";
import { policy } from "@/services/policy";
import recordEvent from "@/services/recordEvent";
import routes from "@/services/routes";
import "./DataSourcesList.less";

export function DataSourcesListComponent({ dataSources, onClickCreate }) {
const items = dataSources.map(dataSource => ({
Expand Down Expand Up @@ -44,7 +46,7 @@ export function DataSourcesListComponent({ dataSources, onClickCreate }) {

registerComponent("DataSourcesListComponent", DataSourcesListComponent);

class DataSourcesList extends React.Component {
export default class DataSourcesList extends React.Component {
static propTypes = {
isNewDataSourcePage: PropTypes.bool,
onError: PropTypes.func,
Expand All @@ -58,6 +60,7 @@ class DataSourcesList extends React.Component {
state = {
dataSourceTypes: [],
dataSources: [],
displayList:[],
loading: true,
};

Expand All @@ -69,6 +72,7 @@ class DataSourcesList extends React.Component {
this.setState(
{
dataSources: values[0],
displayList: values[0],
dataSourceTypes: values[1],
loading: false,
},
Expand Down Expand Up @@ -99,7 +103,7 @@ class DataSourcesList extends React.Component {

return DataSource.create(target).then(dataSource => {
this.setState({ loading: true });
DataSource.query().then(dataSources => this.setState({ dataSources, loading: false }));
DataSource.query().then(dataSources => this.setState({ dataSources, displayList:dataSources,loading: false }));
return dataSource;
});
};
Expand Down Expand Up @@ -127,6 +131,16 @@ class DataSourcesList extends React.Component {
});
};

filterDatasourceList = (filterString, dataSources) => {

if(filterString.length){
const filtered = dataSources.filter( d => d.name.toLowerCase().includes(filterString) )
this.setState({ displayList:filtered})
}else{
this.setState({ dataSources, displayList:dataSources,loading: false })
}
}

render() {
const newDataSourceProps = {
type: "primary",
Expand All @@ -137,19 +151,22 @@ class DataSourcesList extends React.Component {

return (
<div>
<div className="m-b-15">
<div className="m-b-15 datasources-top-bar">
<Button {...newDataSourceProps}>
<i className="fa fa-plus m-r-5" aria-hidden="true" />
New Data Source
</Button>
<div className="searchbar">
<Input placeholder="Search Datasource Name" onChange={e => this.filterDatasourceList(e.target.value, this.state.dataSources)} />
</div>
<DynamicComponent name="DataSourcesListExtra" />
</div>
{this.state.loading ? (
<LoadingState className="" />
) : (
<DynamicComponent
name="DataSourcesListComponent"
dataSources={this.state.dataSources}
dataSources={this.state.displayList}
onClickCreate={this.showCreateSourceDialog}
/>
)}
Expand All @@ -161,7 +178,7 @@ class DataSourcesList extends React.Component {
const DataSourcesListPage = wrapSettingsTab(
"DataSources.List",
{
permission: "admin",
permission: "list_data_sources",
title: "Data Sources",
path: "data_sources",
order: 1,
Expand Down
55 changes: 55 additions & 0 deletions client/app/pages/data-sources/DataSourcesList.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import React from "react";
import renderer from "react-test-renderer";
import { mount, shallow } from 'enzyme';
import Button from "antd/lib/button";

import DataSourcesList from "./DataSourcesList";

const mockDataSources = [
{
"id": 2,
"name": "Cloudwatch-East-ASVPARTNERSHIPSREWARDS-nonprod-xqd918",
"type": "pg",
"syntax": "sql",
"paused": 0,
"pause_reason": null,
"supports_auto_limit": true,
"view_only": false
},
{
"id": 1,
"name": "Naveed Tests DS",
"type": "pg",
"syntax": "sql",
"paused": 0,
"pause_reason": null,
"supports_auto_limit": true,
"view_only": false
}
]
const mockCreate = () => {
console.log("mocking ds creation")
}


describe("Tests DatasourceList", () => {

it("renders correctly", () => {
const wrapper = shallow( <DataSourcesList />)
expect(wrapper).toHaveLength(1);
});

it("list filtering works correctly", () => {
const wrapper = shallow( <DataSourcesList />)

wrapper.instance().state = {
dataSourceTypes: [],
dataSources: mockDataSources,
displayList:mockDataSources,
loading: false,
}
wrapper.instance().filterDatasourceList("naveed",mockDataSources)
expect(wrapper.instance().state.displayList).toHaveLength(1);
});

});