Files
react-native/packages/rn-tester/js/examples/PopupMenuAndroid/PopupMenuAndroidExample.js
Tim YungandFacebook GitHub Bot 1bf167ce97 RN: Prefer Destructured Import for useRef (#51404)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51404

Prefers using this as a destructured import instead of as a member expression of `React`.

Changelog:
[Internal]

Reviewed By: SamChou19815

Differential Revision: D74893440

fbshipit-source-id: 9032f1e867a34b9cfa808f920a38f2630046eed7
2025-05-16 16:33:18 -07:00

73 lines
1.8 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
*/
'use strict';
import type {PopupMenuAndroidInstance} from '@react-native/popup-menu-android';
import type {Node} from 'react';
import PopupMenuAndroid from '@react-native/popup-menu-android';
import * as React from 'react';
import {useRef, useState} from 'react';
import {Button, StyleSheet, Text, View} from 'react-native';
type Fruit = 'Apple' | 'Pear' | 'Banana' | 'Orange' | 'Kiwi';
const PopupMenu = () => {
const popupRef = useRef<?PopupMenuAndroidInstance>();
const [fruit, setFruit] = useState<?Fruit>();
const fruits: Array<Fruit> = ['Apple', 'Pear', 'Banana', 'Orange', 'Kiwi'];
const items = fruits.map(item => ({
label: item,
onPress: () => {
setFruit(item);
},
}));
return (
<View style={styles.container}>
{fruit ? <Text>Selected {fruit}</Text> : null}
<PopupMenuAndroid
instanceRef={popupRef}
menuItems={items.map(({label}) => label)}
onSelectionChange={selection => items[selection].onPress()}
onDismiss={() => console.warn('Popup was dismissed!')}>
<Button
title="Show PopupMenu!"
onPress={() => {
popupRef.current?.show();
}}
/>
</PopupMenuAndroid>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
padding: 16,
},
});
exports.title = 'PopupMenuAndroid';
// TODO(T175446328): Publish oss documentation for PopupMenuAndroid
exports.description = 'PopupMenuAndroid Example';
exports.examples = [
{
title: 'PopupMenu Example',
render(): Node {
return <PopupMenu />;
},
},
];