mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d6e0bc714a
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/41334 TSIA. Changelog: [Internal] Reviewed By: robhogan Differential Revision: D51025812 fbshipit-source-id: e10d437be775a6b80946483aa96460f34927f870
253 lines
7.1 KiB
JavaScript
253 lines
7.1 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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 strict-local
|
|
*/
|
|
|
|
import type {RootTag} from 'react-native/Libraries/ReactNative/RootTag';
|
|
|
|
import NativeCxxModuleExample, {
|
|
EnumInt,
|
|
EnumNone,
|
|
} from '../../../NativeCxxModuleExample/NativeCxxModuleExample';
|
|
import styles from './TurboModuleExampleCommon';
|
|
import * as React from 'react';
|
|
import {
|
|
DeviceEventEmitter,
|
|
FlatList,
|
|
RootTagContext,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
type State = {|
|
|
testResults: {
|
|
[string]: {
|
|
type: string,
|
|
value: mixed,
|
|
...
|
|
},
|
|
...
|
|
},
|
|
|};
|
|
|
|
type Examples =
|
|
| 'callback'
|
|
| 'getArray'
|
|
| 'getBool'
|
|
| 'getConstants'
|
|
| 'getCustomEnum'
|
|
| 'getNumEnum'
|
|
| 'getStrEnum'
|
|
| 'getMap'
|
|
| 'getNumber'
|
|
| 'getObject'
|
|
| 'getSet'
|
|
| 'getString'
|
|
| 'getUnion'
|
|
| 'getValue'
|
|
| 'promise'
|
|
| 'rejectPromise'
|
|
| 'voidFunc'
|
|
| 'optionalArgs'
|
|
| 'emitDeviceEvent'
|
|
| 'voidFuncThrows'
|
|
| 'getObjectThrows'
|
|
| 'promiseThrows'
|
|
| 'voidFuncAssert'
|
|
| 'getObjectAssert'
|
|
| 'promiseAssert';
|
|
|
|
class NativeCxxModuleExampleExample extends React.Component<{||}, State> {
|
|
static contextType: React$Context<RootTag> = RootTagContext;
|
|
|
|
state: State = {
|
|
testResults: {},
|
|
};
|
|
|
|
// Add calls to methods in TurboModule here
|
|
// $FlowFixMe[missing-local-annot]
|
|
_tests = {
|
|
callback: () =>
|
|
NativeCxxModuleExample?.getValueWithCallback(callbackValue =>
|
|
this._setResult('callback', callbackValue),
|
|
),
|
|
getArray: () =>
|
|
NativeCxxModuleExample?.getArray([
|
|
{a: 1, b: 'foo'},
|
|
{a: 2, b: 'bar'},
|
|
null,
|
|
]),
|
|
getBool: () => NativeCxxModuleExample?.getBool(true),
|
|
getConstants: () => NativeCxxModuleExample?.getConstants(),
|
|
getCustomEnum: () => NativeCxxModuleExample?.getCustomEnum(EnumInt.IB),
|
|
getCustomHostObject: () =>
|
|
NativeCxxModuleExample?.consumeCustomHostObject(
|
|
NativeCxxModuleExample?.getCustomHostObject(),
|
|
),
|
|
getNumEnum: () => NativeCxxModuleExample?.getNumEnum(EnumInt.IB),
|
|
getStrEnum: () => NativeCxxModuleExample?.getStrEnum(EnumNone.NB),
|
|
getNumber: () => NativeCxxModuleExample?.getNumber(99.95),
|
|
getObject: () =>
|
|
NativeCxxModuleExample?.getObject({a: 1, b: 'foo', c: null}),
|
|
getSet: () => NativeCxxModuleExample?.getSet([1, 1.1, 1.1, 1.1, 2]),
|
|
getString: () => NativeCxxModuleExample?.getString('Hello'),
|
|
getUnion: () => NativeCxxModuleExample?.getUnion(1.44, 'Two', {low: '12'}),
|
|
getValue: () =>
|
|
NativeCxxModuleExample?.getValue(5, 'test', {a: 1, b: 'foo'}),
|
|
promise: () =>
|
|
NativeCxxModuleExample?.getValueWithPromise(false).then(valuePromise =>
|
|
this._setResult('promise', valuePromise),
|
|
),
|
|
rejectPromise: () =>
|
|
NativeCxxModuleExample?.getValueWithPromise(true)
|
|
.then(() => {})
|
|
.catch(e => this._setResult('rejectPromise', e.message)),
|
|
voidFunc: () => NativeCxxModuleExample?.voidFunc(),
|
|
optionalArgs: () => NativeCxxModuleExample?.getWithWithOptionalArgs(),
|
|
emitDeviceEvent: () => {
|
|
const CUSTOM_EVENT_TYPE = 'myCustomDeviceEvent';
|
|
DeviceEventEmitter.removeAllListeners(CUSTOM_EVENT_TYPE);
|
|
DeviceEventEmitter.addListener(CUSTOM_EVENT_TYPE, (...args) => {
|
|
this._setResult(
|
|
'emitDeviceEvent',
|
|
`${CUSTOM_EVENT_TYPE}(${args.map(s => `${s}`).join(', ')})`,
|
|
);
|
|
});
|
|
NativeCxxModuleExample?.emitCustomDeviceEvent(CUSTOM_EVENT_TYPE);
|
|
},
|
|
voidFuncThrows: () => {
|
|
try {
|
|
NativeCxxModuleExample?.voidFuncThrows();
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
getObjectThrows: () => {
|
|
try {
|
|
NativeCxxModuleExample?.getObjectThrows({a: 1, b: 'foo', c: null});
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
promiseThrows: () => {
|
|
try {
|
|
// $FlowFixMe[unused-promise]
|
|
NativeCxxModuleExample?.promiseThrows();
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
voidFuncAssert: () => {
|
|
try {
|
|
NativeCxxModuleExample?.voidFuncAssert();
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
getObjectAssert: () => {
|
|
try {
|
|
NativeCxxModuleExample?.getObjectAssert({a: 1, b: 'foo', c: null});
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
promiseAssert: () => {
|
|
try {
|
|
// $FlowFixMe[unused-promise]
|
|
NativeCxxModuleExample?.promiseAssert();
|
|
} catch (e) {
|
|
return e.message;
|
|
}
|
|
},
|
|
};
|
|
|
|
_setResult(
|
|
name: string | Examples,
|
|
result:
|
|
| $FlowFixMe
|
|
| void
|
|
| Array<$FlowFixMe>
|
|
| boolean
|
|
| {const1: boolean, const2: number, const3: string}
|
|
| number
|
|
| {[key: string]: ?number}
|
|
| Promise<mixed>
|
|
| number
|
|
| string,
|
|
) {
|
|
this.setState(({testResults}) => ({
|
|
testResults: {
|
|
...testResults,
|
|
/* $FlowFixMe[invalid-computed-prop] (>=0.111.0 site=react_native_fb)
|
|
* This comment suppresses an error found when Flow v0.111 was
|
|
* deployed. To see the error, delete this comment and run Flow. */
|
|
[name]: {value: result, type: typeof result},
|
|
},
|
|
}));
|
|
}
|
|
|
|
_renderResult(name: Examples): React.Node {
|
|
const result = this.state.testResults[name] || {};
|
|
return (
|
|
<View style={styles.result}>
|
|
<Text style={[styles.value]}>{JSON.stringify(result.value)}</Text>
|
|
<Text style={[styles.type]}>{result.type}</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
componentDidMount(): void {
|
|
if (global.__turboModuleProxy == null) {
|
|
throw new Error(
|
|
'Cannot load this example because TurboModule is not configured.',
|
|
);
|
|
}
|
|
}
|
|
|
|
render(): React.Node {
|
|
return (
|
|
<View style={styles.container}>
|
|
<View style={styles.item}>
|
|
<TouchableOpacity
|
|
style={[styles.column, styles.button]}
|
|
onPress={() =>
|
|
Object.keys(this._tests).forEach(item =>
|
|
this._setResult(item, this._tests[item]()),
|
|
)
|
|
}>
|
|
<Text style={styles.buttonTextLarge}>Run all tests</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity
|
|
onPress={() => this.setState({testResults: {}})}
|
|
style={[styles.column, styles.button]}>
|
|
<Text style={styles.buttonTextLarge}>Clear results</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
<FlatList
|
|
// $FlowFixMe[incompatible-type-arg]
|
|
data={Object.keys(this._tests)}
|
|
keyExtractor={item => item}
|
|
renderItem={({item}: {item: Examples, ...}) => (
|
|
<View style={styles.item}>
|
|
<TouchableOpacity
|
|
style={[styles.column, styles.button]}
|
|
onPress={e => this._setResult(item, this._tests[item]())}>
|
|
<Text style={styles.buttonText}>{item}</Text>
|
|
</TouchableOpacity>
|
|
<View style={[styles.column]}>{this._renderResult(item)}</View>
|
|
</View>
|
|
)}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = NativeCxxModuleExampleExample;
|