PromucFlow_constructor/app/client/src/pages/Applications/EmbedSnippet/useUpdateEmbedSnippet.tsx

134 lines
4.2 KiB
TypeScript
Raw Normal View History

import { useCallback, useEffect, useMemo, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
import { getDefaultPageId } from "sagas/selectors";
import { getSettings } from "selectors/settingsSelectors";
import { getCurrentUser } from "selectors/usersSelectors";
import {
AppsmithFrameAncestorsSetting,
APPSMITH_ALLOWED_FRAME_ANCESTORS_SETTING,
} from "@appsmith/pages/AdminSettings/config/general";
import { getCurrentApplication } from "selectors/applicationSelectors";
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
import debounce from "lodash/debounce";
import { updateApplication } from "actions/applicationActions";
import { viewerURL } from "RouteBuilder";
import { cssDimensionValidator } from "./DimensionsInput";
import {
createMessage,
IN_APP_EMBED_SETTING,
} from "@appsmith/constants/messages";
const embedSettingContentConfig = {
[AppsmithFrameAncestorsSetting.ALLOW_EMBEDDING_EVERYWHERE]: {
icon: "global-line",
label: createMessage(IN_APP_EMBED_SETTING.allowEmbeddingLabel),
tooltip: createMessage(IN_APP_EMBED_SETTING.allowEmbeddingTooltip),
},
[AppsmithFrameAncestorsSetting.LIMIT_EMBEDDING]: {
icon: "lock-2-line",
label: createMessage(IN_APP_EMBED_SETTING.limitEmbeddingLabel),
tooltip: createMessage(IN_APP_EMBED_SETTING.limitEmbeddingTooltip),
},
[AppsmithFrameAncestorsSetting.DISABLE_EMBEDDING_EVERYWHERE]: {
icon: "forbid-line",
label: createMessage(IN_APP_EMBED_SETTING.disableEmbeddingLabel),
tooltip: createMessage(IN_APP_EMBED_SETTING.disableEmbeddingTooltip),
},
};
type EmbedSetting = keyof typeof embedSettingContentConfig;
function useUpdateEmbedSnippet() {
const dispatch = useDispatch();
const application = useSelector(getCurrentApplication);
const settings = useSelector(getSettings);
const user = useSelector(getCurrentUser);
const defaultPageId = useSelector(getDefaultPageId);
const currentSetting: EmbedSetting =
APPSMITH_ALLOWED_FRAME_ANCESTORS_SETTING.format &&
APPSMITH_ALLOWED_FRAME_ANCESTORS_SETTING.format(
settings["APPSMITH_ALLOWED_FRAME_ANCESTORS"] as string,
).value;
const embedSettingContent = embedSettingContentConfig[currentSetting];
const [embedSetting, setEmbedSetting] = useState({
height: "720px",
width: "1024px",
...application?.embedSetting,
});
const areDimensionValuesValid = useCallback((embedSetting: any) => {
const isHeightValid = cssDimensionValidator(embedSetting.height).isValid;
const isWidthValid = cssDimensionValidator(embedSetting.width).isValid;
return isHeightValid && isWidthValid;
}, []);
const onChange = (setting: any) => {
if (application) {
const updatedSetting = { ...embedSetting, ...setting };
setEmbedSetting((state) => {
return {
...state,
...setting,
};
});
areDimensionValuesValid(updatedSetting) &&
debouncedUpdate(application?.id, updatedSetting);
}
};
useEffect(() => {
if (user?.isSuperUser) {
dispatch({
type: ReduxActionTypes.FETCH_ADMIN_SETTINGS,
});
}
}, []);
const debouncedUpdate = useCallback(
debounce(
(applicationId, embedSetting) => {
dispatch(
updateApplication(applicationId, {
embedSetting,
currentApp: true,
}),
);
},
1000,
{
leading: true,
},
),
[],
);
const appViewEndPoint = useMemo(() => {
const url = viewerURL({
pageId: defaultPageId,
});
const fullUrl = new URL(window.location.origin.toString() + url);
if (embedSetting?.showNavigationBar) {
return fullUrl.toString();
}
fullUrl.searchParams.append("embed", "true");
return fullUrl.toString();
}, [defaultPageId, embedSetting?.showNavigationBar]);
const snippet = useMemo(() => {
return `<iframe src="${appViewEndPoint}" width="${embedSetting?.width}" height="${embedSetting?.height}"></iframe>`;
}, [appViewEndPoint, embedSetting?.width, embedSetting?.height]);
return {
appViewEndPoint,
snippet,
onChange,
embedSettingContent,
currentEmbedSetting: embedSetting,
isSuperUser: user?.isSuperUser,
};
}
export default useUpdateEmbedSnippet;