-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwithReactNativeKeyevent.js
162 lines (162 loc) · 6.43 KB
/
withReactNativeKeyevent.js
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const config_plugins_1 = require("@expo/config-plugins");
const generateCode_1 = require("@expo/config-plugins/build/utils/generateCode");
const withIosAppDelegateImport = (config) => {
// @ts-ignore
const newConfig = (0, config_plugins_1.withAppDelegate)(config, (config) => {
const newSrc = ['#import <RNKeyEvent.h>'];
const newConfig = (0, generateCode_1.mergeContents)({
tag: 'react-native-keyevent-import',
src: config.modResults.contents,
newSrc: newSrc.join('\n'),
anchor: `#import "AppDelegate.h"`,
offset: 1,
comment: '//',
});
return {
...config,
modResults: newConfig,
};
});
return newConfig;
};
const withIosAppDelegateBody = (config) => {
// @ts-ignore
const newConfig = (0, config_plugins_1.withAppDelegate)(config, (config) => {
const newSrc = [
'RNKeyEvent *keyEvent = nil;',
' ',
'- (NSMutableArray<UIKeyCommand *> *)keyCommands {',
' NSMutableArray *keys = [NSMutableArray new];',
' ',
' if (keyEvent == nil) {',
' keyEvent = [[RNKeyEvent alloc] init];',
' }',
' ',
' if ([keyEvent isListening]) {',
' NSArray *namesArray = [[keyEvent getKeys] componentsSeparatedByString:@","];',
' ',
' NSCharacterSet *validChars = [NSCharacterSet characterSetWithCharactersInString:@"ABCDEFGHIJKLMNOPQRSTUVWXYZ"];',
' ',
' for (NSString* names in namesArray) {',
' NSRange range = [names rangeOfCharacterFromSet:validChars];',
' ',
' if (NSNotFound != range.location) {',
' [keys addObject: [UIKeyCommand keyCommandWithInput:names modifierFlags:UIKeyModifierShift action:@selector(keyInput:)]];',
' } else {',
' [keys addObject: [UIKeyCommand keyCommandWithInput:names modifierFlags:0 action:@selector(keyInput:)]];',
' }',
' }',
' }',
' ',
' return keys;',
'}',
'',
'- (void)keyInput:(UIKeyCommand *)sender {',
' NSString *selected = sender.input;',
' [keyEvent sendKeyEvent:selected];',
'}',
];
const newConfig = (0, generateCode_1.mergeContents)({
tag: 'react-native-keyevent-body',
src: config.modResults.contents,
newSrc: newSrc.join('\n'),
anchor: `@implementation AppDelegate`, // /#import "AppDelegate\.h"/g,
offset: 1,
comment: '//',
});
return {
...config,
modResults: newConfig,
};
});
return newConfig;
};
const withAndroidMainActivityImport = (config) => {
// @ts-ignore
const newConfig = (0, config_plugins_1.withMainActivity)(config, (config) => {
const newSrc = [
'import android.view.KeyEvent',
'import com.github.kevinejohn.keyevent.KeyEventModule',
];
const newConfig = (0, generateCode_1.mergeContents)({
tag: 'react-native-keyevent-import',
src: config.modResults.contents,
newSrc: newSrc.join('\n'),
anchor: `import`,
offset: 1,
comment: '//',
});
return {
...config,
modResults: newConfig,
};
});
return newConfig;
};
const withAndroidMainActivityBody = (config) => {
// @ts-ignore
const newConfig = (0, config_plugins_1.withMainActivity)(config, (config) => {
const newSrc = [
'override fun onKeyDown(keyCode: Int, event: KeyEvent): Boolean {',
' // // Uncomment this if key events should only trigger once when key is held down',
' // if (event.getRepeatCount() == 0) {',
' // KeyEventModule.getInstance().onKeyDownEvent(keyCode, event)',
' // }',
'',
' // // This will trigger the key repeat if the key is held down',
' // // Comment this out if uncommenting the above',
' KeyEventModule.getInstance().onKeyDownEvent(keyCode, event)',
'',
' // // Uncomment this if you want the default keyboard behavior',
' // return super.onKeyDown(keyCode, event)',
'',
' // // The default keyboard behaviour wll be overridden',
' // // This is similar to what e.preventDefault() does in a browser',
' // // comment this if uncommenting the above',
' super.onKeyDown(keyCode, event)',
' return true',
'}',
'',
'override fun onKeyUp(keyCode: Int, event: KeyEvent): Boolean {',
' KeyEventModule.getInstance().onKeyUpEvent(keyCode, event)',
'',
' // // Uncomment this if you want the default keyboard behavior',
' // return super.onKeyUp(keyCode, event)',
'',
' // // The default keyboard behaviour wll be overridden',
' // // This is similar to what e.preventDefault() does in a browser',
' // // comment this if uncommenting the above',
' super.onKeyUp(keyCode, event)',
' return true',
'}',
'',
'override fun onKeyMultiple(keyCode: Int, repeatCount: Int, event: KeyEvent): Boolean {',
' KeyEventModule.getInstance().onKeyMultipleEvent(keyCode, repeatCount, event)',
' return super.onKeyMultiple(keyCode, repeatCount, event)',
'}',
];
const newConfig = (0, generateCode_1.mergeContents)({
tag: 'react-native-keyevent-body',
src: config.modResults.contents,
newSrc: newSrc.join('\n'),
anchor: `class MainActivity`,
offset: 1,
comment: '//',
});
return {
...config,
modResults: newConfig,
};
});
return newConfig;
};
const initPlugin = (config) => {
config = withIosAppDelegateImport(config);
config = withIosAppDelegateBody(config);
config = withAndroidMainActivityImport(config);
config = withAndroidMainActivityBody(config);
return config;
};
exports.default = initPlugin;