react-native-ios-context-menu/example/src/examples/ContextMenuAuxPreviewExample11.tsx
2023-10-13 17:48:18 +08:00

74 lines
2.1 KiB
TypeScript

/* eslint-disable react-native/no-inline-styles */
import * as React from 'react';
import { Alert, View, Text, StyleSheet } from 'react-native';
import { ContextMenuView } from 'react-native-ios-context-menu';
import type { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
export function ContextMenuAuxPreviewExample11(props: ContextMenuExampleProps) {
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuAuxPreviewExample11',
menuItems: [{
actionKey : 'key-01',
actionTitle: 'Action #1',
actionSubtitle: 'Dummy action'
}],
}}
auxiliaryPreviewConfig={{
transitionEntranceDelay: 'RECOMMENDED',
// configure the entrance transition for the aux.
// preview to use a 'zoom' transition...
transitionConfigEntrance: {
transition: 'zoom',
duration: 0.5,
options: ['curveEaseOut'],
},
}}
renderAuxiliaryPreview={() => (
<View style={[styles.auxRootContainer, {
alignItems: 'center',
justifyContent: 'center',
}]}>
<Text style={styles.textLabel}>
Zoom Transition
</Text>
</View>
)}
onPressMenuItem={({nativeEvent}) => {
Alert.alert(
'onPressMenuItem Event',
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
);
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuAuxPreviewExample11'}
subtitle={'EXPERIMENTAL - Aux. Preview'}
description={[
`Basic 'ContextMenuView' w/ a auxillary preview + entrance transition config`,
`transition: 'zoom'`
]}
/>
</ContextMenuView>
);
};
const styles = StyleSheet.create({
auxRootContainer: {
backgroundColor: 'white',
borderRadius: 10,
padding: 10,
width: 200,
},
textLabel: {
fontSize: 18,
fontWeight: '600',
},
});