168 lines
5.5 KiB
TypeScript
168 lines
5.5 KiB
TypeScript
import { all, takeEvery, call, put, select } from "redux-saga/effects";
|
|
import {
|
|
ReduxActionTypes,
|
|
ReduxActionErrorTypes,
|
|
} from "constants/ReduxActionConstants";
|
|
import PluginsApi, { PluginFormPayload } from "api/PluginApi";
|
|
import { validateResponse } from "sagas/ErrorSagas";
|
|
import { getCurrentOrgId } from "selectors/organizationSelectors";
|
|
import {
|
|
getDatasources,
|
|
getPlugin,
|
|
getPluginForm,
|
|
getPlugins,
|
|
} from "selectors/entitiesSelector";
|
|
import { Datasource } from "entities/Datasource";
|
|
import { Plugin } from "api/PluginApi";
|
|
import {
|
|
fetchPluginFormConfigsSuccess,
|
|
fetchPluginFormConfigSuccess,
|
|
} from "actions/pluginActions";
|
|
import {
|
|
defaultActionDependenciesConfig,
|
|
defaultActionEditorConfigs,
|
|
defaultActionSettings,
|
|
} from "constants/AppsmithActionConstants/ActionConstants";
|
|
import { GenericApiResponse } from "api/ApiResponses";
|
|
import PluginApi from "api/PluginApi";
|
|
import log from "loglevel";
|
|
import { PluginType } from "entities/Action";
|
|
import { DependencyMap } from "utils/DynamicBindingUtils";
|
|
|
|
function* fetchPluginsSaga() {
|
|
try {
|
|
const orgId = yield select(getCurrentOrgId);
|
|
if (!orgId) {
|
|
throw Error("Org id does not exist");
|
|
}
|
|
const pluginsResponse = yield call(PluginsApi.fetchPlugins, orgId);
|
|
const isValid = yield validateResponse(pluginsResponse);
|
|
if (isValid) {
|
|
yield put({
|
|
type: ReduxActionTypes.FETCH_PLUGINS_SUCCESS,
|
|
payload: pluginsResponse.data,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.FETCH_PLUGINS_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
function* fetchPluginFormConfigsSaga() {
|
|
try {
|
|
const datasources: Datasource[] = yield select(getDatasources);
|
|
const plugins: Plugin[] = yield select(getPlugins);
|
|
const pluginFormRequests = [];
|
|
// Add plugins of all the datasources of their org
|
|
const pluginIdFormsToFetch = new Set(
|
|
datasources.map((datasource) => datasource.pluginId),
|
|
);
|
|
// Add the api plugin id by default because it is the only type of action that
|
|
// can exist without a saved datasource
|
|
const apiPlugin = plugins.find((plugin) => plugin.type === PluginType.API);
|
|
if (apiPlugin) {
|
|
pluginIdFormsToFetch.add(apiPlugin.id);
|
|
}
|
|
for (const id of pluginIdFormsToFetch) {
|
|
pluginFormRequests.push(yield call(PluginsApi.fetchFormConfig, id));
|
|
}
|
|
const pluginFormData: PluginFormPayload[] = [];
|
|
const pluginFormResponses = yield all(pluginFormRequests);
|
|
for (const response of pluginFormResponses) {
|
|
yield validateResponse(response);
|
|
pluginFormData.push(response.data);
|
|
}
|
|
|
|
const formConfigs: Record<string, any[]> = {};
|
|
const editorConfigs: Record<string, any[]> = {};
|
|
const settingConfigs: Record<string, any[]> = {};
|
|
const dependencies: Record<string, DependencyMap> = {};
|
|
|
|
Array.from(pluginIdFormsToFetch).forEach((pluginId, index) => {
|
|
const plugin = plugins.find((plugin) => plugin.id === pluginId);
|
|
// Datasource form always use server's copy
|
|
formConfigs[pluginId] = pluginFormData[index].form;
|
|
// Action editor form if not available use default
|
|
if (plugin && !pluginFormData[index].editor) {
|
|
editorConfigs[pluginId] = defaultActionEditorConfigs[plugin.type];
|
|
} else {
|
|
editorConfigs[pluginId] = pluginFormData[index].editor;
|
|
}
|
|
// Action settings form if not available use default
|
|
if (plugin && !pluginFormData[index].setting) {
|
|
settingConfigs[pluginId] = defaultActionSettings[plugin.type];
|
|
} else {
|
|
settingConfigs[pluginId] = pluginFormData[index].setting;
|
|
}
|
|
// Action dependencies config if not available use default
|
|
if (plugin && !pluginFormData[index].dependencies) {
|
|
dependencies[pluginId] = defaultActionDependenciesConfig[plugin.type];
|
|
} else {
|
|
dependencies[pluginId] = pluginFormData[index].dependencies;
|
|
}
|
|
});
|
|
|
|
yield put(
|
|
fetchPluginFormConfigsSuccess({
|
|
formConfigs,
|
|
editorConfigs,
|
|
settingConfigs,
|
|
dependencies,
|
|
}),
|
|
);
|
|
} catch (error) {
|
|
log.error(error);
|
|
yield put({
|
|
type: ReduxActionErrorTypes.FETCH_PLUGIN_FORM_CONFIGS_ERROR,
|
|
payload: { error },
|
|
});
|
|
}
|
|
}
|
|
|
|
export function* checkAndGetPluginFormConfigsSaga(pluginId: string) {
|
|
try {
|
|
const plugin: Plugin = yield select(getPlugin, pluginId);
|
|
const formConfig = yield select(getPluginForm, pluginId);
|
|
if (!formConfig) {
|
|
const formConfigResponse: GenericApiResponse<PluginFormPayload> = yield PluginApi.fetchFormConfig(
|
|
pluginId,
|
|
);
|
|
yield validateResponse(formConfigResponse);
|
|
if (!formConfigResponse.data.setting) {
|
|
formConfigResponse.data.setting = defaultActionSettings[plugin.type];
|
|
}
|
|
if (!formConfigResponse.data.editor) {
|
|
formConfigResponse.data.editor =
|
|
defaultActionEditorConfigs[plugin.type];
|
|
}
|
|
if (!formConfigResponse.data.dependencies) {
|
|
formConfigResponse.data.dependencies =
|
|
defaultActionDependenciesConfig[plugin.type];
|
|
}
|
|
yield put(
|
|
fetchPluginFormConfigSuccess({
|
|
id: pluginId,
|
|
...formConfigResponse.data,
|
|
}),
|
|
);
|
|
}
|
|
} catch (e) {
|
|
log.error("Failed to get plugin form");
|
|
}
|
|
}
|
|
|
|
function* root() {
|
|
yield all([
|
|
takeEvery(ReduxActionTypes.FETCH_PLUGINS_REQUEST, fetchPluginsSaga),
|
|
takeEvery(
|
|
ReduxActionTypes.FETCH_PLUGIN_FORM_CONFIGS_REQUEST,
|
|
fetchPluginFormConfigsSaga,
|
|
),
|
|
]);
|
|
}
|
|
|
|
export default root;
|