1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | const $ = window.$ = require('jquery'); import React from 'react'; import { Button } from 'react-bootstrap'; import Select from 'react-select'; import QueryTable from './QueryTable'; import DatabaseSelect from './DatabaseSelect'; import { now, epochTimeXHoursAgo, epochTimeXDaysAgo, epochTimeXYearsAgo } from '../../modules/dates'; import { STATUS_OPTIONS, TIME_OPTIONS } from '../constants'; const propTypes = { actions: React.PropTypes.object.isRequired, }; class QuerySearch extends React.PureComponent { constructor(props) { super(props); this.state = { userLoading: false, userOptions: [], databaseId: null, userId: null, searchText: null, from: null, to: null, status: 'success', queriesArray: [], }; } componentWillMount() { this.fetchUsers(); this.refreshQueries(); } onUserClicked(userId) { this.setState({ userId }, () => { this.refreshQueries(); }); } onDbClicked(dbId) { this.setState({ databaseId: dbId }, () => { this.refreshQueries(); }); } onChange(db) { const val = (db) ? db.value : null; this.setState({ databaseId: val }); } getTimeFromSelection(selection) { switch (selection) { case 'now': return now(); case '1 hour ago': return epochTimeXHoursAgo(1); case '1 day ago': return epochTimeXDaysAgo(1); case '7 days ago': return epochTimeXDaysAgo(7); case '28 days ago': return epochTimeXDaysAgo(28); case '90 days ago': return epochTimeXDaysAgo(90); case '1 year ago': return epochTimeXYearsAgo(1); default: return null; } } changeFrom(user) { const val = (user) ? user.value : null; this.setState({ from: val }); } changeTo(status) { const val = (status) ? status.value : null; this.setState({ to: val }); } changeUser(user) { const val = (user) ? user.value : null; this.setState({ userId: val }); } insertParams(baseUrl, params) { const validParams = params.filter( function (p) { return p !== ''; } ); return baseUrl + '?' + validParams.join('&'); } changeStatus(status) { const val = (status) ? status.value : null; this.setState({ status: val }); } changeSearch(event) { this.setState({ searchText: event.target.value }); } fetchUsers() { this.setState({ userLoading: true }); const url = '/users/api/read'; $.getJSON(url, (data, status) => { if (status === 'success') { const options = []; for (let i = 0; i < data.pks.length; i++) { options.push({ value: data.pks[i], label: data.result[i].username }); } this.setState({ userOptions: options, userLoading: false }); } }); } refreshQueries() { const params = [ this.state.userId ? `user_id=${this.state.userId}` : '', this.state.databaseId ? `database_id=${this.state.databaseId}` : '', this.state.searchText ? `search_text=${this.state.searchText}` : '', this.state.status ? `status=${this.state.status}` : '', this.state.from ? `from=${this.getTimeFromSelection(this.state.from)}` : '', this.state.to ? `to=${this.getTimeFromSelection(this.state.to)}` : '', ]; const url = this.insertParams('/superset/search_queries', params); $.getJSON(url, (data, status) => { if (status === 'success') { const newQueriesArray = []; for (const id in data) { newQueriesArray.push(data[id]); } this.setState({ queriesArray: newQueriesArray }); } }); } render() { return ( <div> <div className="row space-1"> <div className="col-sm-2"> <Select name="select-user" placeholder="[User]" options={this.state.userOptions} value={this.state.userId} isLoading={this.state.userLoading} autosize={false} onChange={this.changeUser.bind(this)} /> </div> <div className="col-sm-2"> <DatabaseSelect onChange={this.onChange.bind(this)} databaseId={this.state.databaseId} /> </div> <div className="col-sm-4"> <input type="text" onChange={this.changeSearch.bind(this)} className="form-control input-sm" placeholder="Search Results" /> </div> <div className="col-sm-1"> <Select name="select-from" placeholder="[From]-" options={TIME_OPTIONS. slice(1, TIME_OPTIONS.length).map((t) => ({ value: t, label: t }))} value={this.state.from} autosize={false} onChange={this.changeFrom.bind(this)} /> </div> <div className="col-sm-1"> <Select name="select-to" placeholder="[To]-" options={TIME_OPTIONS.map((t) => ({ value: t, label: t }))} value={this.state.to} autosize={false} onChange={this.changeTo.bind(this)} /> </div> <div className="col-sm-1"> <Select name="select-status" placeholder="[Query Status]" options={STATUS_OPTIONS.map((s) => ({ value: s, label: s }))} value={this.state.status} isLoading={false} autosize={false} onChange={this.changeStatus.bind(this)} /> </div> <Button bsSize="small" bsStyle="success" onClick={this.refreshQueries.bind(this)}> Search </Button> </div> <QueryTable columns={[ 'state', 'db', 'user', 'date', 'progress', 'rows', 'sql', 'querylink', ]} onUserClicked={this.onUserClicked.bind(this)} onDbClicked={this.onDbClicked.bind(this)} queries={this.state.queriesArray} actions={this.props.actions} /> </div> ); } } QuerySearch.propTypes = propTypes; export default QuerySearch; |