2022-10-22 23:00:51 -07:00
|
|
|
import Error from "./error";
|
|
|
|
|
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) {
|
2022-10-22 23:00:51 -07:00
|
|
|
return <Error error={error} />
|
2022-08-25 16:29:26 +03:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|