react-native-ios-context-menu/example/src/examples/ContextMenuAuxPreviewExample01.tsx
Dominic Go 4270b49ca0 🐞 Fix: Typo in renderAuxillaryPreview
Summary: Rename `renderAuxillaryPreview` to `renderAuxiliaryPreview`.
2022-06-23 07:58:23 +08:00

84 lines
2.4 KiB
TypeScript

/* eslint-disable react-native/no-inline-styles */
import * as React from 'react';
import { Alert, TouchableOpacity, View, Text, StyleSheet } from 'react-native';
import { ContextMenuView } from 'react-native-ios-context-menu';
import type { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
import * as COLORS from '../constants/Colors';
export function ContextMenuAuxPreviewExample01(props: ContextMenuExampleProps) {
return (
<ContextMenuView
style={props.style}
isAuxiliaryPreviewEnabled={true}
menuConfig={{
menuTitle: 'ContextMenuAuxPreviewExample01',
menuItems: [{
actionKey : 'key-01',
actionTitle: 'Action #1',
}, {
actionKey : 'key-02' ,
actionTitle: 'Action #2',
}, {
actionKey : 'key-03' ,
actionTitle: 'Action #3',
}],
}}
renderAuxiliaryPreview={() => (
<View style={[styles.auxRootContainer, {
// by default, the root view you returned will be resized to match
// the width of the preview (you can override this behavior via the
// `auxiliaryPreviewConfig` prop).
//
// since this view is going to be resized, let's center the content
alignItems: 'center',
justifyContent: 'center',
}]}>
<TouchableOpacity style={styles.buttonContainer}>
<Text style={styles.buttonLabel}>
Button
</Text>
</TouchableOpacity>
</View>
)}
onPressMenuItem={({nativeEvent}) => {
Alert.alert(
'onPressMenuItem Event',
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
);
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuAuxPreviewExample01'}
subtitle={'EXPERIMENTAL - Aux. Preview Simple'}
description={[
`Basic 'ContextMenuView' w/ a basic auxillary preview configuration.`
]}
/>
</ContextMenuView>
);
};
const styles = StyleSheet.create({
auxRootContainer: {
backgroundColor: 'white',
borderRadius: 10,
padding: 10,
},
buttonContainer: {
backgroundColor: COLORS.PURPLE.A700,
paddingHorizontal: 10,
paddingVertical: 5,
maxWidth: 200,
borderRadius: 10,
},
buttonLabel: {
fontWeight: 'bold',
color: 'white',
},
});