## Description
This PR upgrades Prettier to v2 + enforces TypeScript’s [`import
type`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export)
syntax where applicable. It’s submitted as a separate PR so we can merge
it easily.
As a part of this PR, we reformat the codebase heavily:
- add `import type` everywhere where it’s required, and
- re-format the code to account for Prettier 2’s breaking changes:
https://prettier.io/blog/2020/03/21/2.0.0.html#breaking-changes
This PR is submitted against `release` to make sure all new code by team
members will adhere to new formatting standards, and we’ll have fewer
conflicts when merging `bundle-optimizations` into `release`. (I’ll
merge `release` back into `bundle-optimizations` once this PR is
merged.)
### Why is this needed?
This PR is needed because, for the Lodash optimization from
7cbb12af88,
we need to use `import type`. Otherwise, `babel-plugin-lodash` complains
that `LoDashStatic` is not a lodash function.
However, just using `import type` in the current codebase will give you
this:
<img width="962" alt="Screenshot 2023-03-08 at 17 45 59"
src="https://user-images.githubusercontent.com/2953267/223775744-407afa0c-e8b9-44a1-90f9-b879348da57f.png">
That’s because Prettier 1 can’t parse `import type` at all. To parse it,
we need to upgrade to Prettier 2.
### Why enforce `import type`?
Apart from just enabling `import type` support, this PR enforces
specifying `import type` everywhere it’s needed. (Developers will get
immediate TypeScript and ESLint errors when they forget to do so.)
I’m doing this because I believe `import type` improves DX and makes
refactorings easier.
Let’s say you had a few imports like below. Can you tell which of these
imports will increase the bundle size? (Tip: it’s not all of them!)
```ts
// app/client/src/workers/Linting/utils.ts
import { Position } from "codemirror";
import { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
It’s pretty hard, right?
What about now?
```ts
// app/client/src/workers/Linting/utils.ts
import type { Position } from "codemirror";
import type { LintError as JSHintError, LintOptions } from "jshint";
import { get, isEmpty, isNumber, keys, last, set } from "lodash";
```
Now, it’s clear that only `lodash` will be bundled.
This helps developers to see which imports are problematic, but it
_also_ helps with refactorings. Now, if you want to see where
`codemirror` is bundled, you can just grep for `import \{.*\} from
"codemirror"` – and you won’t get any type-only imports.
This also helps (some) bundlers. Upon transpiling, TypeScript erases
type-only imports completely. In some environment (not ours), this makes
the bundle smaller, as the bundler doesn’t need to bundle type-only
imports anymore.
## Type of change
- Chore (housekeeping or task changes that don't impact user perception)
## How Has This Been Tested?
This was tested to not break the build.
### Test Plan
> Add Testsmith test cases links that relate to this PR
### Issues raised during DP testing
> Link issues raised during DP testing for better visiblity and tracking
(copy link from comments dropped on this PR)
## Checklist:
### Dev activity
- [x] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] PR is being merged under a feature flag
### QA activity:
- [ ] Test plan has been approved by relevant developers
- [ ] Test plan has been peer reviewed by QA
- [ ] Cypress test cases have been added and approved by either SDET or
manual QA
- [ ] Organized project review call with relevant stakeholders after
Round 1/2 of QA
- [ ] Added Test Plan Approved label after reveiwing all Cypress test
---------
Co-authored-by: Satish Gandham <hello@satishgandham.com>
Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
1257 lines
37 KiB
TypeScript
1257 lines
37 KiB
TypeScript
import {
|
|
all,
|
|
call,
|
|
put,
|
|
select,
|
|
take,
|
|
takeEvery,
|
|
takeLatest,
|
|
} from "redux-saga/effects";
|
|
import {
|
|
change,
|
|
getFormInitialValues,
|
|
getFormValues,
|
|
initialize,
|
|
} from "redux-form";
|
|
import { merge, isEmpty, get, set, partition, omit } from "lodash";
|
|
import equal from "fast-deep-equal/es6";
|
|
import type {
|
|
ReduxAction,
|
|
ReduxActionWithCallbacks,
|
|
ReduxActionWithMeta,
|
|
} from "@appsmith/constants/ReduxActionConstants";
|
|
import {
|
|
ReduxActionErrorTypes,
|
|
ReduxActionTypes,
|
|
ReduxFormActionTypes,
|
|
} from "@appsmith/constants/ReduxActionConstants";
|
|
import {
|
|
getCurrentApplicationId,
|
|
getCurrentPageId,
|
|
} from "selectors/editorSelectors";
|
|
import {
|
|
getDatasource,
|
|
getDatasourceDraft,
|
|
getPluginForm,
|
|
getGenerateCRUDEnabledPluginMap,
|
|
getPluginPackageFromDatasourceId,
|
|
getDatasources,
|
|
getDatasourceActionRouteInfo,
|
|
} from "selectors/entitiesSelector";
|
|
import type {
|
|
UpdateDatasourceSuccessAction,
|
|
executeDatasourceQueryReduxAction,
|
|
} from "actions/datasourceActions";
|
|
import {
|
|
changeDatasource,
|
|
fetchDatasourceStructure,
|
|
setDatasourceViewMode,
|
|
updateDatasourceSuccess,
|
|
createTempDatasourceFromForm,
|
|
removeTempDatasource,
|
|
createDatasourceSuccess,
|
|
resetDefaultKeyValPairFlag,
|
|
updateDatasource,
|
|
} from "actions/datasourceActions";
|
|
import type { ApiResponse } from "api/ApiResponses";
|
|
import type { CreateDatasourceConfig } from "api/DatasourcesApi";
|
|
import DatasourcesApi from "api/DatasourcesApi";
|
|
import type { Datasource, TokenResponse } from "entities/Datasource";
|
|
import { AuthenticationStatus } from "entities/Datasource";
|
|
|
|
import { INTEGRATION_EDITOR_MODES, INTEGRATION_TABS } from "constants/routes";
|
|
import history from "utils/history";
|
|
import {
|
|
API_EDITOR_FORM_NAME,
|
|
DATASOURCE_DB_FORM,
|
|
DATASOURCE_REST_API_FORM,
|
|
} from "@appsmith/constants/forms";
|
|
import { validateResponse } from "./ErrorSagas";
|
|
import AnalyticsUtil from "utils/AnalyticsUtil";
|
|
import { getFormData } from "selectors/formSelectors";
|
|
import { getCurrentWorkspaceId } from "@appsmith/selectors/workspaceSelectors";
|
|
import { Toaster, Variant } from "design-system-old";
|
|
import { getConfigInitialValues } from "components/formControls/utils";
|
|
import { setActionProperty } from "actions/pluginActionActions";
|
|
import { authorizeDatasourceWithAppsmithToken } from "api/CloudServicesApi";
|
|
import {
|
|
createMessage,
|
|
DATASOURCE_CREATE,
|
|
DATASOURCE_DELETE,
|
|
DATASOURCE_UPDATE,
|
|
DATASOURCE_VALID,
|
|
OAUTH_APPSMITH_TOKEN_NOT_FOUND,
|
|
OAUTH_AUTHORIZATION_APPSMITH_ERROR,
|
|
OAUTH_AUTHORIZATION_FAILED,
|
|
OAUTH_AUTHORIZATION_SUCCESSFUL,
|
|
} from "@appsmith/constants/messages";
|
|
import AppsmithConsole from "utils/AppsmithConsole";
|
|
import { ENTITY_TYPE } from "entities/AppsmithConsole";
|
|
import localStorage from "utils/localStorage";
|
|
import log from "loglevel";
|
|
import { APPSMITH_TOKEN_STORAGE_KEY } from "pages/Editor/SaaSEditor/constants";
|
|
import { checkAndGetPluginFormConfigsSaga } from "sagas/PluginSagas";
|
|
import { PluginType } from "entities/Action";
|
|
import LOG_TYPE from "entities/AppsmithConsole/logtype";
|
|
import { isDynamicValue } from "utils/DynamicBindingUtils";
|
|
import { getQueryParams } from "utils/URLUtils";
|
|
import type { GenerateCRUDEnabledPluginMap } from "api/PluginApi";
|
|
import { getIsGeneratePageInitiator } from "utils/GenerateCrudUtil";
|
|
import { shouldBeDefined, trimQueryString } from "utils/helpers";
|
|
import { inGuidedTour } from "selectors/onboardingSelectors";
|
|
import { updateReplayEntity } from "actions/pageActions";
|
|
import OAuthApi from "api/OAuthApi";
|
|
import type { AppState } from "@appsmith/reducers";
|
|
import { getWorkspaceIdForImport } from "selectors/applicationSelectors";
|
|
import {
|
|
apiEditorIdURL,
|
|
datasourcesEditorIdURL,
|
|
generateTemplateFormURL,
|
|
integrationEditorURL,
|
|
saasEditorDatasourceIdURL,
|
|
} from "RouteBuilder";
|
|
import {
|
|
DATASOURCE_NAME_DEFAULT_PREFIX,
|
|
TEMP_DATASOURCE_ID,
|
|
} from "constants/Datasource";
|
|
import { getUntitledDatasourceSequence } from "utils/DatasourceSagaUtils";
|
|
|
|
function* fetchDatasourcesSaga(
|
|
action: ReduxAction<{ workspaceId?: string } | undefined>,
|
|
) {
|
|
try {
|
|
let workspaceId: string = yield select(getCurrentWorkspaceId);
|
|
if (action.payload?.workspaceId) workspaceId = action.payload?.workspaceId;
|
|
|
|
const response: ApiResponse<Datasource[]> =
|
|
yield DatasourcesApi.fetchDatasources(workspaceId);
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_DATASOURCES_SUCCESS,
|
|
payload: response.data,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.FETCH_DATASOURCES_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
function* fetchMockDatasourcesSaga() {
|
|
try {
|
|
const response: ApiResponse = yield DatasourcesApi.fetchMockDatasources();
|
|
// not validating the api call here. If the call is unsuccessful it'll be unblocking. And we'll hide the mock DB section.
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_MOCK_DATASOURCES_SUCCESS,
|
|
payload: !!response && !!response.data ? response.data : [],
|
|
});
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.FETCH_MOCK_DATASOURCES_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
interface addMockDb
|
|
extends ReduxActionWithCallbacks<
|
|
{
|
|
name: string;
|
|
workspaceId: string;
|
|
pluginId: string;
|
|
packageName: string;
|
|
},
|
|
unknown,
|
|
unknown
|
|
> {
|
|
extraParams?: any;
|
|
}
|
|
|
|
export function* addMockDbToDatasources(actionPayload: addMockDb) {
|
|
try {
|
|
const { name, packageName, pluginId, workspaceId } = actionPayload.payload;
|
|
const { isGeneratePageMode } = actionPayload.extraParams;
|
|
const pageId: string = yield select(getCurrentPageId);
|
|
const response: ApiResponse = yield DatasourcesApi.addMockDbToDatasources(
|
|
name,
|
|
workspaceId,
|
|
pluginId,
|
|
packageName,
|
|
);
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.ADD_MOCK_DATASOURCES_SUCCESS,
|
|
payload: response.data,
|
|
});
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_DATASOURCES_INIT,
|
|
});
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_PLUGINS_REQUEST,
|
|
});
|
|
// @ts-expect-error: response is of type unknown
|
|
yield call(checkAndGetPluginFormConfigsSaga, response.data.pluginId);
|
|
const isGeneratePageInitiator =
|
|
getIsGeneratePageInitiator(isGeneratePageMode);
|
|
const isInGuidedTour: boolean = yield select(inGuidedTour);
|
|
if (isGeneratePageInitiator) {
|
|
history.push(
|
|
generateTemplateFormURL({
|
|
pageId,
|
|
params: {
|
|
// @ts-expect-error: response.data is of type unknown
|
|
datasourceId: response.data.id,
|
|
},
|
|
}),
|
|
);
|
|
} else {
|
|
if (isInGuidedTour) return;
|
|
history.push(
|
|
integrationEditorURL({
|
|
pageId,
|
|
selectedTab: INTEGRATION_TABS.ACTIVE,
|
|
params: getQueryParams(),
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.ADD_MOCK_DATASOURCES_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
export function* deleteDatasourceSaga(
|
|
actionPayload: ReduxActionWithCallbacks<{ id: string }, unknown, unknown>,
|
|
) {
|
|
try {
|
|
const id = actionPayload.payload.id;
|
|
const response: ApiResponse<Datasource> =
|
|
yield DatasourcesApi.deleteDatasource(id);
|
|
const pageId: string = yield select(getCurrentPageId);
|
|
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
|
|
if (isValidResponse) {
|
|
const pluginPackageName = shouldBeDefined<string>(
|
|
yield select((state: AppState) =>
|
|
getPluginPackageFromDatasourceId(state, id),
|
|
),
|
|
`Plugin package not found for the given id - ${id}`,
|
|
);
|
|
const datasourcePathWithoutQuery = trimQueryString(
|
|
datasourcesEditorIdURL({
|
|
pageId,
|
|
datasourceId: id,
|
|
}),
|
|
);
|
|
|
|
const saasPathWithoutQuery = trimQueryString(
|
|
saasEditorDatasourceIdURL({
|
|
pageId,
|
|
pluginPackageName,
|
|
datasourceId: id,
|
|
}),
|
|
);
|
|
|
|
if (
|
|
window.location.pathname === datasourcePathWithoutQuery ||
|
|
window.location.pathname === saasPathWithoutQuery
|
|
) {
|
|
history.push(
|
|
integrationEditorURL({
|
|
pageId,
|
|
selectedTab: INTEGRATION_TABS.NEW,
|
|
params: {
|
|
...getQueryParams(),
|
|
mode: INTEGRATION_EDITOR_MODES.AUTO,
|
|
},
|
|
}),
|
|
);
|
|
}
|
|
|
|
Toaster.show({
|
|
text: createMessage(DATASOURCE_DELETE, response.data.name),
|
|
variant: Variant.success,
|
|
});
|
|
|
|
yield put({
|
|
type: ReduxActionTypes.DELETE_DATASOURCE_SUCCESS,
|
|
payload: response.data,
|
|
});
|
|
yield put({
|
|
type: ReduxActionTypes.DELETE_DATASOURCE_DRAFT,
|
|
payload: {
|
|
id: response.data.id,
|
|
},
|
|
});
|
|
AppsmithConsole.info({
|
|
logType: LOG_TYPE.ENTITY_DELETED,
|
|
text: "Datasource deleted",
|
|
source: {
|
|
id: response.data.id,
|
|
name: response.data.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
if (actionPayload.onSuccess) {
|
|
yield put(actionPayload.onSuccess);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
const datasource = shouldBeDefined<Datasource>(
|
|
yield select(getDatasource, actionPayload.payload.id),
|
|
`Datasource not found for id - ${actionPayload.payload.id}`,
|
|
);
|
|
Toaster.show({
|
|
text: (error as Error).message,
|
|
variant: Variant.danger,
|
|
});
|
|
yield put({
|
|
type: ReduxActionErrorTypes.DELETE_DATASOURCE_ERROR,
|
|
payload: { error, id: actionPayload.payload.id, show: false },
|
|
});
|
|
AppsmithConsole.error({
|
|
text: (error as Error).message,
|
|
source: {
|
|
id: actionPayload.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
if (actionPayload.onError) {
|
|
yield put(actionPayload.onError);
|
|
}
|
|
}
|
|
}
|
|
|
|
function* updateDatasourceSaga(
|
|
actionPayload: ReduxActionWithCallbacks<Datasource, unknown, unknown>,
|
|
) {
|
|
try {
|
|
const queryParams = getQueryParams();
|
|
const datasourcePayload = omit(actionPayload.payload, "name");
|
|
datasourcePayload.isConfigured = true; // when clicking save button, it should be changed as configured
|
|
|
|
const response: ApiResponse<Datasource> =
|
|
yield DatasourcesApi.updateDatasource(
|
|
datasourcePayload,
|
|
datasourcePayload.id,
|
|
);
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
AnalyticsUtil.logEvent("SAVE_DATA_SOURCE", {
|
|
datasourceName: response.data.name,
|
|
});
|
|
Toaster.show({
|
|
text: createMessage(DATASOURCE_UPDATE, response.data.name),
|
|
variant: Variant.success,
|
|
});
|
|
|
|
const state: AppState = yield select();
|
|
const expandDatasourceId = state.ui.datasourcePane.expandDatasourceId;
|
|
|
|
// Dont redirect if action payload has an onSuccess
|
|
yield put(
|
|
updateDatasourceSuccess(
|
|
response.data,
|
|
!actionPayload.onSuccess,
|
|
queryParams,
|
|
),
|
|
);
|
|
yield put({
|
|
type: ReduxActionTypes.DELETE_DATASOURCE_DRAFT,
|
|
payload: {
|
|
id: response.data.id,
|
|
},
|
|
});
|
|
if (actionPayload.onSuccess) {
|
|
yield put(actionPayload.onSuccess);
|
|
}
|
|
if (expandDatasourceId === response.data.id) {
|
|
yield put(fetchDatasourceStructure(response.data.id, true));
|
|
}
|
|
yield put(setDatasourceViewMode(true));
|
|
|
|
AppsmithConsole.info({
|
|
text: "Datasource configuration saved",
|
|
source: {
|
|
id: response.data.id,
|
|
name: response.data.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
state: {
|
|
datasourceConfiguration: response.data.datasourceConfiguration,
|
|
},
|
|
});
|
|
|
|
// updating form initial values to latest data, so that next time when form is opened
|
|
// isDirty will use updated initial values data to compare actual values with
|
|
yield put(initialize(DATASOURCE_DB_FORM, response.data));
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.UPDATE_DATASOURCE_ERROR,
|
|
payload: { error },
|
|
});
|
|
if (actionPayload.onError) {
|
|
yield put(actionPayload.onError);
|
|
}
|
|
}
|
|
}
|
|
|
|
function* redirectAuthorizationCodeSaga(
|
|
actionPayload: ReduxAction<{
|
|
datasourceId: string;
|
|
pageId: string;
|
|
pluginType: PluginType;
|
|
}>,
|
|
) {
|
|
const { datasourceId, pageId, pluginType } = actionPayload.payload;
|
|
const isImport: string = yield select(getWorkspaceIdForImport);
|
|
|
|
if (pluginType === PluginType.API) {
|
|
window.location.href = `/api/v1/datasources/${datasourceId}/pages/${pageId}/code`;
|
|
} else {
|
|
try {
|
|
// Get an "appsmith token" from the server
|
|
const response: ApiResponse<string> = yield OAuthApi.getAppsmithToken(
|
|
datasourceId,
|
|
pageId,
|
|
!!isImport,
|
|
);
|
|
|
|
if (validateResponse(response)) {
|
|
const appsmithToken = response.data;
|
|
// Save the token for later use once we come back from the auth flow
|
|
localStorage.setItem(APPSMITH_TOKEN_STORAGE_KEY, appsmithToken);
|
|
// Redirect to the cloud services to authorise
|
|
window.location.assign(
|
|
authorizeDatasourceWithAppsmithToken(appsmithToken),
|
|
);
|
|
}
|
|
} catch (e) {
|
|
Toaster.show({
|
|
text: OAUTH_AUTHORIZATION_FAILED,
|
|
variant: Variant.danger,
|
|
});
|
|
log.error(e);
|
|
}
|
|
}
|
|
}
|
|
|
|
function* getOAuthAccessTokenSaga(
|
|
actionPayload: ReduxAction<{ datasourceId: string }>,
|
|
) {
|
|
const { datasourceId } = actionPayload.payload;
|
|
// get the saved appsmith token that started the auth request
|
|
const appsmithToken = localStorage.getItem(APPSMITH_TOKEN_STORAGE_KEY);
|
|
if (!appsmithToken) {
|
|
// Error out because auth token should been here
|
|
log.error(OAUTH_APPSMITH_TOKEN_NOT_FOUND);
|
|
Toaster.show({
|
|
text: OAUTH_AUTHORIZATION_APPSMITH_ERROR,
|
|
variant: Variant.danger,
|
|
});
|
|
return;
|
|
}
|
|
try {
|
|
// Get access token for datasource
|
|
const response: ApiResponse<TokenResponse> = yield OAuthApi.getAccessToken(
|
|
datasourceId,
|
|
appsmithToken,
|
|
);
|
|
if (validateResponse(response)) {
|
|
// Update the datasource object
|
|
yield put({
|
|
type: ReduxActionTypes.UPDATE_DATASOURCE_SUCCESS,
|
|
payload: response.data.datasource,
|
|
});
|
|
|
|
if (!!response.data.token) {
|
|
yield put({
|
|
type: ReduxActionTypes.SET_GSHEET_TOKEN,
|
|
payload: {
|
|
gsheetToken: response.data.token,
|
|
},
|
|
});
|
|
} else {
|
|
Toaster.show({
|
|
text: OAUTH_AUTHORIZATION_SUCCESSFUL,
|
|
variant: Variant.success,
|
|
});
|
|
}
|
|
// Remove the token because it is supposed to be short lived
|
|
localStorage.removeItem(APPSMITH_TOKEN_STORAGE_KEY);
|
|
}
|
|
} catch (e) {
|
|
Toaster.show({
|
|
text: OAUTH_AUTHORIZATION_FAILED,
|
|
variant: Variant.danger,
|
|
});
|
|
log.error(e);
|
|
}
|
|
}
|
|
|
|
function* updateDatasourceNameSaga(
|
|
actionPayload: ReduxAction<{ id: string; name: string }>,
|
|
) {
|
|
try {
|
|
const response: ApiResponse<Datasource> =
|
|
yield DatasourcesApi.updateDatasource(
|
|
{
|
|
name: actionPayload.payload.name,
|
|
},
|
|
actionPayload.payload.id,
|
|
);
|
|
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
// update error state of datasourcename
|
|
yield put({
|
|
type: ReduxActionTypes.UPDATE_DATASOURCE_NAME_SUCCESS,
|
|
payload: { ...response.data },
|
|
});
|
|
|
|
// update name in the datasource Object as well
|
|
yield put({
|
|
type: ReduxActionTypes.SAVE_DATASOURCE_NAME_SUCCESS,
|
|
payload: { ...response.data },
|
|
});
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.UPDATE_DATASOURCE_NAME_ERROR,
|
|
payload: { id: actionPayload.payload.id },
|
|
});
|
|
}
|
|
}
|
|
|
|
function* handleDatasourceNameChangeFailureSaga(
|
|
action: ReduxAction<{ oldName: string }>,
|
|
) {
|
|
yield put(change(DATASOURCE_DB_FORM, "name", action.payload.oldName));
|
|
}
|
|
|
|
function* testDatasourceSaga(actionPayload: ReduxAction<Datasource>) {
|
|
let workspaceId: string = yield select(getCurrentWorkspaceId);
|
|
// test button within the import modal
|
|
if (!workspaceId) {
|
|
workspaceId = yield select(getWorkspaceIdForImport);
|
|
}
|
|
const { initialValues, values } = yield select(
|
|
getFormData,
|
|
DATASOURCE_DB_FORM,
|
|
);
|
|
const datasource = shouldBeDefined<Datasource>(
|
|
yield select(getDatasource, actionPayload.payload.id),
|
|
`Datasource not found for id - ${actionPayload.payload.id}`,
|
|
);
|
|
const payload = {
|
|
...actionPayload.payload,
|
|
id: actionPayload.payload.id as any,
|
|
};
|
|
|
|
// when datasource is not yet saved by user, datasource id is temporary
|
|
// for temporary datasource, we do not need to pass datasource id in test api call
|
|
if (!equal(initialValues, values) || datasource?.id === TEMP_DATASOURCE_ID) {
|
|
delete payload.id;
|
|
}
|
|
|
|
try {
|
|
const response: ApiResponse<Datasource> =
|
|
yield DatasourcesApi.testDatasource({
|
|
...payload,
|
|
workspaceId,
|
|
});
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
let messages: Array<string> = [];
|
|
if (isValidResponse) {
|
|
const responseData = response.data;
|
|
if (
|
|
(responseData.invalids && responseData.invalids.length) ||
|
|
(responseData.messages && responseData.messages.length)
|
|
) {
|
|
if (responseData.invalids && responseData.invalids.length) {
|
|
responseData.invalids.forEach((message: string) => {
|
|
Toaster.show({
|
|
text: message,
|
|
variant: Variant.danger,
|
|
});
|
|
});
|
|
}
|
|
if (responseData.messages && responseData.messages.length) {
|
|
messages = responseData.messages;
|
|
if (responseData.success) {
|
|
Toaster.show({
|
|
text: createMessage(DATASOURCE_VALID, payload.name),
|
|
variant: Variant.success,
|
|
});
|
|
}
|
|
}
|
|
yield put({
|
|
type: ReduxActionErrorTypes.TEST_DATASOURCE_ERROR,
|
|
payload: { show: false, id: datasource.id, messages: messages },
|
|
});
|
|
AppsmithConsole.error({
|
|
text: "Test Connection failed",
|
|
source: {
|
|
id: actionPayload.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
state: {
|
|
message:
|
|
responseData.invalids && responseData.invalids.length
|
|
? responseData.invalids[0]
|
|
: "",
|
|
},
|
|
});
|
|
} else {
|
|
AnalyticsUtil.logEvent("TEST_DATA_SOURCE_SUCCESS", {
|
|
datasource: payload.name,
|
|
});
|
|
Toaster.show({
|
|
text: createMessage(DATASOURCE_VALID, payload.name),
|
|
variant: Variant.success,
|
|
});
|
|
yield put({
|
|
type: ReduxActionTypes.TEST_DATASOURCE_SUCCESS,
|
|
payload: { show: false, id: datasource.id, messages: [] },
|
|
});
|
|
AppsmithConsole.info({
|
|
text: "Test Connection successful",
|
|
source: {
|
|
id: actionPayload.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.TEST_DATASOURCE_ERROR,
|
|
payload: { error, show: false },
|
|
});
|
|
AppsmithConsole.error({
|
|
text: "Test Connection failed",
|
|
source: {
|
|
id: actionPayload.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
state: {
|
|
message: error,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function* createTempDatasourceFromFormSaga(
|
|
actionPayload: ReduxAction<CreateDatasourceConfig | Datasource>,
|
|
) {
|
|
yield call(checkAndGetPluginFormConfigsSaga, actionPayload.payload.pluginId);
|
|
const formConfig: Record<string, any>[] = yield select(
|
|
getPluginForm,
|
|
actionPayload.payload.pluginId,
|
|
);
|
|
const initialValues: unknown = yield call(getConfigInitialValues, formConfig);
|
|
|
|
const dsList: Datasource[] = yield select(getDatasources);
|
|
const sequence = getUntitledDatasourceSequence(dsList);
|
|
|
|
const initialPayload = {
|
|
id: TEMP_DATASOURCE_ID,
|
|
name: DATASOURCE_NAME_DEFAULT_PREFIX + sequence,
|
|
type: (actionPayload.payload as any).type,
|
|
pluginId: actionPayload.payload.pluginId,
|
|
new: false,
|
|
datasourceConfiguration: {
|
|
properties: [],
|
|
},
|
|
};
|
|
|
|
const payload = merge(
|
|
merge(initialPayload, actionPayload.payload),
|
|
initialValues,
|
|
);
|
|
|
|
yield put(createDatasourceSuccess(payload as Datasource));
|
|
|
|
yield put({
|
|
type: ReduxActionTypes.SAVE_DATASOURCE_NAME,
|
|
payload,
|
|
});
|
|
|
|
yield put(setDatasourceViewMode(false));
|
|
}
|
|
|
|
function* createDatasourceFromFormSaga(
|
|
actionPayload: ReduxActionWithCallbacks<Datasource, unknown, unknown>,
|
|
) {
|
|
try {
|
|
const workspaceId: string = yield select(getCurrentWorkspaceId);
|
|
const actionRouteInfo: Partial<{
|
|
apiId: string;
|
|
datasourceId: string;
|
|
pageId: string;
|
|
applicationId: string;
|
|
}> = yield select(getDatasourceActionRouteInfo);
|
|
yield call(
|
|
checkAndGetPluginFormConfigsSaga,
|
|
actionPayload.payload.pluginId,
|
|
);
|
|
const formConfig: Record<string, any>[] = yield select(
|
|
getPluginForm,
|
|
actionPayload.payload.pluginId,
|
|
);
|
|
|
|
const initialValues: unknown = yield call(
|
|
getConfigInitialValues,
|
|
formConfig,
|
|
);
|
|
|
|
const payload = omit(merge(initialValues, actionPayload.payload), [
|
|
"id",
|
|
"new",
|
|
"type",
|
|
]);
|
|
|
|
payload.isConfigured = true;
|
|
|
|
const response: ApiResponse<Datasource> =
|
|
yield DatasourcesApi.createDatasource({
|
|
...payload,
|
|
workspaceId,
|
|
});
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.UPDATE_DATASOURCE_REFS,
|
|
payload: response.data,
|
|
});
|
|
yield put(
|
|
createDatasourceSuccess(response.data, true, !!actionRouteInfo.apiId),
|
|
);
|
|
|
|
Toaster.show({
|
|
text: createMessage(DATASOURCE_CREATE, response.data.name),
|
|
variant: Variant.success,
|
|
});
|
|
|
|
if (actionPayload.onSuccess) {
|
|
if (
|
|
(actionPayload.onSuccess.payload as any).datasourceId ===
|
|
TEMP_DATASOURCE_ID
|
|
) {
|
|
(actionPayload.onSuccess.payload as any).datasourceId =
|
|
response.data.id;
|
|
}
|
|
yield put(actionPayload.onSuccess);
|
|
}
|
|
|
|
yield put({
|
|
type: ReduxActionTypes.DELETE_DATASOURCE_DRAFT,
|
|
payload: {
|
|
id: TEMP_DATASOURCE_ID,
|
|
},
|
|
});
|
|
|
|
// for all datasources, except for REST and GraphQL, need to delete temp datasource data
|
|
// as soon as possible, for REST and GraphQL it is getting deleted in APIPaneSagas.ts
|
|
if (!actionRouteInfo.apiId) {
|
|
yield put(removeTempDatasource());
|
|
}
|
|
|
|
// updating form initial values to latest data, so that next time when form is opened
|
|
// isDirty will use updated initial values data to compare actual values with
|
|
yield put(initialize(DATASOURCE_DB_FORM, response.data));
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.CREATE_DATASOURCE_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
function* changeDatasourceSaga(
|
|
actionPayload: ReduxAction<{
|
|
datasource: Datasource;
|
|
shouldNotRedirect?: boolean;
|
|
}>,
|
|
) {
|
|
const { datasource, shouldNotRedirect } = actionPayload.payload;
|
|
const { id } = datasource;
|
|
const draft: Record<string, unknown> = yield select(getDatasourceDraft, id);
|
|
const pageId: string = yield select(getCurrentPageId);
|
|
let data;
|
|
if (isEmpty(draft)) {
|
|
data = datasource;
|
|
} else {
|
|
data = draft;
|
|
}
|
|
yield put(initialize(DATASOURCE_DB_FORM, omit(data, ["name"])));
|
|
// on reconnect modal, it shouldn't be redirected to datasource edit page
|
|
if (shouldNotRedirect) return;
|
|
// this redirects to the same route, so checking first.
|
|
const datasourcePath = trimQueryString(
|
|
datasourcesEditorIdURL({
|
|
pageId,
|
|
datasourceId: datasource.id,
|
|
}),
|
|
);
|
|
|
|
if (history.location.pathname !== datasourcePath)
|
|
history.push(
|
|
datasourcesEditorIdURL({
|
|
pageId,
|
|
datasourceId: datasource.id,
|
|
params: getQueryParams(),
|
|
}),
|
|
);
|
|
yield put(
|
|
// @ts-expect-error: data is of type unknown
|
|
updateReplayEntity(data.id, omit(data, ["name"]), ENTITY_TYPE.DATASOURCE),
|
|
);
|
|
}
|
|
|
|
function* switchDatasourceSaga(
|
|
action: ReduxAction<{
|
|
datasourceId: string;
|
|
shouldNotRedirect: boolean;
|
|
}>,
|
|
) {
|
|
const { datasourceId, shouldNotRedirect } = action.payload;
|
|
const datasource: Datasource = yield select(getDatasource, datasourceId);
|
|
if (datasource) {
|
|
yield put(changeDatasource({ datasource, shouldNotRedirect }));
|
|
}
|
|
}
|
|
|
|
function* formValueChangeSaga(
|
|
actionPayload: ReduxActionWithMeta<string, { field: string; form: string }>,
|
|
) {
|
|
const { field, form } = actionPayload.meta;
|
|
if (form === DATASOURCE_REST_API_FORM) {
|
|
const { values } = yield select(getFormData, DATASOURCE_REST_API_FORM);
|
|
if (values && values.datasourceId) {
|
|
yield put(
|
|
updateReplayEntity(values.datasourceId, values, ENTITY_TYPE.DATASOURCE),
|
|
);
|
|
}
|
|
}
|
|
if (form !== DATASOURCE_DB_FORM) return;
|
|
if (field === "name") return;
|
|
yield all([call(updateDraftsSaga)]);
|
|
}
|
|
|
|
function* updateDraftsSaga() {
|
|
const values: Record<string, unknown> = yield select(
|
|
getFormValues(DATASOURCE_DB_FORM),
|
|
);
|
|
|
|
if (!values.id) return;
|
|
const datasource: Datasource | undefined = yield select(
|
|
getDatasource,
|
|
// @ts-expect-error: values is of type unknown
|
|
values.id,
|
|
);
|
|
if (!equal(values, datasource)) {
|
|
// @ts-expect-error: values is of type unknown
|
|
yield put(updateReplayEntity(values.id, values, ENTITY_TYPE.DATASOURCE));
|
|
}
|
|
}
|
|
|
|
function* storeAsDatasourceSaga() {
|
|
const { values } = yield select(getFormData, API_EDITOR_FORM_NAME);
|
|
const applicationId: string = yield select(getCurrentApplicationId);
|
|
const pageId: string | undefined = yield select(getCurrentPageId);
|
|
let datasource = get(values, "datasource");
|
|
datasource = omit(datasource, ["name"]);
|
|
const originalHeaders = get(values, "actionConfiguration.headers", []);
|
|
const [datasourceHeaders, actionHeaders] = partition(
|
|
originalHeaders,
|
|
({ key, value }: { key: string; value: string }) => {
|
|
return !(isDynamicValue(key) || isDynamicValue(value));
|
|
},
|
|
);
|
|
yield put(
|
|
setActionProperty({
|
|
actionId: values.id,
|
|
propertyName: "actionConfiguration.headers",
|
|
value: actionHeaders,
|
|
}),
|
|
);
|
|
|
|
// Empty Headers getting created so filtering out the empty headers before setting it to datasource
|
|
const filteredDatasourceHeaders = datasourceHeaders.filter(
|
|
(d) => !(d.key === "" && d.key === ""),
|
|
);
|
|
|
|
set(datasource, "datasourceConfiguration.headers", filteredDatasourceHeaders);
|
|
|
|
yield put(createTempDatasourceFromForm(datasource));
|
|
const createDatasourceSuccessAction: unknown = yield take(
|
|
ReduxActionTypes.CREATE_DATASOURCE_SUCCESS,
|
|
);
|
|
// @ts-expect-error: createDatasourceSuccessAction is of type unknown
|
|
const createdDatasource = createDatasourceSuccessAction.payload;
|
|
|
|
// Set datasource page to edit mode
|
|
yield put(setDatasourceViewMode(false));
|
|
|
|
yield put({
|
|
type: ReduxActionTypes.STORE_AS_DATASOURCE_UPDATE,
|
|
payload: {
|
|
pageId,
|
|
applicationId,
|
|
apiId: values.id,
|
|
datasourceId: createdDatasource.id,
|
|
},
|
|
});
|
|
|
|
yield put(changeDatasource({ datasource: createdDatasource }));
|
|
}
|
|
|
|
function* updateDatasourceSuccessSaga(action: UpdateDatasourceSuccessAction) {
|
|
const state: AppState = yield select();
|
|
const actionRouteInfo = get(state, "ui.datasourcePane.actionRouteInfo");
|
|
const generateCRUDSupportedPlugin: GenerateCRUDEnabledPluginMap =
|
|
yield select(getGenerateCRUDEnabledPluginMap);
|
|
const pageId: string = yield select(getCurrentPageId);
|
|
const updatedDatasource = action.payload;
|
|
|
|
const { queryParams = {} } = action;
|
|
|
|
const isGeneratePageInitiator = getIsGeneratePageInitiator(
|
|
queryParams.isGeneratePageMode,
|
|
);
|
|
|
|
if (
|
|
isGeneratePageInitiator &&
|
|
updatedDatasource.pluginId &&
|
|
generateCRUDSupportedPlugin[updatedDatasource.pluginId]
|
|
) {
|
|
history.push(
|
|
generateTemplateFormURL({
|
|
pageId,
|
|
params: {
|
|
datasourceId: updatedDatasource.id,
|
|
},
|
|
}),
|
|
);
|
|
} else if (
|
|
actionRouteInfo &&
|
|
updatedDatasource.id === actionRouteInfo.datasourceId &&
|
|
action.redirect
|
|
) {
|
|
history.push(
|
|
apiEditorIdURL({
|
|
pageId: actionRouteInfo.pageId,
|
|
apiId: actionRouteInfo.apiId,
|
|
}),
|
|
);
|
|
}
|
|
|
|
yield put({
|
|
type: ReduxActionTypes.STORE_AS_DATASOURCE_COMPLETE,
|
|
});
|
|
}
|
|
|
|
function* fetchDatasourceStructureSaga(
|
|
action: ReduxAction<{ id: string; ignoreCache: boolean }>,
|
|
) {
|
|
const datasource = shouldBeDefined<Datasource>(
|
|
yield select(getDatasource, action.payload.id),
|
|
`Datasource not found for id - ${action.payload.id}`,
|
|
);
|
|
|
|
try {
|
|
const response: ApiResponse = yield DatasourcesApi.fetchDatasourceStructure(
|
|
action.payload.id,
|
|
action.payload.ignoreCache,
|
|
);
|
|
const isValidResponse: boolean = yield validateResponse(response, false);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_DATASOURCE_STRUCTURE_SUCCESS,
|
|
payload: {
|
|
data: response.data,
|
|
datasourceId: action.payload.id,
|
|
},
|
|
});
|
|
|
|
if (isEmpty(response.data)) {
|
|
AppsmithConsole.warning({
|
|
text: "Datasource structure could not be retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
} else {
|
|
AppsmithConsole.info({
|
|
text: "Datasource structure retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.FETCH_DATASOURCE_STRUCTURE_ERROR,
|
|
payload: {
|
|
error,
|
|
show: false,
|
|
},
|
|
});
|
|
AppsmithConsole.error({
|
|
text: "Datasource structure could not be retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function* refreshDatasourceStructure(action: ReduxAction<{ id: string }>) {
|
|
const datasource = shouldBeDefined<Datasource>(
|
|
yield select(getDatasource, action.payload.id),
|
|
`Datasource is not found for it - ${action.payload.id}`,
|
|
);
|
|
|
|
try {
|
|
const response: ApiResponse = yield DatasourcesApi.fetchDatasourceStructure(
|
|
action.payload.id,
|
|
true,
|
|
);
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.REFRESH_DATASOURCE_STRUCTURE_SUCCESS,
|
|
payload: {
|
|
data: response.data,
|
|
datasourceId: action.payload.id,
|
|
},
|
|
});
|
|
|
|
if (isEmpty(response.data)) {
|
|
AppsmithConsole.warning({
|
|
text: "Datasource structure could not be retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
} else {
|
|
AppsmithConsole.info({
|
|
text: "Datasource structure retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.REFRESH_DATASOURCE_STRUCTURE_ERROR,
|
|
payload: {
|
|
error,
|
|
show: false,
|
|
},
|
|
});
|
|
AppsmithConsole.error({
|
|
text: "Datasource structure could not be retrieved",
|
|
source: {
|
|
id: action.payload.id,
|
|
name: datasource.name,
|
|
type: ENTITY_TYPE.DATASOURCE,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function* executeDatasourceQuerySaga(
|
|
action: executeDatasourceQueryReduxAction<any>,
|
|
) {
|
|
try {
|
|
// const response: GenericApiResponse<any> = yield DatasourcesApi.executeDatasourceQuery(
|
|
// action.payload,
|
|
// );
|
|
const response: ApiResponse =
|
|
yield DatasourcesApi.executeGoogleSheetsDatasourceQuery(action.payload);
|
|
const isValidResponse: boolean = yield validateResponse(response);
|
|
if (isValidResponse) {
|
|
yield put({
|
|
type: ReduxActionTypes.EXECUTE_DATASOURCE_QUERY_SUCCESS,
|
|
payload: {
|
|
// @ts-expect-error: we don't know what the response will be
|
|
data: response.data?.trigger,
|
|
datasourceId: action.payload.datasourceId,
|
|
},
|
|
});
|
|
}
|
|
if (action.onSuccessCallback) {
|
|
// @ts-expect-error: type mismatch for response
|
|
action.onSuccessCallback(response);
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.EXECUTE_DATASOURCE_QUERY_ERROR,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|
|
if (action.onErrorCallback) {
|
|
// @ts-expect-error: onErrorCallback expects string
|
|
action.onErrorCallback(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
function* initializeFormWithDefaults(
|
|
action: ReduxAction<{ pluginType: string }>,
|
|
) {
|
|
const formName =
|
|
action?.payload?.pluginType === "API"
|
|
? DATASOURCE_REST_API_FORM
|
|
: DATASOURCE_DB_FORM;
|
|
const initialValue: Datasource = yield select(getFormInitialValues(formName));
|
|
const defaultKeyValueArrayConfig: string[] = yield select(
|
|
(state) => state?.ui?.datasourcePane?.defaultKeyValueArrayConfig,
|
|
);
|
|
|
|
if (
|
|
defaultKeyValueArrayConfig &&
|
|
defaultKeyValueArrayConfig?.length > 0 &&
|
|
!!initialValue
|
|
) {
|
|
const restAPIFormData: Datasource = yield select(
|
|
getFormValues(DATASOURCE_REST_API_FORM),
|
|
);
|
|
const formData: Datasource = yield select(
|
|
getFormValues(DATASOURCE_DB_FORM),
|
|
);
|
|
|
|
const formDataObj: Datasource =
|
|
action?.payload?.pluginType === "API" ? restAPIFormData : formData;
|
|
for (const prop of defaultKeyValueArrayConfig) {
|
|
const propPath: string[] = prop.split("[*].");
|
|
const newValues = get(formDataObj, propPath[0], []);
|
|
set(initialValue, propPath[0], newValues);
|
|
}
|
|
|
|
yield put(resetDefaultKeyValPairFlag());
|
|
}
|
|
}
|
|
|
|
function* filePickerActionCallbackSaga(
|
|
actionPayload: ReduxAction<{ action: string; datasourceId: string }>,
|
|
) {
|
|
try {
|
|
const { action, datasourceId } = actionPayload.payload;
|
|
yield put({
|
|
type: ReduxActionTypes.SET_GSHEET_TOKEN,
|
|
payload: {
|
|
gsheetToken: "",
|
|
},
|
|
});
|
|
|
|
if (action === "cancel") {
|
|
const datasource: Datasource = yield select(getDatasource, datasourceId);
|
|
set(
|
|
datasource,
|
|
"datasourceConfiguration.authentication.authenticationStatus",
|
|
AuthenticationStatus.FAILURE,
|
|
);
|
|
yield put(updateDatasource(datasource));
|
|
}
|
|
} catch (error) {}
|
|
}
|
|
|
|
export function* watchDatasourcesSagas() {
|
|
yield all([
|
|
takeEvery(ReduxActionTypes.FETCH_DATASOURCES_INIT, fetchDatasourcesSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.FETCH_MOCK_DATASOURCES_INIT,
|
|
fetchMockDatasourcesSaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.ADD_MOCK_DATASOURCES_INIT,
|
|
addMockDbToDatasources,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.CREATE_DATASOURCE_FROM_FORM_INIT,
|
|
createDatasourceFromFormSaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.CREATE_TEMP_DATASOURCE_FROM_FORM_SUCCESS,
|
|
createTempDatasourceFromFormSaga,
|
|
),
|
|
takeEvery(ReduxActionTypes.UPDATE_DATASOURCE_INIT, updateDatasourceSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.UPDATE_DATASOURCE_NAME,
|
|
updateDatasourceNameSaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionErrorTypes.UPDATE_DATASOURCE_NAME_ERROR,
|
|
handleDatasourceNameChangeFailureSaga,
|
|
),
|
|
takeEvery(ReduxActionTypes.TEST_DATASOURCE_INIT, testDatasourceSaga),
|
|
takeEvery(ReduxActionTypes.DELETE_DATASOURCE_INIT, deleteDatasourceSaga),
|
|
takeEvery(ReduxActionTypes.CHANGE_DATASOURCE, changeDatasourceSaga),
|
|
takeLatest(ReduxActionTypes.SWITCH_DATASOURCE, switchDatasourceSaga),
|
|
takeEvery(ReduxActionTypes.STORE_AS_DATASOURCE_INIT, storeAsDatasourceSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.UPDATE_DATASOURCE_SUCCESS,
|
|
updateDatasourceSuccessSaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.REDIRECT_AUTHORIZATION_CODE,
|
|
redirectAuthorizationCodeSaga,
|
|
),
|
|
takeEvery(ReduxActionTypes.GET_OAUTH_ACCESS_TOKEN, getOAuthAccessTokenSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.FETCH_DATASOURCE_STRUCTURE_INIT,
|
|
fetchDatasourceStructureSaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.REFRESH_DATASOURCE_STRUCTURE_INIT,
|
|
refreshDatasourceStructure,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.EXECUTE_DATASOURCE_QUERY_INIT,
|
|
executeDatasourceQuerySaga,
|
|
),
|
|
takeEvery(
|
|
ReduxActionTypes.INITIALIZE_DATASOURCE_FORM_WITH_DEFAULTS,
|
|
initializeFormWithDefaults,
|
|
),
|
|
// Intercepting the redux-form change actionType to update drafts and track change history
|
|
takeEvery(ReduxFormActionTypes.VALUE_CHANGE, formValueChangeSaga),
|
|
takeEvery(ReduxFormActionTypes.ARRAY_PUSH, formValueChangeSaga),
|
|
takeEvery(ReduxFormActionTypes.ARRAY_REMOVE, formValueChangeSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.FILE_PICKER_CALLBACK_ACTION,
|
|
filePickerActionCallbackSaga,
|
|
),
|
|
]);
|
|
}
|