forked from dominicstop/react-native-ios-context-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContextMenuViewExample12.tsx
97 lines (88 loc) · 2.66 KB
/
ContextMenuViewExample12.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* eslint-disable react-native/no-inline-styles */
import * as React from 'react';
import { Text, View } from 'react-native';
import { ContextMenuView } from 'react-native-ios-context-menu';
import type { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
export function ContextMenuViewExample12(props: ContextMenuExampleProps) {
// increments every second...
const [timer, setTimer] = React.useState(0);
const increment = React.useRef(null);
const handleStart = () => {
increment.current = setInterval(() => {
setTimer((prevTimer) => prevTimer + 1);
}, 1000);
};
const handleStop = () => {
clearInterval(increment.current);
};
const handleReset = () => {
clearInterval(increment.current);
setTimer(0);
};
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuViewExample12',
menuItems: [{
actionKey : 'add',
actionTitle: `Add 100`,
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'plus',
},
}
}, (timer > 0) && {
actionKey : 'reset',
actionTitle : `Reset Counter`,
menuAttributes: ['destructive'],
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'trash',
},
}
}],
}}
previewConfig={{
previewType: 'CUSTOM',
backgroundColor: 'white'
}}
// The context menu preview grows and shrinks due to the labels/
// text changing every second...
renderPreview={() => (
<View style={{ padding: 20 }}>
<Text style={{fontSize: 32}}>
{`Counter: ${timer}`}
</Text>
<Text style={{fontSize: 32}}>
{(timer % 2 === 0)? 'EVEN' : 'The number is: ODD'}
</Text>
</View>
)}
onMenuDidShow={() => handleStart()}
onMenuDidHide={() => handleStop()}
onPressMenuItem={({nativeEvent}) => {
switch (nativeEvent.actionKey) {
case 'add':
setTimer((prevTimer) => prevTimer + 100);
break;
case 'reset':
handleReset();
break;
};
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuViewExample12'}
description={[
`Another custom preview example.`,
`Show counter in the context menu preview, and configure menu with a action to add 100 to the counter, and another action to reset the counter.`
]}
/>
</ContextMenuView>
);
};