Skip to content

Commit 962128a

Browse files
authored
Merge pull request #62 from ArturKalach/release/0.5.2
Release/0.5.2
2 parents 6b8801f + 3acfb39 commit 962128a

File tree

7 files changed

+423
-367
lines changed

7 files changed

+423
-367
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ onPress?: | Default `onPress` or keyboard-handled `onPress` | `((event: GestureR
7676
onLongPress?: | Default `onLongPress` or keyboard-handled `onLongPress` (`Tab+M` for iOS). | `((event: GestureResponderEvent) => void) \| null \| undefined`
7777
onPressIn:? | Default `onPressIn` or keyboard-handled `onPressIn` | `((event: GestureResponderEvent) => void) \| null \| undefined`
7878
onPressOut:? | Default `onPressOut` or keyboard-handled `onPressOut` | `((event: GestureResponderEvent) => void) \| null \| undefined`
79-
style?: | Style for the inner component | `StyleProp<ViewStyle>`
79+
style?: | Styles the inner component | `StyleProp<ViewStyle>; for Pressable: PressableProps['style']`
80+
withPressedStyle?: | Enables the pressed style handler for custom components; always true for the standard Pressable. | `boolean \| undefined`, false by default
8081
focusStyle?: | Style applied to the inner component when focused | `FocusStyle`
8182
containerStyle?: | Style for the container | StyleProp<ViewStyle>;
8283
containerFocusStyle?: | Style applied to the container when focused | `FocusStyle`

example/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ PODS:
12421242
- ReactCommon/turbomodule/bridging
12431243
- ReactCommon/turbomodule/core
12441244
- Yoga
1245-
- react-native-external-keyboard (0.5.0-rc8):
1245+
- react-native-external-keyboard (0.5.1):
12461246
- DoubleConversion
12471247
- glog
12481248
- hermes-engine
@@ -1913,7 +1913,7 @@ SPEC CHECKSUMS:
19131913
React-logger: 697873f06b8ba436e3cddf28018ab4741e8071b6
19141914
React-Mapbuffer: c174e11bdea12dce07df8669d6c0dc97eb0c7706
19151915
React-microtasksnativemodule: 8a80099ad7391f4e13a48b12796d96680f120dc6
1916-
react-native-external-keyboard: beb38ae41622036b36c8b7317416d3891434053d
1916+
react-native-external-keyboard: cab5e7d0e6b274e1ba7b5f67bddc51629f8ad18c
19171917
react-native-safe-area-context: cbadf383376f589bb611c8ae0280c1d4b7b447e9
19181918
React-nativeconfig: f7ab6c152e780b99a8c17448f2d99cf5f69a2311
19191919
React-NativeModulesApple: 70600f7edfc2c2a01e39ab13a20fd59f4c60df0b

example/src/components/ComponentsExample/ComponentsExample.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const ComponentsExample = forwardRef<KeyboardFocus, {}>((_, ref) => {
105105
</View>
106106
</TouchableWithoutFeedback>
107107
<Pressable
108-
// autoFocus
108+
autoFocus
109109
containerStyle={styles.pressableContainer}
110110
style={styles.pressable as object} //ToDo updat type
111111
onPress={() => modalButtonRef.current?.focus()}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-external-keyboard",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Toolkit for improving physical keyboard support in React Native",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

src/utils/useFocusStyle.tsx

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { useState, useMemo, useCallback } from 'react';
2-
import { Platform, type ColorValue } from 'react-native';
2+
import {
3+
Platform,
4+
type ColorValue,
5+
type PressableProps,
6+
Pressable,
7+
} from 'react-native';
38
import type { FocusStyle } from '../types';
49
import type { TintType } from '../types/WithKeyboardFocus';
510

@@ -21,6 +26,9 @@ type UseFocusStyleProps = {
2126
onFocusChange?: (isFocused: boolean) => void;
2227
tintColor?: ColorValue;
2328
tintType?: TintType;
29+
style?: PressableProps['style'];
30+
Component?: React.ComponentType;
31+
withPressedStyle?: boolean;
2432
};
2533

2634
export const useFocusStyle = ({
@@ -29,6 +37,9 @@ export const useFocusStyle = ({
2937
containerFocusStyle,
3038
tintColor,
3139
tintType = 'default',
40+
style,
41+
Component,
42+
withPressedStyle = false,
3243
}: UseFocusStyleProps) => {
3344
const [focused, setFocusStatus] = useState(false);
3445

@@ -69,7 +80,28 @@ export const useFocusStyle = ({
6980
return focused ? specificStyle : undefined;
7081
}, [containerFocusStyle, focused, tintColor, tintType]);
7182

83+
const dafaultComponentStyle = useMemo(
84+
() => [style, componentFocusedStyle],
85+
[style, componentFocusedStyle]
86+
);
87+
const styleHandlerPressable = useCallback(
88+
({ pressed }: { pressed: boolean }) => {
89+
if (typeof style === 'function') {
90+
return [style({ pressed }), componentFocusedStyle];
91+
} else {
92+
return [style, componentFocusedStyle];
93+
}
94+
},
95+
[componentFocusedStyle, style]
96+
);
97+
98+
const componentStyleViewStyle =
99+
Component === Pressable || withPressedStyle
100+
? styleHandlerPressable
101+
: dafaultComponentStyle;
102+
72103
return {
104+
componentStyleViewStyle,
73105
componentFocusedStyle,
74106
containerFocusedStyle,
75107
onFocusChangeHandler,

src/utils/withKeyboardFocus.tsx

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
import React, { useCallback, useMemo } from 'react';
2-
import { View, type StyleProp, type ViewStyle, StyleSheet } from 'react-native';
2+
import {
3+
View,
4+
StyleSheet,
5+
type StyleProp,
6+
type ViewStyle,
7+
type PressableProps,
8+
} from 'react-native';
39
import { BaseKeyboardView } from '../components';
410
import type { FocusStyle, KeyboardFocusViewProps } from '../types';
511
import type { KeyboardFocus, OnKeyPress } from '../types/BaseKeyboardView';
@@ -31,11 +37,13 @@ export const withKeyboardFocus = <K, T>(
3137
onPressIn?: K | ((e?: OnKeyPress) => void);
3238
onPressOut?: K | ((e?: OnKeyPress) => void);
3339
disabled?: boolean;
34-
} & Omit<KeyboardFocusViewProps, 'onPress' | 'onLongPress'> & {
40+
withPressedStyle?: boolean;
41+
} & Omit<KeyboardFocusViewProps, 'onPress' | 'onLongPress' | 'style'> & {
3542
containerStyle?: StyleProp<ViewStyle>;
3643
containerFocusStyle?: FocusStyle;
3744
tintType?: TintType;
3845
FocusHoverComponent?: RenderProp;
46+
style?: PressableProps['style'];
3947
}
4048
>(
4149
(
@@ -66,14 +74,15 @@ export const withKeyboardFocus = <K, T>(
6674
haloExpendX,
6775
haloExpendY,
6876
groupIdentifier,
77+
withPressedStyle = false,
6978
...props
7079
},
7180
ref
7281
) => {
7382
const {
7483
focused,
7584
containerFocusedStyle,
76-
componentFocusedStyle,
85+
componentStyleViewStyle,
7786
onFocusChangeHandler,
7887
hoverColor,
7988
} = useFocusStyle({
@@ -82,6 +91,9 @@ export const withKeyboardFocus = <K, T>(
8291
focusStyle,
8392
containerFocusStyle,
8493
tintType,
94+
style,
95+
withPressedStyle,
96+
Component,
8597
});
8698

8799
const withHaloEffect = tintType === 'default' && haloEffect;
@@ -135,7 +147,7 @@ export const withKeyboardFocus = <K, T>(
135147
groupIdentifier={groupIdentifier}
136148
>
137149
<Component
138-
style={[style, componentFocusedStyle]}
150+
style={componentStyleViewStyle}
139151
onPress={onPressHandler as T}
140152
onLongPress={onLongPress as T}
141153
onPressIn={onPressIn as K}

0 commit comments

Comments
 (0)