import { DrawerContent } from '@adminjs/design-system' import React from 'react' import allowOverride from '../../hoc/allow-override.js' import { getActionElementCss } from '../../utils/index.js' import ActionHeader from '../app/action-header/action-header.js' import BasePropertyComponent from '../property-type/index.js' import { ActionProps } from './action.props.js' import LayoutElementRenderer from './utils/layout-element-renderer.js' /** * @name ShowAction * @category Actions * @description Shows a given record. * @component * @private */ const Show: React.FC = (props) => { const { resource, record, action } = props const properties = resource.showProperties const contentTag = getActionElementCss(resource.id, action.name, 'drawer-content') return ( {action?.showInDrawer ? : null} {action.layout ? action.layout.map((layoutElement, i) => ( )) : properties.map((property) => ( ))} ) } const OverridableShow = allowOverride(Show, 'DefaultShowAction') export { OverridableShow as default, OverridableShow as Show, Show as OriginalShow, }