forked from dominicstop/react-native-ios-context-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContextMenuViewExample10.tsx
86 lines (79 loc) · 2.48 KB
/
ContextMenuViewExample10.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
import * as React from 'react';
import { Alert } from 'react-native';
import { ContextMenuView } from 'react-native-ios-context-menu';
import type { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
export function ContextMenuViewExample10(props: ContextMenuExampleProps) {
// `timer` will increment every second...
const [timer, setTimer] = React.useState(0);
const increment = React.useRef(null);
const handleStart = () => {
increment.current = setInterval(() => {
setTimer((prevTimer) => prevTimer + 1);
}, 1000);
};
const handleReset = () => {
clearInterval(increment.current);
setTimer(0);
};
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuViewExample10',
menuItems: [{
actionKey : 'key-00',
actionTitle: `Static Action`,
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'square.and.arrow.down',
},
}
}, {
actionKey : 'key-01',
// update the action title every second...
actionTitle: `timer: ${timer}`,
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
// update the icon every second...
systemName: ((timer % 2 === 0)
? 'heart'
: 'heart.fill'
),
},
}
},
// this item will be added and removed...
(timer % 3 === 0) && {
actionKey : 'key-02',
actionTitle: `Dynamic Action`,
icon: {
type: 'IMAGE_SYSTEM',
imageValue: {
systemName: 'scissors.badge.ellipsis',
},
}
}],
}}
onMenuDidShow={() => handleStart()}
onMenuDidHide={() => handleReset()}
onPressMenuItem={({nativeEvent}) => {
Alert.alert(
'onPressMenuItem Event',
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
);
}}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuViewExample10'}
description={[
`On iOS 14+ you can update the menu while it's visible (e.g. you can control the menu via state).`,
`This is a simple demo where the menu action changes every time the counter increments every second.`
]}
/>
</ContextMenuView>
);
};