2022-09-29 21:15:25 -07:00
|
|
|
export default function Container({ error = false, children, service }) {
|
2022-08-25 16:29:26 +03:00
|
|
|
if (error) {
|
|
|
|
return (
|
|
|
|
<div className="bg-theme-200/50 dark:bg-theme-900/20 rounded m-1 flex-1 flex flex-col items-center justify-center p-1">
|
|
|
|
<div className="font-thin text-sm">{error}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-29 21:15:25 -07:00
|
|
|
let visibleChildren = children;
|
|
|
|
const fields = service?.widget?.fields;
|
|
|
|
const type = service?.widget?.type;
|
|
|
|
if (fields && type) {
|
2022-10-16 15:18:01 -07:00
|
|
|
visibleChildren = children.filter(child => fields.some(field => `${type}.${field}` === child?.props?.label));
|
2022-09-29 21:15:25 -07:00
|
|
|
}
|
|
|
|
|
2022-09-29 21:20:01 -07:00
|
|
|
return <div className="relative flex flex-row w-full">{visibleChildren}</div>;
|
2022-08-25 16:29:26 +03:00
|
|
|
}
|