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

@etchemkay/rn-select-date-range

v5.0.13

Published

A simple and fully customizable React Native date range picker component

Downloads

20

Readme

rn-select-date-range

A simple React Native date range picker component


Installing

npm install rn-select-date-range

or

yarn add rn-select-date-range

Screenshot


Prerequisites

CalendarPicker requires Moment JS.

npm install --save moment

Example React Native App

import moment from "moment";
import React, { useState } from "react";
import { SafeAreaView, StyleSheet, View, Text } from "react-native";
import DateRangePicker from "rn-select-date-range";

const App = () => {
  const [selectedRange, setRange] = useState({});
  return (
    <SafeAreaView>
      <View style={styles.container}>
        <DateRangePicker
          onSelectDateRange={(range) => {
            setRange(range);
          }}
          blockSingleDateSelection={true}
          responseFormat="YYYY-MM-DD"
          maxDate={moment()}
          minDate={moment().subtract(100, "days")}
          selectedDateContainerStyle={styles.selectedDateContainerStyle}
          selectedDateStyle={styles.selectedDateStyle}
        />
        <View style={styles.container}>
          <Text>first date: {selectedRange.firstDate}</Text>
          <Text>second date: {selectedRange.secondDate}</Text>
        </View>
      </View>
    </SafeAreaView>
  );
};

const styles = StyleSheet.create({
  container: {
    margin: 50,
  },
  selectedDateContainerStyle: {
    height: 35,
    width: "100%",
    alignItems: "center",
    justifyContent: "center",
    backgroundColor: "blue",
  },
  selectedDateStyle: {
    fontWeight: "bold",
    color: "white",
  },
});

export default App;

CalendarPicker Props

| Prop | Type | Required | Description | | :------------------------------- | :------------ | :--------- | :------------------------------------------------------------------------------------------------------------ | | onSelectDateRange | Method | Required | This will return a object with firstDate and lastDate | | maxDate | Moment Date | Optional | If you need to pass Max Date user can select, set this prop as a moment date | | minDate | Moment Date | Optional | If you need to pass Min Date user can select, set this prop as a moment date | | responseFormat | String | Optional | Please refere the date formats here Moment Date Formats | | blockSingleDateSelection | boolean | Optional | This will block the user to click single date without date range | | font | String | Optional | Name of the font you are using in your theme | | selectedDateContainerStyle | Style | Optional | Style of the selected date container | | selectedDateStyle | Style | Optional | Style of the selected date | | ln | string | Optional | Two letter locales string that is supported by the Moment library | | onConfirm | Method | Optional | This function will be executed if confirm button pressed | | onClear | Method | Optional | This function will be executed if clear button pressed | | clearBtnTitle | string | Optional | Text for the button to clear data. If empty string passed, button will not be shown | | confirmBtnTitle | string | Optional | Text for the button to confirm selection of dates. If empty string passed, button will not be shown |


onSelectDateRange response

{
    firstDate: if you pass responseFormat it will be a formatted date, if not it will be a moment date
    lastDate: if you pass responseFormat it will be a formatted date, if not it will be a moment date
}

Run the sample app

cd example
npm install
npx react-native run-ios

Suggestions?

Open Issues. Submit PRs.

If you like the project

If you think I have helped you, feel free to get me coffee. 😊