Skip to content
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

[TM] add spec for ImageStore #25101

Closed
wants to merge 1 commit into from

Conversation

mitulsavani
Copy link
Contributor

Summary

This PR solves part of this issue: #24875

Changelog

[General] [Added] - add TM spec for ImageStore

Test Plan

Flow passes

@mitulsavani mitulsavani requested a review from shergin as a code owner May 31, 2019 06:47
@facebook-github-bot
Copy link
Contributor

Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please sign up at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need the corporate CLA signed.

If you have received this in error or have any questions, please contact us at cla@fb.com. Thanks!

@react-native-bot react-native-bot added API: ImageStore Component: Image Type: Enhancement A new feature or enhancement of an existing feature. labels May 31, 2019
@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label May 31, 2019
@facebook-github-bot
Copy link
Contributor

Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Facebook open source project. Thanks!

Copy link
Contributor

@ericlewis ericlewis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! Just a few minor changes. I also suggest that you group the iOS only methods and comment that they are iOS only

Libraries/Image/NativeImageStore.js Show resolved Hide resolved
Libraries/Image/NativeImageStore.js Show resolved Hide resolved
Libraries/Image/NativeImageStore.js Show resolved Hide resolved
Libraries/Image/NativeImageStore.js Show resolved Hide resolved
Libraries/Image/NativeImageStore.js Show resolved Hide resolved
@mitulsavani
Copy link
Contributor Author

Great work! Just a few minor changes. I also suggest that you group the iOS only methods and comment that they are iOS only

What I have found is getBase64ForTag method is present in both iOS and Android. How should I comment particularly that method?

PS: Please correct me if I am wrong here

Example

// iOS only
+hasImageForTag: (
    uri: string, 
    callback: (hasImage: boolean) => void,
  ) => void;
  +removeImageForTag: (
    uri: string,
  ) => void;
  +addImageFromBase64: (
    base64ImageData: string,
    success: (uri: string) => void,
    failure: (error: string) => void;
  ) => void;

// iOS and Android 
  +getBase64ForTag: (
    uri: string,
    success: (base64ImageData: string) => void,
    failure: (error: string) => void,
  ) => void;

@ericlewis
Copy link
Contributor

@mitulsavani switch the common one to be at the top & remove its comment basically. We also need to address all of these test failures.

@fkgozali
Copy link
Contributor

@mitulsavani are you going to make some updates to this PR some time today? If not, I can just import this and update the code per @ericlewis comments accordingly.

Copy link
Contributor

@facebook-github-bot facebook-github-bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fkgozali has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.

@fkgozali
Copy link
Contributor

Actually, since the changes are minor, I'll just edit them when importing, so we can save some time :). We're almost done!

@react-native-bot
Copy link
Collaborator

This pull request was successfully merged by @mitulsavani in 5e6cebe.

When will my fix make it into a release? | Upcoming Releases

@react-native-bot react-native-bot added the Merged This PR has been merged. label Jun 1, 2019
M-i-k-e-l pushed a commit to M-i-k-e-l/react-native that referenced this pull request Mar 10, 2020
Summary:
This PR solves part of this issue: facebook#24875

## Changelog

[General] [Added] - add TM spec for ImageStore
Pull Request resolved: facebook#25101

Reviewed By: hramos

Differential Revision: D15583463

Pulled By: fkgozali

fbshipit-source-id: 17e87e8fecb35d42a981b1fb348e40d2b1e91cc6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API: ImageStore CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. Component: Image Merged This PR has been merged. Native Module Type: Enhancement A new feature or enhancement of an existing feature.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants