PromucFlow_constructor/app/client/src/sagas/DatasourcesSagas.ts
Ayush Pahwa 810f2baa1c
fix: fix redirect post datasource save (#23707)
## Description
PR fixes the issue of redirect once the datasource save is clicked.
Removed excess set view mode function calls.

#### PR fixes following issue(s)
Fixes #23706 

#### Media

https://theappsmith.slack.com/files/U025TQ6P4MA/F0579E38FBM/screen_recording_2023-05-11_at_4.39.56_pm.mov

#### Type of change
- Bug fix (non-breaking change which fixes an issue)

## Testing

#### How Has This Been Tested?
- [ ] Manual
- [ ] Jest
- [ ] Cypress

#### Issues raised during DP testing

## Checklist:
#### Dev activity
- [ ] 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
- [ ] 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:
- [ ] [Speedbreak
features](https://github.com/appsmithorg/TestSmith/wiki/Test-plan-implementation#speedbreaker-features-to-consider-for-every-change)
have been covered
- [ ] Test plan covers all impacted features and [areas of
interest](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans/_edit#areas-of-interest)
- [ ] Test plan has been peer reviewed by project stakeholders and other
QA members
- [ ] Manually tested functionality on DP
- [ ] We had an implementation alignment call with stakeholders post QA
Round 2
- [ ] Cypress test cases have been added and approved by SDET/manual QA
- [ ] Added `Test Plan Approved` label after Cypress tests were reviewed
- [ ] Added `Test Plan Approved` label after JUnit tests were reviewed
2023-05-26 13:39:07 +07:00

1740 lines
52 KiB
TypeScript

/* eslint-disable @typescript-eslint/no-non-null-assertion */
import {
all,
call,
put,
select,
take,
takeEvery,
takeLatest,
} from "redux-saga/effects";
import {
change,
getFormInitialValues,
getFormValues,
initialize,
isValid,
} 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,
getPlugin,
getEditorConfig,
getPluginNameFromId,
} from "selectors/entitiesSelector";
import type {
UpdateDatasourceSuccessAction,
executeDatasourceQueryReduxAction,
} from "actions/datasourceActions";
import { updateDatasourceAuthState } from "actions/datasourceActions";
import {
changeDatasource,
fetchDatasourceStructure,
setDatasourceViewMode,
updateDatasourceSuccess,
createTempDatasourceFromForm,
removeTempDatasource,
createDatasourceSuccess,
resetDefaultKeyValPairFlag,
} 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 { FilePickerActionStatus } from "entities/Datasource";
import {
INTEGRATION_EDITOR_MODES,
INTEGRATION_TABS,
RESPONSE_STATUS,
SHOW_FILE_PICKER_KEY,
} 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 type { GetFormData } from "selectors/formSelectors";
import { getFormData } from "selectors/formSelectors";
import { getCurrentWorkspaceId } from "@appsmith/selectors/workspaceSelectors";
import { getConfigInitialValues } from "components/formControls/utils";
import { setActionProperty } from "actions/pluginActionActions";
import { authorizeDatasourceWithAppsmithToken } from "api/CloudServicesApi";
import {
createMessage,
DATASOURCE_CREATE,
DATASOURCE_DELETE,
DATASOURCE_SCHEMA_NOT_AVAILABLE,
DATASOURCE_UPDATE,
DATASOURCE_VALID,
FILES_NOT_SELECTED_EVENT,
GSHEET_AUTHORISED_FILE_IDS_KEY,
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 { PluginPackageName, PluginType } from "entities/Action";
import LOG_TYPE from "entities/AppsmithConsole/logtype";
import { isDynamicValue } from "utils/DynamicBindingUtils";
import { getQueryParams } from "utils/URLUtils";
import type { GenerateCRUDEnabledPluginMap, Plugin } 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 "@appsmith/selectors/applicationSelectors";
import {
apiEditorIdURL,
datasourcesEditorIdURL,
generateTemplateFormURL,
integrationEditorURL,
saasEditorDatasourceIdURL,
} from "RouteBuilder";
import {
DATASOURCE_NAME_DEFAULT_PREFIX,
GOOGLE_SHEET_FILE_PICKER_OVERLAY_CLASS,
GOOGLE_SHEET_SPECIFIC_SHEETS_SCOPE,
TEMP_DATASOURCE_ID,
} from "constants/Datasource";
import { getUntitledDatasourceSequence } from "utils/DatasourceSagaUtils";
import { toast } from "design-system";
import { fetchPluginFormConfig } from "actions/pluginActions";
import { addClassToDocumentBody } from "pages/utils";
import { AuthorizationStatus } from "pages/common/datasourceAuth";
import { getFormDiffPaths, getFormName } from "utils/editorContextUtils";
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,
},
}),
);
}
toast.show(createMessage(DATASOURCE_DELETE, response.data.name), {
kind: "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}`,
);
toast.show((error as Error).message, {
kind: "error",
});
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 & { isInsideReconnectModal: boolean },
unknown,
unknown
>,
) {
try {
const queryParams = getQueryParams();
const datasourcePayload = omit(actionPayload.payload, "name");
const pluginPackageName: PluginPackageName = yield select(
getPluginPackageFromDatasourceId,
datasourcePayload?.id,
);
datasourcePayload.isConfigured = true; // when clicking save button, it should be changed as configured
// When importing app with google sheets with specific sheets scope
// We do not want to set isConfigured to true immediately on save
// instead we want to wait for authorisation as well as file selection to be complete
if (pluginPackageName === PluginPackageName.GOOGLE_SHEETS) {
const scopeString: string = (
datasourcePayload?.datasourceConfiguration?.authentication as any
)?.scopeString;
if (scopeString.includes(GOOGLE_SHEET_SPECIFIC_SHEETS_SCOPE)) {
datasourcePayload.isConfigured = false;
}
}
const response: ApiResponse<Datasource> =
yield DatasourcesApi.updateDatasource(
datasourcePayload,
datasourcePayload.id,
);
const isValidResponse: boolean = yield validateResponse(response);
if (isValidResponse) {
const plugin: Plugin = yield select(getPlugin, response?.data?.pluginId);
const formName: string = getFormName(plugin);
const state: AppState = yield select();
const isFormValid = isValid(formName)(state);
const formData: GetFormData = yield select(getFormData, formName);
const formDiffPaths: string[] = getFormDiffPaths(
formData.initialValues,
formData.values,
);
AnalyticsUtil.logEvent("SAVE_DATA_SOURCE", {
datasourceId: response?.data?.id,
datasourceName: response.data.name,
pluginName: plugin?.name || "",
pluginPackageName: plugin?.packageName || "",
isFormValid: isFormValid,
editedFields: formDiffPaths,
});
toast.show(createMessage(DATASOURCE_UPDATE, response.data.name), {
kind: "success",
});
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));
}
AppsmithConsole.info({
text: "Datasource configuration saved",
source: {
id: response.data.id,
name: response.data.name,
type: ENTITY_TYPE.DATASOURCE,
},
state: {
datasourceConfiguration: response.data.datasourceConfiguration,
},
});
// If the datasource is being updated from the reconnect modal, we don't want to change the view mode
// or update initial values as the next form open will be from the reconnect modal itself
if (!datasourcePayload.isInsideReconnectModal) {
// Don't redirect to view mode if the plugin is google sheets
if (pluginPackageName !== PluginPackageName.GOOGLE_SHEETS) {
yield put(setDatasourceViewMode(true));
}
// 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) {
toast.show(OAUTH_AUTHORIZATION_FAILED, {
kind: "error",
});
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);
toast.show(OAUTH_AUTHORIZATION_APPSMITH_ERROR, {
kind: "error",
});
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,
gsheetProjectID: response.data.projectID,
},
});
} else {
toast.show(OAUTH_AUTHORIZATION_SUCCESSFUL, {
kind: "success",
});
}
// Remove the token because it is supposed to be short lived
localStorage.removeItem(APPSMITH_TOKEN_STORAGE_KEY);
}
} catch (e) {
toast.show(OAUTH_AUTHORIZATION_FAILED, {
kind: "error",
});
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,
};
const plugin: Plugin = yield select(getPlugin, datasource?.pluginId);
// 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)
) {
AnalyticsUtil.logEvent("TEST_DATA_SOURCE_FAILED", {
datasoureId: datasource?.id,
pluginName: plugin?.name,
errorMessages: responseData.invalids,
messages: responseData.messages,
});
if (responseData.invalids && responseData.invalids.length) {
responseData.invalids.forEach((message: string) => {
toast.show(message, {
kind: "error",
});
});
}
if (responseData.messages && responseData.messages.length) {
messages = responseData.messages;
if (responseData.success) {
toast.show(createMessage(DATASOURCE_VALID, payload.name), {
kind: "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", {
datasourceName: payload.name,
datasoureId: datasource?.id,
pluginName: plugin?.name,
});
toast.show(createMessage(DATASOURCE_VALID, payload.name), {
kind: "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 },
});
AnalyticsUtil.logEvent("TEST_DATA_SOURCE_FAILED", {
datasoureId: datasource?.id,
pluginName: plugin?.name,
errorMessages: (error as any)?.message,
});
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);
let datasourceType = actionPayload?.payload?.type;
if (!actionPayload?.payload.type) {
const plugin: Plugin = yield select(
getPlugin,
actionPayload?.payload.pluginId,
);
datasourceType = plugin?.type;
}
const initialPayload = {
id: TEMP_DATASOURCE_ID,
name: DATASOURCE_NAME_DEFAULT_PREFIX + sequence,
type: datasourceType,
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) {
const plugin: Plugin = yield select(getPlugin, response?.data?.pluginId);
const formName: string = getFormName(plugin);
const state: AppState = yield select();
const isFormValid = isValid(formName)(state);
const formData: GetFormData = yield select(getFormData, formName);
const formDiffPaths: string[] = getFormDiffPaths(
formData.initialValues,
formData.values,
);
AnalyticsUtil.logEvent("SAVE_DATA_SOURCE", {
datasourceId: response?.data?.id,
datasourceName: response?.data?.name,
pluginName: plugin?.name || "",
pluginPackageName: plugin?.packageName || "",
isFormValid: isFormValid,
editedFields: formDiffPaths,
});
yield put({
type: ReduxActionTypes.UPDATE_DATASOURCE_REFS,
payload: response.data,
});
yield put(
createDatasourceSuccess(response.data, true, !!actionRouteInfo.apiId),
);
// fetch the datasource structure.
yield put(fetchDatasourceStructure(response?.data?.id, true));
toast.show(createMessage(DATASOURCE_CREATE, response.data.name), {
kind: "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(
data?.type === PluginType.API
? DATASOURCE_REST_API_FORM
: 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 && form !== DATASOURCE_REST_API_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}`,
);
const plugin: Plugin = yield select(getPlugin, datasource?.pluginId);
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
});
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)) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorMessage: createMessage(DATASOURCE_SCHEMA_NOT_AVAILABLE),
});
AppsmithConsole.warning({
text: "Datasource structure could not be retrieved",
source: {
id: action.payload.id,
name: datasource.name,
type: ENTITY_TYPE.DATASOURCE,
},
});
} else {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_SUCCESS", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
});
AppsmithConsole.info({
text: "Datasource structure retrieved",
source: {
id: action.payload.id,
name: datasource.name,
type: ENTITY_TYPE.DATASOURCE,
},
});
}
if (!!(response.data as any)?.error) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorCode: (response.data as any).error?.code,
errorMessage: (response.data as any).error?.message,
});
}
}
} catch (error) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorMessage: (error as any)?.message,
});
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}`,
);
const plugin: Plugin = yield select(getPlugin, datasource?.pluginId);
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
});
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)) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorMessage: createMessage(DATASOURCE_SCHEMA_NOT_AVAILABLE),
});
AppsmithConsole.warning({
text: "Datasource structure could not be retrieved",
source: {
id: action.payload.id,
name: datasource.name,
type: ENTITY_TYPE.DATASOURCE,
},
});
} else {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_SUCCESS", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
});
AppsmithConsole.info({
text: "Datasource structure retrieved",
source: {
id: action.payload.id,
name: datasource.name,
type: ENTITY_TYPE.DATASOURCE,
},
});
}
if (!!(response.data as any)?.error) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorCode: (response.data as any).error?.code,
errorMessage: (response.data as any).error?.message,
});
}
}
} catch (error) {
AnalyticsUtil.logEvent("DATASOURCE_SCHEMA_FETCH_FAILURE", {
datasourceId: datasource?.id,
pluginName: plugin?.name,
errorMessage: (error as any)?.message,
});
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: FilePickerActionStatus;
datasourceId: string;
fileIds: Array<string>;
}>,
) {
try {
const { action, datasourceId, fileIds } = actionPayload.payload;
yield put({
type: ReduxActionTypes.SET_GSHEET_TOKEN,
payload: {
gsheetToken: "",
gsheetProjectID: "",
},
});
const datasource: Datasource = yield select(getDatasource, datasourceId);
// update authentication status based on whether files were picked or not
const authStatus =
action === FilePickerActionStatus.PICKED
? AuthenticationStatus.SUCCESS
: AuthenticationStatus.FAILURE;
set(
datasource,
"datasourceConfiguration.authentication.authenticationStatus",
authStatus,
);
// Once files are selected in case of import, set this flag
set(datasource, "isConfigured", true);
// event in case files are not selected
if (action === FilePickerActionStatus.CANCEL) {
const oauthReason = createMessage(FILES_NOT_SELECTED_EVENT);
const dsName = datasource?.name;
const orgId = datasource?.workspaceId;
const pluginName: string = yield select(
getPluginNameFromId,
datasource?.pluginId,
);
AnalyticsUtil.logEvent("DATASOURCE_AUTHORIZE_RESULT", {
dsName,
oauthReason,
orgId,
pluginName,
});
}
// Once users selects/cancels the file selection,
// Sending sheet ids selected as part of datasource
// config properties in order to save it in database
// using the second index specifically for file ids.
set(datasource, "datasourceConfiguration.properties[1]", {
key: createMessage(GSHEET_AUTHORISED_FILE_IDS_KEY),
value: fileIds,
});
yield put(updateDatasourceAuthState(datasource, authStatus));
} catch (error) {
yield put({
type: ReduxActionTypes.SET_GSHEET_TOKEN,
payload: {
gsheetToken: "",
gsheetProjectID: "",
},
});
}
}
function* fetchGsheetSpreadhsheets(
action: ReduxAction<{
datasourceId: string;
pluginId: string;
}>,
) {
let googleSheetEditorConfig: {
children: [
{
initialValue: string;
},
];
}[] = yield select((state: AppState) =>
getEditorConfig(state, action.payload.pluginId),
);
try {
if (!googleSheetEditorConfig) {
yield put(
fetchPluginFormConfig({
pluginId: {
id: action.payload.pluginId,
},
}),
);
const fetchConfigAction: ReduxAction<unknown> = yield take([
ReduxActionTypes.FETCH_PLUGIN_FORM_SUCCESS,
ReduxActionErrorTypes.FETCH_PLUGIN_FORM_ERROR,
]);
if (
fetchConfigAction.type === ReduxActionErrorTypes.FETCH_PLUGIN_FORM_ERROR
) {
throw new Error("Unable to fetch plugin form config");
}
googleSheetEditorConfig = yield select((state: AppState) =>
getEditorConfig(state, action.payload.pluginId),
);
}
const requestObject: Record<string, string> = {};
if (googleSheetEditorConfig && googleSheetEditorConfig[0]) {
const configs = googleSheetEditorConfig[0]?.children;
if (Array.isArray(configs)) {
for (let index = 0; index < configs.length; index += 2) {
const keyConfig = configs[index];
const valueConfig = configs[index + 1];
if (keyConfig && valueConfig) {
const key = keyConfig?.initialValue;
const value = valueConfig?.initialValue;
if (key && value !== undefined) requestObject[key] = value;
}
}
}
}
const data = {
datasourceId: action.payload.datasourceId,
displayType: "DROP_DOWN",
pluginId: action.payload.pluginId,
requestType: "SPREADSHEET_SELECTOR",
...requestObject,
};
const response: ApiResponse =
yield DatasourcesApi.executeGoogleSheetsDatasourceQuery({
datasourceId: action.payload.datasourceId,
data,
});
const isValidResponse: boolean = yield validateResponse(response);
if (isValidResponse) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_SPREADSHEETS_SUCCESS,
payload: {
id: action.payload.datasourceId,
// @ts-expect-error: type mismatch for response
data: response.data?.trigger,
},
});
}
} catch (error: any) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_SPREADSHEETS_FAILURE,
payload: {
id: action.payload.datasourceId,
error: error.message,
},
});
}
}
function* fetchGsheetSheets(
action: ReduxAction<{
datasourceId: string;
pluginId: string;
sheetUrl: string;
}>,
) {
try {
const data = {
datasourceId: action.payload.datasourceId,
displayType: "DROP_DOWN",
parameters: {
sheetUrl: action.payload.sheetUrl,
},
pluginId: action.payload.pluginId,
requestType: "SHEET_SELECTOR",
};
const response: ApiResponse =
yield DatasourcesApi.executeGoogleSheetsDatasourceQuery({
datasourceId: action.payload.datasourceId,
data,
});
const isValidResponse: boolean = yield validateResponse(response);
if (isValidResponse) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_SHEETS_SUCCESS,
payload: {
// @ts-expect-error: type mismatch for response
data: response.data?.trigger,
id: action.payload.sheetUrl,
},
});
}
} catch (error: any) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_SHEETS_FAILURE,
payload: {
id: action.payload.sheetUrl,
error: error.message,
},
});
}
}
function* fetchGsheetColumns(
action: ReduxAction<{
datasourceId: string;
pluginId: string;
sheetName: string;
sheetUrl: string;
headerIndex: number;
}>,
) {
try {
const data = {
datasourceId: action.payload.datasourceId,
displayType: "DROP_DOWN",
parameters: {
sheetName: action.payload.sheetName,
sheetUrl: action.payload.sheetUrl,
tableHeaderIndex: action.payload.headerIndex,
},
pluginId: action.payload.pluginId,
requestType: "COLUMNS_SELECTOR",
};
const response: ApiResponse =
yield DatasourcesApi.executeGoogleSheetsDatasourceQuery({
datasourceId: action.payload.datasourceId,
data,
});
const isValidResponse: boolean = yield validateResponse(response);
if (isValidResponse) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_COLUMNS_SUCCESS,
payload: {
// @ts-expect-error: type mismatch for response
data: response.data?.trigger,
id: action.payload.sheetName + "_" + action.payload.sheetUrl,
},
});
}
} catch (error: any) {
yield put({
type: ReduxActionTypes.FETCH_GSHEET_COLUMNS_FAILURE,
payload: {
id: action.payload.sheetName + "_" + action.payload.sheetUrl,
error: error.message,
},
});
}
}
function* loadFilePickerSaga() {
// This adds overlay on document body
// This is done for google sheets file picker, as file picker needs to be shown on blank page
// when overlay needs to be shown, we get showPicker search param in redirect url
const appsmithToken = localStorage.getItem(APPSMITH_TOKEN_STORAGE_KEY);
const search = new URLSearchParams(window.location.search);
const isShowFilePicker = search.get(SHOW_FILE_PICKER_KEY);
const gapiScriptLoaded = (window as any).googleAPIsLoaded;
const authStatus = search.get(RESPONSE_STATUS);
if (
!!isShowFilePicker &&
!!authStatus &&
authStatus === AuthorizationStatus.SUCCESS &&
!!appsmithToken &&
!!gapiScriptLoaded
) {
addClassToDocumentBody(GOOGLE_SHEET_FILE_PICKER_OVERLAY_CLASS);
}
}
function* updateDatasourceAuthStateSaga(
actionPayload: ReduxAction<{
authStatus: AuthenticationStatus;
datasource: Datasource;
}>,
) {
try {
const { authStatus, datasource } = actionPayload.payload;
const response: ApiResponse<Datasource> =
yield DatasourcesApi.updateDatasource(datasource, datasource.id);
const isValidResponse: boolean = yield validateResponse(response);
if (isValidResponse) {
yield put({
type: ReduxActionTypes.UPDATE_DATASOURCE_SUCCESS,
payload: response.data,
});
toast.show(
authStatus === AuthenticationStatus.SUCCESS
? OAUTH_AUTHORIZATION_SUCCESSFUL
: OAUTH_AUTHORIZATION_FAILED,
{
kind:
authStatus === AuthenticationStatus.SUCCESS ? "success" : "error",
},
);
}
} catch (error) {
yield put({
type: ReduxActionErrorTypes.UPDATE_DATASOURCE_ERROR,
payload: { error },
});
toast.show(OAUTH_AUTHORIZATION_FAILED, {
kind: "error",
});
}
}
function* datasourceDiscardActionSaga(
actionPayload: ReduxAction<{
pluginId: string;
}>,
) {
const { pluginId } = actionPayload.payload;
const plugin: Plugin = yield select(getPlugin, pluginId);
const formName: string = getFormName(plugin);
const formData: GetFormData = yield select(getFormData, formName);
const formDiffPaths: string[] = getFormDiffPaths(
formData.initialValues,
formData.values,
);
AnalyticsUtil.logEvent("DISCARD_DATASOURCE_CHANGES", {
pluginName: plugin?.name,
editedFields: formDiffPaths,
});
}
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,
),
takeLatest(
ReduxActionTypes.FETCH_GSHEET_SPREADSHEETS,
fetchGsheetSpreadhsheets,
),
takeLatest(ReduxActionTypes.FETCH_GSHEET_SHEETS, fetchGsheetSheets),
takeLatest(ReduxActionTypes.FETCH_GSHEET_COLUMNS, fetchGsheetColumns),
takeEvery(ReduxActionTypes.LOAD_FILE_PICKER_ACTION, loadFilePickerSaga),
takeEvery(
ReduxActionTypes.UPDATE_DATASOURCE_AUTH_STATE,
updateDatasourceAuthStateSaga,
),
takeEvery(
ReduxActionTypes.DATASOURCE_DISCARD_ACTION,
datasourceDiscardActionSaga,
),
]);
}