mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-22 05:57:20 +00:00
135 lines
4.2 KiB
JavaScript
135 lines
4.2 KiB
JavaScript
import React, { useEffect, useState, useRef } from 'react';
|
|
import { isEqual } from 'lodash';
|
|
import iframeContent from './iframe.html';
|
|
|
|
import { useDataQueries } from '@/_stores/dataQueriesStore';
|
|
import { useGridStore } from '@/_stores/gridStore';
|
|
import { isQueryRunnable } from '@/_helpers/utils';
|
|
import { shallow } from 'zustand/shallow';
|
|
|
|
export const CustomComponent = (props) => {
|
|
const { height, properties, styles, id, setExposedVariable, exposedVariables, fireEvent, dataCy, component } = props;
|
|
const dataQueries = useDataQueries();
|
|
|
|
const showPlaceholder = useGridStore((state) => {
|
|
const { resizingComponentId, draggingComponentId } = state;
|
|
console.log('showPlaceholder', { resizingComponentId, draggingComponentId, id });
|
|
if (
|
|
(resizingComponentId === null && draggingComponentId === id) ||
|
|
(draggingComponentId === null && resizingComponentId === id) ||
|
|
id === 'resizingComponentId'
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}, shallow);
|
|
|
|
const { visibility, boxShadow } = styles;
|
|
const { code, data } = properties;
|
|
const [customProps, setCustomProps] = useState(data);
|
|
const iFrameRef = useRef(null);
|
|
const dataQueryRef = useRef(dataQueries);
|
|
const customPropRef = useRef(data);
|
|
|
|
useEffect(() => {
|
|
setCustomProps(data);
|
|
customPropRef.current = data;
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [JSON.stringify(data)]);
|
|
|
|
useEffect(() => {
|
|
if (!isEqual(exposedVariables.data, customProps)) {
|
|
setExposedVariable('data', customProps);
|
|
sendMessageToIframe({ message: 'DATA_UPDATED' });
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [setExposedVariable, customProps, exposedVariables.data]);
|
|
|
|
useEffect(() => {
|
|
sendMessageToIframe({ message: 'CODE_UPDATED' });
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [code]);
|
|
|
|
useEffect(() => {
|
|
dataQueryRef.current = dataQueries;
|
|
}, [dataQueries]);
|
|
|
|
useEffect(() => {
|
|
window.addEventListener('message', (e) => {
|
|
try {
|
|
if (e.data.from === 'customComponent' && e.data.componentId === id) {
|
|
if (e.data.message === 'UPDATE_DATA') {
|
|
setCustomProps({ ...customPropRef.current, ...e.data.updatedObj });
|
|
} else if (e.data.message === 'RUN_QUERY') {
|
|
const filteredQuery = dataQueryRef.current.filter(
|
|
(query) => query.name === e.data.queryName && isQueryRunnable(query)
|
|
);
|
|
const parameters = e.data.parameters ? JSON.parse(e.data.parameters) : {};
|
|
filteredQuery.length === 1 &&
|
|
fireEvent('onTrigger', {
|
|
component,
|
|
queryId: filteredQuery[0].id,
|
|
queryName: filteredQuery[0].name,
|
|
parameters,
|
|
});
|
|
} else {
|
|
sendMessageToIframe(e.data);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const sendMessageToIframe = ({ message }) => {
|
|
if (!iFrameRef.current) return;
|
|
switch (message) {
|
|
case 'INIT':
|
|
return iFrameRef.current.contentWindow.postMessage(
|
|
{
|
|
message: 'INIT_RESPONSE',
|
|
componentId: id,
|
|
data: customProps,
|
|
code: code,
|
|
},
|
|
'*'
|
|
);
|
|
case 'CODE_UPDATED':
|
|
return iFrameRef.current.contentWindow.postMessage(
|
|
{
|
|
message: 'CODE_UPDATED',
|
|
componentId: id,
|
|
data: customProps,
|
|
code: code,
|
|
},
|
|
'*'
|
|
);
|
|
case 'DATA_UPDATED':
|
|
return iFrameRef.current.contentWindow.postMessage(
|
|
{
|
|
message: 'DATA_UPDATED',
|
|
componentId: id,
|
|
data: customProps,
|
|
},
|
|
'*'
|
|
);
|
|
default:
|
|
return;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="card" style={{ display: visibility ? '' : 'none', height, boxShadow }} data-cy={dataCy}>
|
|
{showPlaceholder ? null : (
|
|
<iframe
|
|
srcDoc={iframeContent}
|
|
style={{ width: '100%', height: '100%', border: 'none' }}
|
|
ref={iFrameRef}
|
|
data-id={id}
|
|
></iframe>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|