Import
import { InlineEntryCard } from '@contentful/f36-components';// orimport { InlineEntryCard } from '@contentful/f36-card';
Examples
Basic usage
Here are InlineEntryCard
components used with all possible status
variants.
function BasicInlineEntryCardExample() {return (<><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="published"title="Published Entry Title">Published entry body</InlineEntryCard><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="new"title="New Entry Title">New entry body</InlineEntryCard><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="draft"title="Draft Entry Title">Draft entry body</InlineEntryCard><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="deleted"title="Deleted Entry Title">Deleted entry body</InlineEntryCard><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="changed"title="Changed Entry Title">Changed entry body</InlineEntryCard><InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="archived"title="Archived Entry Title">Archived entry body</InlineEntryCard></>);}
Usage with various actions
The actions
prop takes an array of MenuItem
elements. You can learn more about MenuItem
component on Menu
documentation page.
function InlineEntryCardWithActionsExample() {const handleEditAction = () => console.log('handleEditAction');const handleUnpublishAction = () => console.log('handleUnpublishAction');const handleCopyAction = () => console.log('handleCopyAction');const handleDeleteAction = () => console.log('handleDeleteAction');return (<InlineEntryCardactions={[<MenuItem key="edit" onClick={handleEditAction}>Edit</MenuItem>,<MenuItem key="unpublish" onClick={handleUnpublishAction}>Unpublish</MenuItem>,<MenuItem key="copy" onClick={handleCopyAction}>Copy</MenuItem>,<MenuItem key="delete" onClick={handleDeleteAction}>Delete</MenuItem>,]}status="published"title="Forma 36 Entry Title">Forma 36 entry body</InlineEntryCard>);}
Usage inline in text
function InlineEntryCardInTextExample() {return (<Text>Macbeth (/məkˈbɛθ/, full title The Tragedie of Macbeth) is a tragedy by{' '}<InlineEntryCardactions={[<MenuItem key="copy">Copy</MenuItem>,<MenuItem key="delete">Delete</MenuItem>,]}status="published"title="Author: William Shakespeare">William Shakespeare</InlineEntryCard>. It is thought to have been first performed in 1606.[a] It dramatises thedamaging physical and psychological effects of political ambition on thosewho seek power. Of all the plays that Shakespeare wrote during the reignof James I, Macbeth most clearly reflects his relationship with KingJames, patron of Shakespeare’s acting company.[1] It was first publishedin the Folio of 1623, possibly from a prompt book, and is Shakespeare’sshortest tragedy</Text>);}
Props (API reference)
Open in StorybookName | Type | Default |
---|---|---|
actions | ReactNodeArray An array of Menu elements used to render an actions menu | |
actionsButtonProps | Partial<ButtonProps<"button">> Props to pass to the action menu button | |
ariaLabel | string If the card is selectable and has no title, it will need a aria-label to help screen readers identify it | |
as | HTML Tag or React Component (e.g. div, span, etc) Handle tag for Card component | |
badge | string number false true {} ReactNodeArray ReactElement<any, string | JSXElementConstructor<any>> ReactPortal Badge component to show in Card header | |
children | ReactNode Child nodes to be rendered in the component | |
className | string CSS class to be appended to the root element | |
contentType | string The content type of the entry | |
customActionButton | string number false true {} ReactNodeArray ReactElement<any, string | JSXElementConstructor<any>> ReactPortal An element to render as the action button | |
description | string The description of the entry | |
href | string Passing href into the Card. You need to also add property as="a" to make it rendered as <a /> | |
isHovered | false true Applies hover styles to the card | |
isLoading | false true Loading state for the component - when true will display loading feedback to the user | |
isSelected | false true Applies selected styles to the element | |
margin | "spacing2Xs" "spacingXs" "spacingS" "spacingM" "spacingL" "spacingXl" "spacing2Xl" "spacing3Xl" "spacing4Xl" "none" sets margin to one of the corresponding spacing tokens | |
marginBottom | "spacing2Xs" "spacingXs" "spacingS" "spacingM" "spacingL" "spacingXl" "spacing2Xl" "spacing3Xl" "spacing4Xl" "none" sets margin-bottom to one of the corresponding spacing tokens | |
marginLeft | "spacing2Xs" "spacingXs" "spacingS" "spacingM" "spacingL" "spacingXl" "spacing2Xl" "spacing3Xl" "spacing4Xl" "none" sets margin-left to one of the corresponding spacing tokens | |
marginRight | "spacing2Xs" "spacingXs" "spacingS" "spacingM" "spacingL" "spacingXl" "spacing2Xl" "spacing3Xl" "spacing4Xl" "none" sets margin-right to one of the corresponding spacing tokens | |
marginTop | "spacing2Xs" "spacingXs" "spacingS" "spacingM" "spacingL" "spacingXl" "spacing2Xl" "spacing3Xl" "spacing4Xl" "none" sets margin-top to one of the corresponding spacing tokens | |
onClick | MouseEventHandler<HTMLElement> Click event handler | |
status | "archived" "changed" "deleted" "draft" "new" "published" The publishing status of the entry | |
testId | string A [data-test-id] attribute used for testing purposes | cf-ui-inline-entry-card |
thumbnailElement | ReactElement<any, string | JSXElementConstructor<any>> The thumbnail of the entry | |
title | string The title of the entry, it will be used as the value for the tooltip | |
titleTag | "h1" "h2" "h3" "h4" "h5" "h6" The tag for the title of the entry. |