react-native-ios-context-menu/example/src/examples/ContextMenuAuxPreviewExample10.tsx
2023-11-21 09:07:55 +08:00

75 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 ContextMenuAuxPreviewExample10(props: ContextMenuExampleProps) {
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuAuxPreviewExample10',
menuItems: [{
actionKey : 'key-01',
actionTitle: 'Action #1',
actionSubtitle: 'Dummy action'
}],
}}
auxiliaryPreviewConfig={{
// configure the entrance transition for the aux.
// preview to use a 'slide' transition...
transitionEntranceDelay: 0.5,
transitionConfigEntrance: {
transition: 'slide',
duration: 0.4,
options: ['curveEaseIn'],
},
}}
renderAuxiliaryPreview={() => (
<View style={[styles.auxRootContainer, {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}]}>
<Text style={styles.textLabel}>
Slide Transition
</Text>
</View>
)}
onPressMenuItem={({nativeEvent}) => {
Alert.alert(
'onPressMenuItem Event',
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
);
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuAuxPreviewExample10'}
subtitle={'EXPERIMENTAL - Aux. Preview'}
description={[
`Basic 'ContextMenuView' w/ a auxillary preview + entrance transition config`,
`transition: 'slide'`
]}
/>
</ContextMenuView>
);
};
const styles = StyleSheet.create({
auxRootContainer: {
backgroundColor: 'white',
borderRadius: 10,
padding: 10,
width: 200,
},
textLabel: {
fontSize: 18,
fontWeight: '600',
},
});