Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for keyboard animation meta #214

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 18 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ npm install @react-native-community/hooks
```

Installation with yarn

```sh
yarn add @react-native-community/hooks
```

## API

- [useAccessibilityInfo](https://github.com/react-native-community/hooks#useaccessibilityinfo)
- [useAppState](https://github.com/react-native-community/hooks#useappstate)
- [useBackHandler](https://github.com/react-native-community/hooks#usebackhandler)
Expand All @@ -35,15 +37,15 @@ yarn add @react-native-community/hooks
### `useAccessibilityInfo`

```js
import { useAccessibilityInfo } from '@react-native-community/hooks'
import {useAccessibilityInfo} from '@react-native-community/hooks'

const {
boldTextEnabled,
screenReaderEnabled,
reduceMotionEnabled, // requires RN60 or newer
grayscaleEnabled, // requires RN60 or newer
invertColorsEnabled, // requires RN60 or newer
reduceTransparencyEnabled // requires RN60 or newer
reduceTransparencyEnabled, // requires RN60 or newer
} = useAccessibilityInfo()
```

Expand All @@ -52,15 +54,15 @@ const {
AppState will change between one of 'active', 'background', or (iOS) 'inactive' when the app is closed or put into the background.

```js
import { useAppState } from '@react-native-community/hooks'
import {useAppState} from '@react-native-community/hooks'

const currentAppState = useAppState()
```

### `useBackHandler`

```js
import { useBackHandler } from '@react-native-community/hooks'
import {useBackHandler} from '@react-native-community/hooks'

useBackHandler(() => {
if (shouldBeHandledHere) {
Expand Down Expand Up @@ -103,11 +105,11 @@ const [data, setString] = useClipboard()
Gets dimensions and sets up a listener that will change the dimensions if the user changes device orientation.

```js
import { useDimensions } from '@react-native-community/hooks'
import {useDimensions} from '@react-native-community/hooks'

const dimensions = useDimensions()
// or
const { width, height } = useDimensions().window
const {width, height} = useDimensions().window
// or
const screen = useDimensions().screen
```
Expand All @@ -123,7 +125,7 @@ const source = {uri: 'https://your.image.URI'}

const {dimensions, loading, error} = useImageDimensions(source)

if(loading || error || !dimensions) {
if (loading || error || !dimensions) {
return null
}
const {width, height, aspectRatio} = dimensions
Expand All @@ -132,18 +134,23 @@ const {width, height, aspectRatio} = dimensions
### `useKeyboard`

```js
import { useKeyboard } from '@react-native-community/hooks'
import {useKeyboard} from '@react-native-community/hooks'

const keyboard = useKeyboard()

console.log('keyboard isKeyboardShow: ', keyboard.keyboardShown)
console.log('keyboard keyboardHeight: ', keyboard.keyboardHeight)
console.log(
'keyboard animation is happening (show/hide): ',
keyboard.animation.active,
keyboard.animation.type,
)
```

### `useInteractionManager`

```js
import { useInteractionManager } from '@react-native-community/hooks'
import {useInteractionManager} from '@react-native-community/hooks'

const interactionReady = useInteractionManager()

Expand All @@ -153,7 +160,7 @@ console.log('interaction ready: ', interactionReady)
### `useDeviceOrientation`

```js
import { useDeviceOrientation } from '@react-native-community/hooks'
import {useDeviceOrientation} from '@react-native-community/hooks'

const orientation = useDeviceOrientation()

Expand Down Expand Up @@ -219,6 +226,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d

<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
28 changes: 25 additions & 3 deletions src/useKeyboard.ts
Original file line number Diff line number Diff line change
@@ -1,42 +1,63 @@
import {useEffect, useState} from 'react'
import {Keyboard, KeyboardEventListener, ScreenRect} from 'react-native'

export type KeyboardAnimationType = 'show' | 'hide'
interface KeyboardAnimationEvent {
active: boolean
duration: number
type: KeyboardAnimationType
}

const emptyCoordinates = Object.freeze({
screenX: 0,
screenY: 0,
width: 0,
height: 0,
})
const initialValue = {
const initialCoordinates = {
start: emptyCoordinates,
end: emptyCoordinates,
}

const initialAnimation: KeyboardAnimationEvent = {
active: false,
duration: 0,
type: 'show',
}

export function useKeyboard() {
const [shown, setShown] = useState(false)
const [animation, setAnimation] = useState<KeyboardAnimationEvent>(
initialAnimation,
)
const [coordinates, setCoordinates] = useState<{
start: ScreenRect
end: ScreenRect
}>(initialValue)
}>(initialCoordinates)
const [keyboardHeight, setKeyboardHeight] = useState<number>(0)

const handleKeyboardWillShow: KeyboardEventListener = (e) => {
setAnimation({active: true, duration: e.duration, type: 'show'})
setCoordinates({start: e.startCoordinates, end: e.endCoordinates})
}
const handleKeyboardDidShow: KeyboardEventListener = (e) => {
setShown(true)
setAnimation({active: false, duration: e.duration, type: 'show'})
setCoordinates({start: e.startCoordinates, end: e.endCoordinates})
setKeyboardHeight(e.endCoordinates.height)
}
const handleKeyboardWillHide: KeyboardEventListener = (e) => {
setAnimation({active: true, duration: e.duration, type: 'hide'})
setCoordinates({start: e.startCoordinates, end: e.endCoordinates})
}
const handleKeyboardDidHide: KeyboardEventListener = (e) => {
setShown(false)
if (e) {
setAnimation({active: false, duration: e.duration, type: 'hide'})
setCoordinates({start: e.startCoordinates, end: e.endCoordinates})
} else {
setCoordinates(initialValue)
setAnimation(initialAnimation)
setCoordinates(initialCoordinates)
setKeyboardHeight(0)
}
}
Expand All @@ -58,6 +79,7 @@ export function useKeyboard() {
return {
keyboardShown: shown,
coordinates,
animation,
keyboardHeight,
}
}