Add hot reloading of related datasources for external queries

This commit is contained in:
Andrew Kingston 2021-02-08 09:51:20 +00:00
parent 6e8912367c
commit bd1bd8ee2a
2 changed files with 9 additions and 4 deletions

View File

@ -1,10 +1,15 @@
import { notificationStore } from "../store/notification"
import { notificationStore, datasourceStore } from "../store"
import API from "./api"
/**
* Executes a query against an external data connector.
*/
export const executeQuery = async ({ queryId, parameters, notify = false }) => {
export const executeQuery = async ({ queryId, parameters }) => {
const query = await API.get({ url: `/api/queries/${queryId}` })
if (query?.datasourceId == null) {
notificationStore.danger("That query couldn't be found")
return
}
const res = await API.post({
url: `/api/queries/${queryId}`,
body: {
@ -13,8 +18,9 @@ export const executeQuery = async ({ queryId, parameters, notify = false }) => {
})
if (res.error) {
notificationStore.danger("An error has occurred")
} else if (notify) {
} else if (!query.readable) {
notificationStore.success("Query executed successfully")
datasourceStore.actions.invalidateDatasource(query.datasourceId)
}
return res
}

View File

@ -46,7 +46,6 @@ const queryExecutionHandler = async action => {
datasourceId,
queryId,
parameters: queryParams,
notify: true,
})
}