-
Notifications
You must be signed in to change notification settings - Fork 2.9k
add onRenderDescription to TextField #4588
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
dzearing
merged 7 commits into
microsoft:master
from
chrismohr:onRenderDescription_for_TextField
Apr 20, 2018
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3d65b14
add onRenderDescription to TextField
50eaa79
delete empty change files
b6808b2
fix linting error
5f6ad33
use arrow function instead of autobind
c15acaf
address pr feedback
383f313
allow onRenderDescriptiont to be invoked in absence of description
a65ef5a
remove autobind
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
11 changes: 11 additions & 0 deletions
11
...on/changes/office-ui-fabric-react/onRenderDescription_for_TextField_2018-04-16-23-55.json
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,11 @@ | ||
| { | ||
| "changes": [ | ||
| { | ||
| "packageName": "office-ui-fabric-react", | ||
| "comment": "add onRenderDescription to TextField", | ||
| "type": "minor" | ||
| } | ||
| ], | ||
| "packageName": "office-ui-fabric-react", | ||
| "email": "chrismo@microsoft.com" | ||
| } |
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
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
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
28 changes: 28 additions & 0 deletions
28
...-fabric-react/src/components/TextField/examples/TextField.OnRenderDescription.Example.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,28 @@ | ||
| import * as React from 'react'; | ||
| import { TextField, ITextFieldProps } from 'office-ui-fabric-react/lib/TextField'; | ||
| import './TextField.Examples.scss'; | ||
|
|
||
| export class TextFieldOnRenderDescriptionExample extends React.Component<{}, {}> { | ||
| public render() { | ||
| return ( | ||
| <div className='docs-TextFieldExample'> | ||
| <TextField | ||
| description={ 'A custom description that appends a link.' } | ||
| onRenderDescription={ this._onRenderDescription } | ||
| /> | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| private _onRenderDescription = (props: ITextFieldProps): JSX.Element => { | ||
| return ( | ||
| <div> | ||
| { props.description }{ ' ' } | ||
| <a href='#' onClick={ this._onLinkClick } >Link</a> | ||
| </div>); | ||
| } | ||
|
|
||
| private _onLinkClick = (e: React.MouseEvent<HTMLElement>) => { | ||
| e.preventDefault(); | ||
| } | ||
| } |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we update this to be able to call the
onRenderDescriptionprop even if thedescriptionprop is not provided? i think for our use case we'd like our wrapping TextField component to provideonRenderDescriptionwithout providingdescriptionsince our description will allow JSX and cannot be passed in to the Fabric descriptionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah i see you already implemented this change within
render