react-native-ios-context-menu/example/src/examples/ContextMenuAuxPreviewExample03.tsx
2022-06-27 07:34:13 +08:00

83 lines
2.4 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';
import * as COLORS from '../constants/Colors';
export function ContextMenuAuxPreviewExample03(props: ContextMenuExampleProps) {
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuAuxPreviewExample03',
menuItems: [{
actionKey : 'key-01',
actionTitle: 'Everything you own',
actionSubtitle: 'in the box to the left',
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'arrow.left',
weight: 'bold',
},
imageOptions: {
tint: COLORS.BLUE.A700,
renderingMode: 'alwaysOriginal',
},
},
}],
}}
auxiliaryPreviewConfig={{
// Align the aux. preview to the left...
// 📝 Note: By default, this is set to: `stretchPreview`
alignmentHorizontal: 'previewLeading',
transitionEntranceDelay: 'RECOMMENDED',
}}
renderAuxiliaryPreview={() => (
<View style={[styles.auxRootContainer, {
alignItems: 'center',
justifyContent: 'center',
}]}>
<Text style={styles.textLabel}>
To the left (to the left)
</Text>
</View>
)}
onPressMenuItem={({nativeEvent}) => {
Alert.alert(
'onPressMenuItem Event',
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
);
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuAuxPreviewExample03'}
subtitle={'EXPERIMENTAL - Aux. Preview'}
description={[
`Basic 'ContextMenuView' w/ a auxillary preview aligned to the left.`,
`alignmentHorizontal: 'previewLeading'`
]}
/>
</ContextMenuView>
);
};
const styles = StyleSheet.create({
auxRootContainer: {
backgroundColor: 'white',
borderRadius: 10,
padding: 10,
},
textLabel: {
fontSize: 18,
fontWeight: '600',
color: COLORS.BLUE.A700,
},
});