1.1.2 • Published 9 months ago

react-native-fast-collapsible v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Title

Pure Javascript library for React Native with super-fast collapsible component using Reanimated API. It works with Expo.

  • 🎙️ Works with Expo
  • 🪽 Easy usage
  • ⚠️ react-native-reanimated required

Motivation

There are currently many libraries available for Collapsible components, but they are either no longer supported or do not implement the latest innovations in the React Native architecture. Hence the need for a library that works with the new architecture based on the React Native Reanimated API V3 and allow to have always native performance.

Installation

yarn install react-native-fast-collapsible

This library has a peer dependency on react-native-reanimated has to be installed, linked and configured into your project. Follow react-native-reanimated to install the dependency.

Usage / API

Collapsible component

A simple component that enables an animated action to hide and show content.

https://github.com/user-attachments/assets/e74700c5-d1b9-4559-9b9b-940bd02d684f

Example

import React, { useState } from 'react';

import { StyleSheet, Text, TouchableOpacity, View } from 'react-native';
import { Collapsible } from 'react-native-fast-collapsible';

export default function SimpleCollapsible() {
  const [isVisible, setVisibility] = useState(false);

  const toggleVisibility = () => {
    setVisibility((previous) => !previous);
  };

  return (
    <View style={styles.container}>
      <TouchableOpacity onPress={toggleVisibility}>
        <Text>Expand / Collapse</Text>
      </TouchableOpacity>

      <Collapsible isVisible={isVisible}>
        <Text>Lorem ipsum....</Text>
      </Collapsible>
    </View>
  );
}

Properties

PropertyTypeDescriptionDefault
isVisiblebooleanWhether to show the child components or nottop
heightOffsetnumberOffset of collapsed children visible0
durationnumberTime in ms of animation300
easingEasingType of animation from ReanimatedEasing.linear
childrenReactNodeChildren to show or hide

useCollapsible hook

Headless hook to create your own collapsible components.

https://github.com/user-attachments/assets/aef8cf7a-bbb0-4d1d-96ea-452e3e3be2f2

Example

import React, { useState } from 'react';

import { StyleSheet, Text, TouchableOpacity, View } from 'react-native';
import { useCollapsible } from 'react-native-fast-collapsible';
import Animated, {
  Easing,
  interpolate,
  useAnimatedStyle,
} from 'react-native-reanimated';

export default function HeadlessCollapsible() {
  const [isVisible, setVisibility] = useState(false);

  const { animatedStyles, onLayout, height, maxHeight } = useCollapsible({
    isVisible,
    easing: Easing.bounce,
    duration: 1000,
  });

  const toggleVisibility = () => {
    setVisibility((previous) => !previous);
  };

  const arrowStyles = useAnimatedStyle(() => {
    const degree = interpolate(height.value, [0, maxHeight], [0, 180]);

    return {
      transform: [{ rotate: `${degree}deg` }],
    };
  });

  return (
    <View style={styles.container}>
      <TouchableOpacity
        onPress={toggleVisibility}
        style={styles.buttonContainer}
      >
        <Text>Expand / Collapse</Text>
        <Animated.Text style={arrowStyles}>↓</Animated.Text>
      </TouchableOpacity>

      <Animated.View
        style={[animatedStyles, styles.overflowHidden]}
        pointerEvents={isVisible ? 'auto' : 'none'}
      >
        <View onLayout={onLayout} style={styles.collapsibleContainer}>
          <Text>Lorem ipsum...</Text>
        </View>
      </Animated.View>
    </View>
  );
}

Config object options

PropertyTypeDescriptionDefault
isVisiblebooleanWhether to show the child components or nottop
heightOffsetnumberOffset of collapsed children visible0
durationnumberTime in ms of animation300
easingEasingType of animation from ReanimatedEasing.linear

Hook returned object

PropertyTypeDescription
onLayout(event: LayoutChangeEvent) => voidFunction need to be used on children container
heightSharedValue<number>Reanimated shared value with current height
animatedStylesnumberStyles of children container
maxHeightnumberChildren max height

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT © 2023-2024 Lukasz Kurant

1.1.2

9 months ago

1.1.1

2 years ago

1.1.0

2 years ago