2015-11-19 21:32:37 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-02-25 11:05:32 +00:00
|
|
|
* @providesModule SizeFlexibilityUpdateTest
|
2015-11-19 21:32:37 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
2017-07-07 21:24:25 +00:00
|
|
|
var createReactClass = require('create-react-class');
|
2016-04-09 03:36:40 +00:00
|
|
|
var ReactNative = require('react-native');
|
2015-11-19 21:32:37 +00:00
|
|
|
var RCTNativeAppEventEmitter = require('RCTNativeAppEventEmitter');
|
|
|
|
var Subscribable = require('Subscribable');
|
2016-04-09 03:36:40 +00:00
|
|
|
var { View } = ReactNative;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var { TestModule } = ReactNative.NativeModules;
|
2015-11-19 21:32:37 +00:00
|
|
|
|
|
|
|
var reactViewWidth = 111;
|
|
|
|
var reactViewHeight = 222;
|
|
|
|
|
|
|
|
var finalState = false;
|
|
|
|
|
2017-07-07 21:24:25 +00:00
|
|
|
var SizeFlexibilityUpdateTest = createReactClass({
|
|
|
|
displayName: 'SizeFlexibilityUpdateTest',
|
2015-11-19 21:32:37 +00:00
|
|
|
mixins: [Subscribable.Mixin],
|
|
|
|
|
2018-02-08 18:26:45 +00:00
|
|
|
UNSAFE_componentWillMount: function() {
|
2015-11-19 21:32:37 +00:00
|
|
|
this.addListenerOn(
|
|
|
|
RCTNativeAppEventEmitter,
|
|
|
|
'rootViewDidChangeIntrinsicSize',
|
|
|
|
this.rootViewDidChangeIntrinsicSize
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
markPassed: function() {
|
|
|
|
TestModule.markTestPassed(true);
|
|
|
|
finalState = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
rootViewDidChangeIntrinsicSize: function(intrinsicSize) {
|
|
|
|
|
|
|
|
if (finalState) {
|
|
|
|
// If a test reaches its final state, it is not expected to do anything more
|
|
|
|
TestModule.markTestPassed(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.both) {
|
|
|
|
if (intrinsicSize.width === reactViewWidth && intrinsicSize.height === reactViewHeight) {
|
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.height) {
|
|
|
|
if (intrinsicSize.width !== reactViewWidth && intrinsicSize.height === reactViewHeight) {
|
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.width) {
|
|
|
|
if (intrinsicSize.width === reactViewWidth && intrinsicSize.height !== reactViewHeight) {
|
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.props.none) {
|
|
|
|
if (intrinsicSize.width !== reactViewWidth && intrinsicSize.height !== reactViewHeight) {
|
|
|
|
this.markPassed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={{'height':reactViewHeight, 'width':reactViewWidth}}/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
SizeFlexibilityUpdateTest.displayName = 'SizeFlexibilityUpdateTest';
|
|
|
|
|
|
|
|
module.exports = SizeFlexibilityUpdateTest;
|