mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-11 11:29:03 +08:00
Summary: Related to #21485 Remove SubscribableMixin from SizeFlexibilityUpdateTest - All flow tests succeed. - yarn run test-android-instrumentation && CI integration tests [GENERAL] [ENHANCEMENT] [SizeFlexibilityUpdateTest.js] - rm SubscribableMixin Pull Request resolved: https://github.com/facebook/react-native/pull/21580 Reviewed By: TheSavior Differential Revision: D10276267 Pulled By: RSNara fbshipit-source-id: fc89b43099c788cba560c9aaf0819cd5cfab38c3
102 lines
2.4 KiB
JavaScript
102 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const createReactClass = require('create-react-class');
|
|
const ReactNative = require('react-native');
|
|
const RCTNativeAppEventEmitter = require('RCTNativeAppEventEmitter');
|
|
const {View} = ReactNative;
|
|
|
|
const {TestModule} = ReactNative.NativeModules;
|
|
import type EmitterSubscription from 'EmitterSubscription';
|
|
|
|
const reactViewWidth = 111;
|
|
const reactViewHeight = 222;
|
|
|
|
let finalState = false;
|
|
|
|
const SizeFlexibilityUpdateTest = createReactClass({
|
|
displayName: 'SizeFlexibilityUpdateTest',
|
|
_subscription: (null: ?EmitterSubscription),
|
|
|
|
UNSAFE_componentWillMount: function() {
|
|
this._subscription = RCTNativeAppEventEmitter.addListener(
|
|
'rootViewDidChangeIntrinsicSize',
|
|
this.rootViewDidChangeIntrinsicSize,
|
|
);
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
if (this._subscription != null) {
|
|
this._subscription.remove();
|
|
}
|
|
},
|
|
|
|
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;
|