-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RNMobile] Move MediaUploadPorgress to its own component folder (#17392)
* Move MediaUploadPorgress to its own component folder (native) * MediaUploadProgress - Fix import to code standards * MediaUploadProgress readme * Mobile - MediaUploadProgress README update
- Loading branch information
Showing
9 changed files
with
157 additions
and
9 deletions.
There are no files selected for viewing
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
140 changes: 140 additions & 0 deletions
140
packages/block-editor/src/components/media-upload-progress/README.md
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,140 @@ | ||
MediaUploadProgress | ||
=================== | ||
|
||
`MediaUploadProgress` shows a progress bar while a media file associated with a block is being uploaded. | ||
|
||
## Usage | ||
|
||
Usage example | ||
|
||
```jsx | ||
import { ImageBackground, Text, View } from 'react-native'; | ||
import { | ||
MediaUploadProgress, | ||
} from '@wordpress/block-editor'; | ||
|
||
function MediaProgress( { height, width, url, id } ) { | ||
return ( | ||
<MediaUploadProgress | ||
height={ height } | ||
width={ width } | ||
coverUrl={ url } | ||
mediaId={ id } | ||
renderContent={ ( { isUploadFailed, finalWidth, finalHeight, retryMessage } ) => { | ||
return ( | ||
<ImageBackground | ||
style={ { width: finalWidth, height: finalHeight } } | ||
resizeMethod="scale" | ||
source={ { uri: url } } | ||
> | ||
{ isUploadFailed && | ||
<View> | ||
<Text>{ retryMessage }</Text> | ||
</View> | ||
} | ||
</ImageBackground> | ||
); | ||
} } | ||
/> | ||
); | ||
} | ||
``` | ||
|
||
## Props | ||
|
||
### mediaId | ||
|
||
A media ID that identifies the current upload. | ||
|
||
- Type: `Number` | ||
- Required: Yes | ||
- Platform: Mobile | ||
|
||
### coverUrl | ||
|
||
By passing an image url, it'll calculate the right size depending on the container of the component maintaining its aspect ratio, it'll pass these values through `renderContent`. | ||
|
||
- Type: `String` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
### renderContent | ||
|
||
Content to be rendered along with the progress bar, usually the thumbnail of the media being uploaded. | ||
|
||
- Type: `React components` | ||
- Required: Yes | ||
- Platform: Mobile | ||
|
||
It passes an object containing the following properties: | ||
|
||
**With** `coverUrl` as a parameter: | ||
|
||
`{ isUploadInProgress, isUploadFailed, finalWidth, finalHeight, imageWidthWithinContainer, retryMessage }` | ||
|
||
**Without** `coverUrl` as a parameter: | ||
|
||
`{ isUploadInProgress, isUploadFailed, retryMessage }` | ||
|
||
|
||
### width | ||
|
||
Forces the final width to be returned in `finalWidth` | ||
|
||
- Type: `Number` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
### height | ||
|
||
Forces the final height to be returned in `finalHeight` | ||
|
||
- Type: `Number` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
### onUpdateMediaProgress | ||
|
||
Callback called when the progress of the upload is updated. | ||
|
||
- Type: `Function` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
The argument of the callback is an object containing the following properties: | ||
|
||
`{ mediaId, mediaUrl, progress, state }` | ||
|
||
### onFinishMediaUploadWithSuccess | ||
|
||
Callback called when the media file has been uploaded successfully. | ||
|
||
- Type: `Function` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
The argument of the callback is an object containing the following properties: | ||
|
||
`{ mediaId, mediaServerId, mediaUrl, progress, state }` | ||
|
||
### onFinishMediaUploadWithFailure | ||
|
||
Callback called when the media file couldn't be uploaded. | ||
|
||
- Type: `Function` | ||
- Required: No | ||
- Platform: Mobile | ||
|
||
The argument of the callback is an object containing the following properties: | ||
|
||
`{ mediaId, progress, state }` | ||
|
||
|
||
### onMediaUploadStateReset | ||
|
||
Callback called when the media upload is reset | ||
|
||
- Type: `Function` | ||
- Required: No | ||
- Platform: Mobile | ||
|
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
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
packages/block-editor/src/components/media-upload-progress/styles.native.scss
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,4 @@ | ||
.mediaUploadProgress { | ||
flex: 1; | ||
background-color: $gray-lighten-30; | ||
} |
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
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
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
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