-
Notifications
You must be signed in to change notification settings - Fork 391
chore(expandablesection): Added a demo to show how to use expandable section to create an expandable text component. #9887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
b3bfc27
chore(expandablesection): Added a demo to show how to use expandable …
dlabaj 1d28334
Update packages/react-core/src/demos/ExpandableSection/ExpandableSect…
dlabaj 31e40b3
Update packages/react-core/src/demos/ExpandableSection/ExpandableSect…
dlabaj e06a518
Update packages/react-core/src/demos/ExpandableSection/ExpandableSect…
tlabaj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
packages/react-core/src/demos/ExpandableSection/ExpandableSection.md
This file contains hidden or 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,14 @@ | ||
| --- | ||
| id: Expandable section | ||
| section: components | ||
| --- | ||
|
|
||
| ## Demos | ||
|
|
||
| - The following demo shows how to use the ExpandableSection to create an expandable text component. | ||
|
|
||
| ### Expandable Text Component | ||
|
tlabaj marked this conversation as resolved.
Outdated
|
||
|
|
||
|
dlabaj marked this conversation as resolved.
Outdated
|
||
| ```ts file='./examples/ExpandableTextDemo.tsx' | ||
|
|
||
| ``` | ||
30 changes: 30 additions & 0 deletions
30
packages/react-core/src/demos/ExpandableSection/examples/ExpandableTextDemo.tsx
This file contains hidden or 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,30 @@ | ||
| import React from 'react'; | ||
| import { ExpandableSection, ExpandableSectionVariant, Truncate } from '@patternfly/react-core'; | ||
|
|
||
| export const ExpandableTextDemo: React.FunctionComponent = () => { | ||
| const [isExpanded, setIsExpanded] = React.useState(false); | ||
|
|
||
| const onToggle = (_event: React.MouseEvent, isExpanded: boolean) => { | ||
| setIsExpanded(isExpanded); | ||
| }; | ||
|
|
||
| const content = `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nec dignissim turpis, et tristique purus. | ||
| Phasellus efficitur ante quis dolor viverra imperdiet. Orci varius natoque penatibus et magnis dis parturient | ||
| montes, nascetur ridiculus mus. Pellentesque laoreet, sem ac elementum semper, lectus mauris vestibulum nulla, | ||
| eget volutpat massa neque vel turpis. Donec finibus enim eu leo accumsan consectetur. Praesent massa diam, | ||
| tincidunt eu dui ac, ullamcorper elementum est. Phasellus metus felis, venenatis vitae semper nec, porta a metus. | ||
| Vestibulum justo nisi, imperdiet id eleifend at, varius nec lorem. Fusce porttitor mollis nibh, ut elementum ante | ||
| commodo tincidunt. Integer tincidunt at ipsum non aliquet.`; | ||
|
|
||
| return ( | ||
| <ExpandableSection | ||
| variant={ExpandableSectionVariant.truncate} | ||
| toggleText={isExpanded ? 'Show less' : 'Show more'} | ||
| onToggle={onToggle} | ||
| isExpanded={isExpanded} | ||
| truncateMaxLines={-1} | ||
| > | ||
| {isExpanded ? content : <Truncate content={content} style={{ maxWidth: '10ch' }} />} | ||
| </ExpandableSection> | ||
| ); | ||
| }; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.