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

jugger-alert

v1.2.1

Published

A react native customizable alert

Downloads

28

Readme

Jugger Alert - React Native Package

Jugger Alert is a customizable and reusable modal component for React Native Expo applications. It provides an easy way to display alerts and confirmation dialogs with various customization options.


Project Demo Video

Video Thumbnail



Getting Started

To use this library, You can install Jugger Alert using npm or yarn:

npm install jugger-alert

or

yarn add jugger-alert

Key Features

  • Modularity: Jugger Alert provides a standalone and reusable modal component, enabling you to effortlessly incorporate alerts throughout your application.

  • Customization: Customize the appearance and behavior of the modal to match your app's design and user experience requirements.

  • Icon Variety: Choose from different icon options including a question mark, checkmark, thumbs-up, and a "sorry" symbol to suit the context of the alert.

  • Responsive Design: Jugger Alert is designed to work seamlessly on various screen sizes and orientations.

  • User Interaction: Users can confirm or cancel actions with the provided buttons, helping prevent accidental actions.

  • Easy Integration: Integrate Jugger Alert into your app's flow by simply toggling the modal's visibility and handling the continue action.


Props

| Property | Type | Description | Default Value | |-------------------|----------|----------------------------------------|---------------------| | alertVisible | boolean | Determines if the modal is visible. | false | | setAlertVisible | function | Control the visibility of the modal. | | | onContinue | function | Callback when "Continue" is pressed. | | | title | string | The title of the modal. | | | message | string | The message displayed in the modal. | | | juggerColor | string | Background color of the modal. | "blue" | | firstButton | string | Label for the first button. | "Cancel" | | secondButton | string | Label for the second button. | "Continue" | | titleStyle | string | Styling for the title. | "Style" | | messageStyle | string | Styling for the message. | "Style" |


Usage

Import JuggerAlert in your component and use it within your app:

import React, { useState } from 'react';
import { View, Text, TouchableOpacity, StyleSheet, Dimensions } from 'react-native';
import JuggerAlert from 'jugger-alert';

const { width, height } = Dimensions.get('window');

export default function App() {
const [modalVisible, setModalVisible] = useState(false);

const handleContinue = () => {
 console.log("Continue button pressed");
};

return (
 <View style={styles.container}>
   <JuggerAlert
     alertVisible={modalVisible}
     setAlertVisible={setModalVisible} 
     onContinue={handleContinue}
     question
     title="Please confirm"
     message="Are you sure you want to logout?"
     juggerColor="blue"
   />
   <View style={styles.buttonContainer}>
     <TouchableOpacity
       style={styles.button}
       onPress={() => setModalVisible(true)}>
       <Text style={styles.textStyle}>Show Modal</Text>
     </TouchableOpacity>
   </View>
 </View>
)
}

const styles = StyleSheet.create({
container: {
 flex: 1,
 justifyContent: 'center',
 alignItems: 'center',     
},
buttonContainer: {
 flex: 1,                  
 justifyContent: 'center', 
 alignItems: 'center',     
},
button: {
 borderWidth: 1,
 borderColor: 'gray',
 backgroundColor: 'blue',
 height: height / 18,
 width: width / 3,
 justifyContent: 'center',
 alignItems: 'center',
},
textStyle: {
 color: 'white',
},
});

Improvement

If you're interested in enhancing the library by creating additional features, feel free to create an issue and outline the specific improvements you have in mind.


License

Licensed under the MIT.


Author Info

Readme style