-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68d1bfb
commit fa70ba4
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
136 changes: 136 additions & 0 deletions
136
packages/react-core/src/demos/DataList/examples/DataListActions.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,136 @@ | ||
import React from 'react'; | ||
import { | ||
Button, | ||
DataList, | ||
DataListItem, | ||
DataListCell, | ||
DataListItemRow, | ||
DataListItemCells, | ||
DataListAction, | ||
Dropdown, | ||
DropdownList, | ||
DropdownItem, | ||
MenuToggle, | ||
MenuToggleElement, | ||
PageSection, | ||
PageSectionVariants, | ||
TextContent, | ||
Text | ||
} 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 DataListActions: React.FunctionComponent = () => { | ||
const [isOpen, setIsOpen] = React.useState(false); | ||
const [isDeleted, setIsDeleted] = React.useState(false); | ||
|
||
const onToggle = () => { | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
const onSelect = () => { | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
return ( | ||
<React.Fragment> | ||
<DashboardWrapper mainContainerId="main-content-datalist-view-actions" breadcrumb={null}> | ||
<PageSection variant={PageSectionVariants.light}> | ||
<TextContent> | ||
<Text component="h1">Projects</Text> | ||
<Text component="p">This is a demo that showcases PatternFly Data List</Text> | ||
</TextContent> | ||
</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" | ||
isPlainButtonAction | ||
> | ||
<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> | ||
</DashboardWrapper> | ||
</React.Fragment> | ||
); | ||
}; |
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