Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Issue 362 options dropdown refactor #387

Merged
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
151 changes: 35 additions & 116 deletions app/components/Settings/OptionsDropdown/OptionsDropdown.react.js
Original file line number Diff line number Diff line change
@@ -1,142 +1,61 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {flatten, keys} from 'ramda';
import Select from 'react-select';
import SQLOptions from './sql-options';
import ESIndicesOptions from './es-indices-options';
import ESDocsOptions from './es-docs-options';

export default class OptionsDropdown extends Component {
constructor(props) {
super(props);
this.renderSQLOptions = this.renderSQLOptions.bind(this);
this.renderElasticsearchIndecies = this.renderElasticsearchIndecies.bind(this);
this.renderElasticsearchDocs = this.renderElasticsearchDocs.bind(this);
}

static propTypes = {
// See type of react-select's Select `value` property
Copy link
Contributor

@n-riesco n-riesco Feb 26, 2018

Choose a reason for hiding this comment

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

I expected selectedTable and selectedIndex to be PropTypes.string (since we used them as keys).
Would PropTypes.string break anything?

selectedTable: PropTypes.any,
selectedIndex: PropTypes.any,
selectedTable: PropTypes.string,
selectedIndex: PropTypes.string,

tablesRequest: PropTypes.object,
setTable: PropTypes.func,
elasticsearchMappingsRequest: PropTypes.object,
setIndex: PropTypes.func
}

renderSQLOptions() {
const {selectedTable, tablesRequest, setTable} = this.props;
if (!tablesRequest.status) {
return null;
} else if (tablesRequest.status === 'loading') {
return <div>{'Loading tables'}</div>;
} else if (tablesRequest.status > 300) {
// TODO - Make this prettier.
return (
<div>
<div>{'Hm.. there was an error loading up your tables'}</div>
<div style={{color: 'red'}}>{JSON.stringify(tablesRequest)}</div>
</div>
);
} else if (tablesRequest.status === 200) {
const tablesList = flatten(tablesRequest.content);
if (tablesList.length === 0) {
return <div>{'No tables found'}</div>;
}
return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={tablesList.map(t => ({label: t, value: t}))}
value={selectedTable}
searchable={false}
onChange={option => {
setTable(option.value);
}}
/>
</div>
);
}
/**
* Options Dropdown is an options drop down
* @param {object} props - Component Properties
* @param {object} props.selectedTable - The selected table
* @param {object} props.tablesRequest - The Requested Table
* @param {function} props.setTable - The set table function
* @param {object} props.elasticsearchMappingsRequest - The ES Mapping Request
* @param {object} props.selectedTable - The selected table
* @param {object} props.selectedIndex - The Selected Index
* @param {function} props.setIndex - The Set the index
*/
constructor(props) {
super(props);
}

renderElasticsearchIndecies() {
render() {
const {
selectedTable,
tablesRequest,
setTable,
elasticsearchMappingsRequest: EMR,
setIndex,
selectedIndex
} = this.props;
if (!EMR.status) {
return null;
} else if (EMR.status === 'loading') {
return <div>{'Loading docs'}</div>;
} else if (EMR.status > 300) {
// TODO - Make this prettier.
return (
<div>
<div>{'There was an error loading up your docs'}</div>
<div style={{color: 'red'}}>{JSON.stringify(EMR)}</div>
</div>
);
} else if (EMR.status === 200) {
const indeciesList = keys(EMR.content);
if (indeciesList.length === 0) {
return <div>{'No docs found'}</div>;
}
return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={indeciesList.map(t => ({label: t, value: t}))}
value={selectedIndex}
searchable={false}
onChange={option => {
setIndex(option.value);
}}
/>
</div>
);
}
}

renderElasticsearchDocs() {
const {
selectedTable,
selectedIndex,
elasticsearchMappingsRequest: EMR,
setTable
} = this.props;

if (!selectedIndex) {
return null;
}

const tablesList = keys(EMR.content[selectedIndex].mappings);
if (tablesList.length === 0) {
return <div>{'No docs found'}</div>;
}

return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={tablesList.map(t => ({label: t, value: t}))}
value={selectedTable}
searchable={false}
onChange={option => {
setTable(option.value);
}}
/>
</div>
);
}

render() {
return (
<div style={{marginTop: '25px'}}>
{this.renderSQLOptions()}
{this.renderElasticsearchIndecies()}
{this.renderElasticsearchDocs()}
<SQLOptions selectedTable={selectedTable}
tablesRequest={tablesRequest}
setTable={setTable}
/>
<ESIndicesOptions elasticsearchMappingsRequest={EMR}
setIndex={setIndex}
selectedIndex={selectedIndex}
/>
<ESDocsOptions selectedTable={selectedTable}
selectedIndex={selectedIndex}
elasticsearchMappingsRequest={EMR}
setTable={setTable}
/>
</div>
);
}
Expand Down
58 changes: 58 additions & 0 deletions app/components/Settings/OptionsDropdown/es-docs-options.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {keys} from 'ramda';
import Select from 'react-select';

export default class ESDocsOptions extends Component {
static propTypes = {
selectedTable: PropTypes.string,
selectedIndex: PropTypes.string,
setTable: PropTypes.func,
elasticsearchMappingsRequest: PropTypes.object
}

/**
* ES Docs Options is an options drop down
* @param {object} props - Component Properties
* @param {object} props.elasticsearchMappingsRequest - The ES Mapping Request
* @param {object} props.selectedTable - The selected table
* @param {object} props.selectedIndex - The Selected Index
* @param {object} props.setTable - The table
*/
constructor(props) {
super(props);
}

render() {
const {
selectedTable,
selectedIndex,
elasticsearchMappingsRequest: EMR,
setTable
} = this.props;

if (!selectedIndex) {
return null;
}

const tablesList = keys(EMR.content[selectedIndex].mappings);
if (tablesList.length === 0) {
return <div>{'No docs found'}</div>;
}

return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={tablesList.map(t => ({label: t, value: t}))}
value={selectedTable}
searchable={false}
onChange={option => {
setTable(option.value);
}}
/>
</div>
);
}
}
63 changes: 63 additions & 0 deletions app/components/Settings/OptionsDropdown/es-indices-options.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {keys} from 'ramda';
import Select from 'react-select';

export default class ESIndicesOptions extends Component {
static propTypes = {
elasticsearchMappingsRequest: PropTypes.object,
setIndex: PropTypes.func,
selectedIndex: PropTypes.string
};

/**
* ES Indicies Options is an options drop down
* @param {object} props - Component Properties
* @param {object} props.elasticsearchMappingsRequest - The ES Mapping Request
* @param {object} props.setIndex - The Set Index Function
* @param {object} props.selectedIndex - The Selected Index
*/
constructor(props) {
super(props);
}

render() {
const {
elasticsearchMappingsRequest: EMR,
setIndex,
selectedIndex
} = this.props;
if (!EMR.status) {
return null;
} else if (EMR.status === 'loading') {
return <div>{'Loading docs'}</div>;
} else if (EMR.status > 300) {
// TODO - Make this prettier.
return (
<div>
<div>{'There was an error loading up your docs'}</div>
<div style={{color: 'red'}}>{JSON.stringify(EMR)}</div>
</div>
);
} else if (EMR.status === 200) {
const indeciesList = keys(EMR.content);
if (indeciesList.length === 0) {
return <div>{'No docs found'}</div>;
}
return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={indeciesList.map(t => ({label: t, value: t}))}
value={selectedIndex}
searchable={false}
onChange={option => {
setIndex(option.value);
}}
/>
</div>
);
}
}
}
60 changes: 60 additions & 0 deletions app/components/Settings/OptionsDropdown/sql-options.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {flatten} from 'ramda';
import Select from 'react-select';

export default class SQLOptions extends Component {

static propTypes = {
selectedTable: PropTypes.string,
tablesRequest: PropTypes.object,
setTable: PropTypes.func
};

/**
* SQLOptions is an options drop down down
* @param {object} props - Component Properties
* @param {object} props.selectedTable - The selected table
* @param {object} props.tablesRequest - The Requested Table
* @param {function} props.setTable - The set table function
*/
constructor(props) {
super(props);
}

render() {
const {selectedTable, tablesRequest, setTable} = this.props;
if (!tablesRequest.status) {
return null;
} else if (tablesRequest.status === 'loading') {
return <div>{'Loading tables'}</div>;
} else if (tablesRequest.status > 300) {
// TODO - Make this prettier.
return (
<div>
<div>{'Hm.. there was an error loading up your tables'}</div>
<div style={{color: 'red'}}>{JSON.stringify(tablesRequest)}</div>
</div>
);
} else if (tablesRequest.status === 200) {
const tablesList = flatten(tablesRequest.content);
if (tablesList.length === 0) {
return <div>{'No tables found'}</div>;
}
return (
<div className={'dropdown'}
id="test-table-dropdown"
>
<Select
options={tablesList.map(t => ({label: t, value: t}))}
value={selectedTable}
searchable={false}
onChange={option => {
setTable(option.value);
}}
/>
</div>
);
}
}
}