forked from dominicstop/react-native-ios-context-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContextMenuViewTest03.tsx
102 lines (92 loc) · 2.79 KB
/
ContextMenuViewTest03.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
98
99
100
101
102
import * as React from 'react';
import { ContextMenuView, OnPressMenuItemEvent } from 'react-native-ios-context-menu';
import type { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
export function ContextMenuViewTest03(props: ContextMenuExampleProps) {
const [actionState1, setActionState1] = React.useState(false);
const [actionState2, setActionState2] = React.useState(false);
const [actionState3, setActionState3] = React.useState(false);
const isResetEnabled = (
actionState1 ||
actionState2 ||
actionState3
);
const handleOnPressMenuItem: OnPressMenuItemEvent = ({nativeEvent}) => {
switch (nativeEvent.actionKey) {
case 'key-01':
setActionState1((prevValue) => (!prevValue));
break;
case 'key-02':
setActionState2((prevValue) => (!prevValue));
break;
case 'key-03':
setActionState3((prevValue) => (!prevValue));
break;
case 'key-04':
setActionState1(false);
setActionState2(false);
setActionState3(false);
break;
};
};
return (
<ContextMenuView
style={props.style}
onPressMenuItem={handleOnPressMenuItem}
menuConfig={{
menuTitle: 'ContextMenuViewTest03',
menuItems: [{
actionKey : 'key-01',
actionTitle: `Action 1: ${actionState1? 'on' : 'off'}`,
menuState : (actionState1? 'on' : 'off'),
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'heart',
},
}
}, {
actionKey : 'key-02',
actionTitle: `Action 2: ${actionState2? 'on' : 'off'}`,
menuState : (actionState2? 'on' : 'off'),
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'suit.club',
},
}
}, {
actionKey : 'key-03',
actionTitle: `Action 3: ${actionState3? 'on' : 'off'}`,
menuState : (actionState3? 'on' : 'off'),
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'suit.spade',
},
}
}, {
actionKey : 'key-04',
actionTitle : `Reset All`,
menuAttributes: [isResetEnabled? 'destructive' : 'hidden'],
menuState : 'off',
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'trash',
},
}
}]
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuViewTest03'}
subtitle={'toggle menuState'}
description={[
`Test for toggling the menuState on/off`
]}
/>
</ContextMenuView>
);
};