npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@anatolyk/react-native-instagram-stories

v1.0.6

Published

A versatile and captivating React Native component that empowers developers to seamlessly integrate Instagram-style stories into their mobile applications, fostering an engaging and interactive user experience.

Downloads

52

Readme

@birdwingo/react-native-instagram-stories

npm downloads npm version github release npm release

Features 🌟

📸 Capture Moments: Easily integrate Instagram-like stories in your React Native app to let users share their favorite moments.

✨ Inspired by Instagram: Crafted with inspiration from the real Instagram stories feature, capturing its essence and style.

📱 Mobile-Friendly: Designed with mobile users in mind, providing a smooth and responsive experience on all devices.

💾 Using Async Storage: Utilize Async Storage to save the progress of users and load them whenever they want.

🛠️ Developer Friendly: Well-documented and easy to set up, making the developer's life a breeze.

🚀 High Performance: Optimized for speed, ensuring a lag-free experience for users.

💡 Rich Features: Support for video, images, and text, plus more – all in one powerful package!

🎉 Community Support: Join a growing community of developers and users, eager to help and share their experiences.

About

react-native-instagram-stories component is a versatile React Native component designed to display a horizontal scrollable list of user stories, similar to the stories feature found in the Instagram app. It provides a visually appealing way to showcase stories with various customizable options. It is used in the Birdwingo mobile app for Birdwingo Academy which allows users to learn the basics of investing in stocks and ETFs.

Installation

npm install react-native-svg
npm install react-native-reanimated
npm install react-native-gesture-handler
npm install @birdwingo/react-native-instagram-stories

Integration with Storage and Video

The component offers an option to save and track the progress of seen stories using saveProgress. If you use saveProgress, please make sure you have @react-native-async-storage/async-storage installed.

If you use video in your stories, please make sure you have react-native-video installed.

Usage

To use the InstagramStories component, you need to import it in your React Native application and include it in your JSX code. Here's an example of how to use it:

import React from 'react';
import { View } from 'react-native';
import InstagramStories from '@birdwingo/react-native-instagram-stories';

const YourComponent = () => {
  
  const stories = [{
    id: 'user1',
    name: 'User 1',
    imgUrl: 'user1-profile-image-url',
    stories: [
      { id: 'story1', sourceUrl: 'story1-image-url' },
      { id: 'story2', sourceUrl: 'story1-video-url', mediaType: 'video' },
      // ...
    ]}, // ...
  ];
  
  return (
    <View>
      <InstagramStories
        stories={stories}
        // ...
      />
    </View>
  );
};

export default YourComponent;

Props

Name | Type | Default value | Description
----------------------------|----------------------------------------------|--------------------------------------------|--------------------- stories | InstagramStoryProps[]| required | An array of stories. saveProgress | boolean | false | A boolean indicating whether to save and track the progress of seen stories. avatarBorderColors | string[] | DEFAULT_COLORS | An array of string colors representing the border colors of story avatars. avatarSeenBorderColors | string[] | [ '#2A2A2C' ] | An array of string colors representing the border colors of seen story avatars. avatarSize | number | 60 | The size of the story avatars. storyAvatarSize | number | 25 | The size of the avatars shown in the header of each story. avatarListContainerStyle | ScrollViewProps['contentContainerStyle'] | | Additional styles for the avatar scroll list container. avatarListContainerProps | ScrollViewProps | | Props to be passed to the avatar list ScrollView component. containerStyle | ViewStyle | | Additional styles for the story container. textStyle | TextStyle | | Additional styles for text elements. animationDuration | number | 10000 | The duration of the story animations in ms. videoAnimationMaxDuration| number | | The max duration of the video story animations in ms. If is this property not provided, the whole video will be played. backgroundColor | string | '#000000' | The background color of story container. showName | boolean | false | Whether you want to show user name under avatar in avatar list. nameTextStyle | TextStyle | | Additional styles for name text elements. videoProps | react-native-video| | Additional props for video component. For more information, follow react-native-video. closeIconColor | string | '#00000099' | The color of story close icon. progressColor | string | '#00000099' | Background color of progress bar item in inactive state progressActiveColor | string | '#FFFFFF' | Background color of progress bar item in active state modalAnimationDuration | number | 800 | Duration of modal animation in ms (showing/closing instagram stories) mediaContainerStyle | ViewStyle | | Additional styles for media (video or image) container imageStyles | ImageStyle | { width: WIDTH, aspectRatio: 0.5626 } | Additional styles image component imageProps | ImageProps | | Additional props applied to image component onShow | ( id: string ) => void | | Callback when a story is shown. onHide | ( id: string ) => void | | Callback when a story is hidden. onSwipeUp | ( userId?: string, storyId?: string ) => void| | Callback when user swipes up. onStoryStart | ( userId?: string, storyId?: string ) => void| | Callback when story started onStoryEnd | ( userId?: string, storyId?: string ) => void| | Callback when story ended

Public Methods

Name | Type | Description ---------------------- |--------------------------------------------------------------------------------------------------|--------------------------- spliceStories | ( stories: InstagramStoryProps[], index?: number ) => void | Insert new stories at a specific index. If you don't provide index property, stories will be pushed to the end of array. spliceUserStories | ( stories: InstagramStoryProps[], user: string, index?: number ) => void | Insert new stories for a specific user at a specific index. If you don't provide index property, stories will be pushed to the end of array setStories | ( stories: InstagramStoryProps[] ) => void | Replace the current stories with a new set of stories. clearProgressStorage| () => void | Clear the progress storage for seen stories. hide | () => void | Hide stories if currently visible show | ( id?: string ) => void | Show stories modal with provided story id. If id is not provided, will be shown first story pause | () => void | Pause story resume | () => void | Resume story getCurrentStory | () => {userId?: string, storyId?: string} | Returns current userId and storyId

Types

InstagramStoryProps

Parameter | Type | Required -----------------------|----------------------------------------|---------------- id | string | true imgUrl | string | false name | string | false stories | StoryItemProps[] | true

Please note that id parameter must be unique for every user

StoryItemProps

Parameter | Type | Required -----------------------|------------------------------------------|------------------- id | string | true sourceUrl | string | true mediaType | 'video' | 'image' (default: 'image') | false renderContent | () => ReactNode | false renderFooter | () => ReactNode | false

Please note that id parameter must be unique for every story

Default Gradient Colors

Default colors for avatar gradient are the same as on Instagram - [ '#F7B801', '#F18701', '#F35B04', '#F5301E', '#C81D4E', '#8F1D4E' ]

Sponsor

react-native-instagram-stories is sponsored by Birdwingo.
Download Birdwingo mobile app to see react-native-instagram-stories in action!