forked from microsoft/fluentui-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseKeyProps.ts
138 lines (128 loc) · 4.94 KB
/
useKeyProps.ts
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import * as React from 'react';
import { Platform } from 'react-native';
import { memoize } from '@fluentui-react-native/memo-cache';
import { KeyCallback, KeyPressEvent, KeyPressProps } from './useKeyProps.types';
/**
* Verifies if nativeEvent contains modifier key.
* @param nativeEvent
* @returns `true` if one or more of modifier keys are `true`
*/
export const isModifierKey = (nativeEvent: any): boolean => {
return (
nativeEvent &&
(nativeEvent.alt ||
nativeEvent.altKey ||
nativeEvent.ctrl ||
nativeEvent.ctrlKey ||
nativeEvent.meta ||
nativeEvent.metaKey ||
nativeEvent.shift ||
nativeEvent.shiftKey)
);
};
function keyPressCallback(userCallback?: KeyCallback, ...keys: string[]) {
const onKeyEvent = (e: KeyPressEvent) => {
if (userCallback !== undefined && !isModifierKey(e.nativeEvent) && (keys === undefined || keys.includes(e.nativeEvent.key))) {
userCallback(e);
e.stopPropagation();
}
};
return onKeyEvent;
}
function getKeyUpPropsWorker(userCallback: KeyCallback, ...keys: string[]): KeyPressProps {
const keyboardProps = Platform.select({
ios: undefined,
android: undefined,
macos: {
onKeyUp: keyPressCallback(userCallback, ...keys),
validKeysUp: keys,
},
windows: {
/**
* https://github.com/microsoft/react-native-windows/issues/11049
* Windows doesn't filter on `key` but on `code`, which is quite different ('A' vs 'KeyA' or 'GamepadA').
* While this discrepancy is present, let's not specify `keyUpEvents`.
*/
onKeyUp: keyPressCallback(userCallback, ...keys),
},
// win32
default: {
onKeyUp: keyPressCallback(userCallback, ...keys),
keyUpEvents: keys.map((keyCode) => {
return { key: keyCode };
}),
},
});
return keyboardProps;
}
function getKeyDownPropsWorker(userCallback: KeyCallback, ...keys: string[]): KeyPressProps {
const keyboardProps = Platform.select({
ios: undefined,
android: undefined,
macos: {
onKeyDown: keyPressCallback(userCallback, ...keys),
validKeysDown: keys,
},
windows: {
/**
* https://github.com/microsoft/react-native-windows/issues/11049
* Windows doesn't filter on `key` but on `code`, which is quite different ('A' vs 'KeyA' or 'GamepadA').
* While this discrepancy is present, let's not specify `keyDownEvents`.
*/
onKeyDown: keyPressCallback(userCallback, ...keys),
},
// win32
default: {
onKeyDown: keyPressCallback(userCallback, ...keys),
keyDownEvents: keys.map((keyCode) => {
return { key: keyCode };
}),
},
});
return keyboardProps;
}
/**
* Re-usable hook for an onKeyUp event.
* @param userCallback The function you want to be called once the key has been activated on key up
* @param keys A string of the key you want to perform some action on. If undefined, always invokes userCallback
* @returns KeyPressProps: An object containing the correct platform specific props to handle key press
*/
export const useKeyUpProps = memoize(getKeyUpPropsWorker);
/**
* Re-usable hook for an onKeyDown event.
* @param userCallback The function you want to be called once the key has been activated on key down
* @param keys A string of the key you want to perform some action on. If undefined, always invokes userCallback
* @returns KeyPressProps: An object containing the correct platform specific props to handle key press
*/
export const useKeyDownProps = memoize(getKeyDownPropsWorker);
/** Exposes the behavior of useKeyProps for the current platform as a boolean */
export const preferKeyDownForKeyEvents = Platform.select({
macos: true,
default: false,
});
/**
* Re-usable hook for keyboard events. on macOS, this is onKeyDown, while on windows this is onKeyUp.
* @param userCallback The function you want to be called once the key has been activated on key down
* @param keys A string of the key you want to perform some action on. If undefined, always invokes userCallback
* @returns KeyPressProps: An object containing the correct platform specific props to handle key press
*/
export const useKeyProps = preferKeyDownForKeyEvents ? useKeyDownProps : useKeyUpProps;
/**
* Re-usable hook for an onKeyDown event.
* @param userCallback The function you want to be called once the key has been activated on key up
* @param keys A string of the key you want to perform some action on. If undefined, always invokes userCallback
* @returns onKeyEvent() - Callback to determine if key was pressed, if so, call userCallback
* @deprecated use the hook `useKeyProps` instead
*/
export function useKeyCallback(userCallback?: KeyCallback, ...keys: string[]) {
const onKeyEvent = React.useCallback(
(e: KeyPressEvent) => {
if (userCallback !== undefined && (keys === undefined || keys.includes(e.nativeEvent.key))) {
userCallback(e);
e.stopPropagation();
}
},
[keys, userCallback],
);
return onKeyEvent;
}