-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(DataList): added Actionable demo (#11402)
* chore(DataList): added Actionable demo * Removed page section styling, added page section
- Loading branch information
1 parent
99e344c
commit 3f98e86
Showing
2 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
134 changes: 134 additions & 0 deletions
134
packages/react-core/src/demos/DataList/examples/DataListActionable.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
import React from 'react'; | ||
import { | ||
Button, | ||
Content, | ||
DataList, | ||
DataListItem, | ||
DataListCell, | ||
DataListItemRow, | ||
DataListItemCells, | ||
DataListAction, | ||
Dropdown, | ||
DropdownList, | ||
DropdownItem, | ||
MenuToggle, | ||
MenuToggleElement, | ||
PageSection, | ||
Title | ||
} from '@patternfly/react-core'; | ||
import EllipsisVIcon from '@patternfly/react-icons/dist/esm/icons/ellipsis-v-icon'; | ||
import { DashboardWrapper } from '@patternfly/react-core/dist/js/demos/DashboardWrapper'; | ||
|
||
export const DataListActionable: React.FunctionComponent = () => { | ||
const [isOpen, setIsOpen] = React.useState(false); | ||
const [isDeleted, setIsDeleted] = React.useState(false); | ||
|
||
const onToggle = () => { | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
const onSelect = () => { | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
return ( | ||
<DashboardWrapper mainContainerId="main-content-datalist-view-actions" breadcrumb={null}> | ||
<PageSection> | ||
<Content> | ||
<Title headingLevel="h1">Projects</Title> | ||
<Content component="p">This is a demo that showcases PatternFly Data List</Content> | ||
</Content> | ||
</PageSection> | ||
<PageSection> | ||
<DataList aria-label="single action data list example "> | ||
{!isDeleted && ( | ||
<DataListItem aria-labelledby="single-action-item1"> | ||
<DataListItemRow> | ||
<DataListItemCells | ||
dataListCells={[ | ||
<DataListCell key="primary content"> | ||
<span id="single-action-item1">Single actionable Primary content</span> | ||
</DataListCell>, | ||
<DataListCell key="secondary content">Single actionable Secondary content</DataListCell> | ||
]} | ||
/> | ||
<DataListAction | ||
aria-labelledby="single-action-item1 single-action-action1" | ||
id="single-action-action1" | ||
aria-label="Actions" | ||
> | ||
<Button | ||
onClick={() => { | ||
if (confirm('Are you sure?')) { | ||
setIsDeleted(true); | ||
} | ||
}} | ||
variant="primary" | ||
key="delete-action" | ||
> | ||
Delete | ||
</Button> | ||
</DataListAction> | ||
</DataListItemRow> | ||
</DataListItem> | ||
)} | ||
<DataListItem aria-labelledby="multi-actions-item1"> | ||
<DataListItemRow> | ||
<DataListItemCells | ||
dataListCells={[ | ||
<DataListCell key="primary content"> | ||
<span id="multi-actions-item1">Multi actions Primary content</span> | ||
</DataListCell>, | ||
<DataListCell key="secondary content">Multi actions Secondary content</DataListCell> | ||
]} | ||
/> | ||
<DataListAction | ||
aria-labelledby="multi-actions-item1 multi-actions-action1" | ||
id="multi-actions-action1" | ||
aria-label="Actions" | ||
> | ||
<Dropdown | ||
popperProps={{ position: 'right' }} | ||
onSelect={onSelect} | ||
toggle={(toggleRef: React.Ref<MenuToggleElement>) => ( | ||
<MenuToggle | ||
ref={toggleRef} | ||
isExpanded={isOpen} | ||
onClick={onToggle} | ||
variant="plain" | ||
aria-label="Data list with actions example kebab toggle" | ||
> | ||
<EllipsisVIcon aria-hidden="true" /> | ||
</MenuToggle> | ||
)} | ||
isOpen={isOpen} | ||
onOpenChange={(isOpen: boolean) => setIsOpen(isOpen)} | ||
> | ||
<DropdownList> | ||
<DropdownItem key="action">Action</DropdownItem> | ||
{/* Prevent default onClick functionality for example | ||
purposes */} | ||
<DropdownItem key="link" to="#" onClick={(event: any) => event.preventDefault()}> | ||
Link | ||
</DropdownItem> | ||
<DropdownItem key="disabled action" isDisabled> | ||
Disabled Action | ||
</DropdownItem> | ||
<DropdownItem | ||
key="disabled link" | ||
isDisabled | ||
to="#" | ||
onClick={(event: any) => event.preventDefault()} | ||
> | ||
Disabled Link | ||
</DropdownItem> | ||
</DropdownList> | ||
</Dropdown> | ||
</DataListAction> | ||
</DataListItemRow> | ||
</DataListItem> | ||
</DataList> | ||
</PageSection> | ||
</DashboardWrapper> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters