Force WithDefault not to be an optional value

Summary:
`WithDefault` appears not to be required to be prefixed with `?` because it's option value per se.

Fixed tests, removed `?` where needed, updated snapshots and review them. Added mechanism fro throwing error when `?WithDefault` found. Add tests for it.

Reviewed By: rubennorte

Differential Revision: D16048463

fbshipit-source-id: f55ed7454aacf0b8c42944a9b5c1037ad1b360fe
This commit is contained in:
Michał Osadnik
2019-07-02 02:59:04 -07:00
committed by Facebook Github Bot
parent b476ad78b5
commit 61e95e5cbf
19 changed files with 110 additions and 101 deletions
@@ -27,7 +27,7 @@ type NativeProps = $ReadOnly<{|
/**
* Whether the pull to refresh functionality is enabled.
*/
enabled?: ?WithDefault<boolean, false>,
enabled?: WithDefault<boolean, false>,
/**
* The colors (at least one) that will be used to draw the refresh indicator.
*/
@@ -45,13 +45,13 @@ type NativeProps = $ReadOnly<{|
* Also, 1 isn't actually a safe default. We are able to set this here
* because native code isn't currently consuming the generated artifact.
* This will end up being
* size?: ?WithDefault<'default' | 'large', 'default'>,
* size?: WithDefault<'default' | 'large', 'default'>,
*/
size?: ?WithDefault<Int32, 1>,
size?: WithDefault<Int32, 1>,
/**
* Progress view top offset
*/
progressViewOffset?: ?WithDefault<Float, 0>,
progressViewOffset?: WithDefault<Float, 0>,
/**
* Called when the view starts refreshing.