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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 1x 11x 11x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 5x 1x 1x 1x 1x | /* global notify */ import shortid from 'shortid'; import { now } from '../modules/dates'; const $ = require('jquery'); export const RESET_STATE = 'RESET_STATE'; export const ADD_QUERY_EDITOR = 'ADD_QUERY_EDITOR'; export const CLONE_QUERY_TO_NEW_TAB = 'CLONE_QUERY_TO_NEW_TAB'; export const REMOVE_QUERY_EDITOR = 'REMOVE_QUERY_EDITOR'; export const MERGE_TABLE = 'MERGE_TABLE'; export const REMOVE_TABLE = 'REMOVE_TABLE'; export const END_QUERY = 'END_QUERY'; export const REMOVE_QUERY = 'REMOVE_QUERY'; export const EXPAND_TABLE = 'EXPAND_TABLE'; export const COLLAPSE_TABLE = 'COLLAPSE_TABLE'; export const QUERY_EDITOR_SETDB = 'QUERY_EDITOR_SETDB'; export const QUERY_EDITOR_SET_SCHEMA = 'QUERY_EDITOR_SET_SCHEMA'; export const QUERY_EDITOR_SET_TITLE = 'QUERY_EDITOR_SET_TITLE'; export const QUERY_EDITOR_SET_AUTORUN = 'QUERY_EDITOR_SET_AUTORUN'; export const QUERY_EDITOR_SET_SQL = 'QUERY_EDITOR_SET_SQL'; export const QUERY_EDITOR_SET_SELECTED_TEXT = 'QUERY_EDITOR_SET_SELECTED_TEXT'; export const SET_DATABASES = 'SET_DATABASES'; export const SET_ACTIVE_QUERY_EDITOR = 'SET_ACTIVE_QUERY_EDITOR'; export const SET_ACTIVE_SOUTHPANE_TAB = 'SET_ACTIVE_SOUTHPANE_TAB'; export const ADD_ALERT = 'ADD_ALERT'; export const REMOVE_ALERT = 'REMOVE_ALERT'; export const REFRESH_QUERIES = 'REFRESH_QUERIES'; export const RUN_QUERY = 'RUN_QUERY'; export const START_QUERY = 'START_QUERY'; export const STOP_QUERY = 'STOP_QUERY'; export const REQUEST_QUERY_RESULTS = 'REQUEST_QUERY_RESULTS'; export const QUERY_SUCCESS = 'QUERY_SUCCESS'; export const QUERY_FAILED = 'QUERY_FAILED'; export const CLEAR_QUERY_RESULTS = 'CLEAR_QUERY_RESULTS'; export const REMOVE_DATA_PREVIEW = 'REMOVE_DATA_PREVIEW'; export const CHANGE_DATA_PREVIEW_ID = 'CHANGE_DATA_PREVIEW_ID'; export const SAVE_QUERY = 'SAVE_QUERY'; export function resetState() { return { type: RESET_STATE }; } export function saveQuery(query) { const url = '/savedqueryviewapi/api/create'; $.ajax({ type: 'POST', url, data: query, success: () => notify.success('Your query was saved'), error: () => notify.error('Your query could not be saved'), dataType: 'json', }); return { type: SAVE_QUERY }; } export function startQuery(query) { Object.assign(query, { id: query.id ? query.id : shortid.generate(), progress: 0, startDttm: now(), state: (query.runAsync) ? 'pending' : 'running', cached: false, }); return { type: START_QUERY, query }; } export function querySuccess(query, results) { return { type: QUERY_SUCCESS, query, results }; } export function queryFailed(query, msg) { return { type: QUERY_FAILED, query, msg }; } export function stopQuery(query) { return { type: STOP_QUERY, query }; } export function clearQueryResults(query) { return { type: CLEAR_QUERY_RESULTS, query }; } export function removeDataPreview(table) { return { type: REMOVE_DATA_PREVIEW, table }; } export function requestQueryResults(query) { return { type: REQUEST_QUERY_RESULTS, query }; } export function fetchQueryResults(query) { return function (dispatch) { dispatch(requestQueryResults(query)); const sqlJsonUrl = `/superset/results/${query.resultsKey}/`; $.ajax({ type: 'GET', dataType: 'json', url: sqlJsonUrl, success(results) { dispatch(querySuccess(query, results)); }, error(err) { let msg = 'Failed at retrieving results from the results backend'; if (err.responseJSON && err.responseJSON.error) { msg = err.responseJSON.error; } dispatch(queryFailed(query, msg)); }, }); }; } export function runQuery(query) { return function (dispatch) { dispatch(startQuery(query)); const sqlJsonRequest = { client_id: query.id, database_id: query.dbId, json: true, runAsync: query.runAsync, schema: query.schema, sql: query.sql, sql_editor_id: query.sqlEditorId, tab: query.tab, tmp_table_name: query.tempTableName, select_as_cta: query.ctas, }; const sqlJsonUrl = '/superset/sql_json/' + location.search; $.ajax({ type: 'POST', dataType: 'json', url: sqlJsonUrl, data: sqlJsonRequest, success(results) { if (!query.runAsync) { dispatch(querySuccess(query, results)); } }, error(err, textStatus, errorThrown) { let msg; try { msg = err.responseJSON.error; } catch (e) { if (err.responseText !== undefined) { msg = err.responseText; } } if (textStatus === 'error' && errorThrown === '') { msg = 'Could not connect to server'; } else if (msg === null) { msg = `[${textStatus}] ${errorThrown}`; } dispatch(queryFailed(query, msg)); }, }); }; } export function postStopQuery(query) { return function (dispatch) { const stopQueryUrl = '/superset/stop_query/'; const stopQueryRequestData = { client_id: query.id }; $.ajax({ type: 'POST', dataType: 'json', url: stopQueryUrl, data: stopQueryRequestData, success() { if (!query.runAsync) { dispatch(stopQuery(query)); } }, }); }; } export function setDatabases(databases) { return { type: SET_DATABASES, databases }; } export function addQueryEditor(queryEditor) { const newQe = Object.assign({}, queryEditor, { id: shortid.generate() }); return { type: ADD_QUERY_EDITOR, queryEditor: newQe }; } export function cloneQueryToNewTab(query) { return { type: CLONE_QUERY_TO_NEW_TAB, query }; } export function addAlert(alert) { const o = Object.assign({}, alert); o.id = shortid.generate(); return { type: ADD_ALERT, alert: o }; } export function removeAlert(alert) { return { type: REMOVE_ALERT, alert }; } export function setActiveQueryEditor(queryEditor) { return { type: SET_ACTIVE_QUERY_EDITOR, queryEditor }; } export function setActiveSouthPaneTab(tabId) { return { type: SET_ACTIVE_SOUTHPANE_TAB, tabId }; } export function removeQueryEditor(queryEditor) { return { type: REMOVE_QUERY_EDITOR, queryEditor }; } export function removeQuery(query) { return { type: REMOVE_QUERY, query }; } export function queryEditorSetDb(queryEditor, dbId) { return { type: QUERY_EDITOR_SETDB, queryEditor, dbId }; } export function queryEditorSetSchema(queryEditor, schema) { return { type: QUERY_EDITOR_SET_SCHEMA, queryEditor, schema }; } export function queryEditorSetAutorun(queryEditor, autorun) { return { type: QUERY_EDITOR_SET_AUTORUN, queryEditor, autorun }; } export function queryEditorSetTitle(queryEditor, title) { return { type: QUERY_EDITOR_SET_TITLE, queryEditor, title }; } export function queryEditorSetSql(queryEditor, sql) { return { type: QUERY_EDITOR_SET_SQL, queryEditor, sql }; } export function queryEditorSetSelectedText(queryEditor, sql) { return { type: QUERY_EDITOR_SET_SELECTED_TEXT, queryEditor, sql }; } export function mergeTable(table, query) { return { type: MERGE_TABLE, table, query }; } export function addTable(query, tableName, schemaName) { return function (dispatch) { let url = `/superset/table/${query.dbId}/${tableName}/${schemaName}/`; $.get(url, (data) => { const dataPreviewQuery = { id: shortid.generate(), dbId: query.dbId, sql: data.selectStar, tableName, sqlEditorId: null, tab: '', runAsync: false, ctas: false, }; // Merge table to tables in state dispatch(mergeTable( Object.assign(data, { dbId: query.dbId, queryEditorId: query.id, schema: schemaName, expanded: true, }), dataPreviewQuery) ); // Run query to get preview data for table dispatch(runQuery(dataPreviewQuery)); }) .fail(() => { dispatch( addAlert({ msg: 'Error occurred while fetching metadata', bsStyle: 'danger', }) ); }); url = `/superset/extra_table_metadata/${query.dbId}/${tableName}/${schemaName}/`; $.get(url, (data) => { const table = { dbId: query.dbId, queryEditorId: query.id, schema: schemaName, name: tableName, }; Object.assign(table, data); dispatch(mergeTable(table)); }); }; } export function changeDataPreviewId(oldQueryId, newQuery) { return { type: CHANGE_DATA_PREVIEW_ID, oldQueryId, newQuery }; } export function reFetchQueryResults(query) { return function (dispatch) { const newQuery = { id: shortid.generate(), dbId: query.dbId, sql: query.sql, tableName: query.tableName, sqlEditorId: null, tab: '', runAsync: false, ctas: false, }; dispatch(runQuery(newQuery)); dispatch(changeDataPreviewId(query.id, newQuery)); }; } export function expandTable(table) { return { type: EXPAND_TABLE, table }; } export function collapseTable(table) { return { type: COLLAPSE_TABLE, table }; } export function removeTable(table) { return { type: REMOVE_TABLE, table }; } export function refreshQueries(alteredQueries) { return { type: REFRESH_QUERIES, alteredQueries }; } export function popStoredQuery(urlId) { return function (dispatch) { $.ajax({ type: 'GET', url: `/kv/${urlId}`, success: (data) => { const newQuery = JSON.parse(data); const queryEditorProps = { title: newQuery.title ? newQuery.title : 'shared query', dbId: newQuery.dbId ? parseInt(newQuery.dbId, 10) : null, schema: newQuery.schema ? newQuery.schema : null, autorun: newQuery.autorun ? newQuery.autorun : false, sql: newQuery.sql ? newQuery.sql : 'SELECT ...', }; dispatch(addQueryEditor(queryEditorProps)); }, error: () => notify.error("The query couldn't be loaded"), }); }; } export function popSavedQuery(saveQueryId) { return function (dispatch) { $.ajax({ type: 'GET', url: `/savedqueryviewapi/api/get/${saveQueryId}`, success: (data) => { const sq = data.result; const queryEditorProps = { title: sq.label, dbId: sq.db_id ? parseInt(sq.db_id, 10) : null, schema: sq.schema, autorun: false, sql: sq.sql, }; dispatch(addQueryEditor(queryEditorProps)); }, error: () => notify.error("The query couldn't be loaded"), }); }; } |