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

react-native-range-datepicker-es

v2.2.1

Published

React native range datepicker (inspired by Airbnb Datepicker)

Downloads

6

Readme

react-native-range-datepicker-es

This is my first npm package, inspired by Airbnb datepicker. Fork of - https://github.com/apaajabolehd/react-native-range-datepicker

react-native-range-datepicker in action

Install

$ npm i react-native-range-datepicker-es --save

How to use

import DatepickerRange from 'react-native-range-datepicker-es';

<DatepickerRange
    startDate="13052017"
    untilDate="26062017"
    onConfirm={( startDate, untilDate ) => this.setState({ startDate, untilDate })}
/>

Default props RangeDatepicker

static defaultProps = {
    monthProps: {
		titleFormat: 'MMMM YYYY',
		titleStyle: { fontSize: 20, padding: 20 },
		dayHeaderProps: {},
		showDaysHeader: false,
		capitalizeTitle: false,
    },
    buttonText: 'Select Date',
    flatListProps: {},
    closeButtonText: 'Close',
    chosenDateTextColor: '#666',
    monthProps: {},
    dayHeaderDividerColor: "#000000",
    initialMonth: '',
    dayHeadings: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
    dayHeaderStyle: {},
    dayHeaderContainerStyle: {},
    maxMonth: 12,
    buttonColor: 'green',
    buttonContainerStyle: {},
    flatListProps: {},
    monthProps: {},
    showReset: true,
    showClose: true,
    showConfirmButton: true,
    showSelectedRange: true,
    showsVerticalScrollIndicator: false,
    showDaysHeader: true,
    ignoreMinDate: false,
    isHistorical: false,
    dayContainerOffset: 0,
    onClose: () => {},
    onSelect: () => {},
    onConfirm: () => {},
    placeHolderStart: 'Start Date',
    placeHolderUntil: 'Until Date',
    selectedBackgroundColor: 'green',
    selectedTextColor: 'white',
    dayBackgroundColor: '',
    dayTextColor: '',
    pointBackgroundColor: '',
    pointTextColor: '',
    todayColor: 'green',
    textColor: '#000000',
    resetButtonText: "Reset",
    startDate: '',
    untilDate: '',
    minDate: '',
    maxDate: '',
    infoText: '',
    showSelectionInfo: true,
    showButton: true,
    infoStyle: {color: '#fff', fontSize: 13},
    infoContainerStyle: {marginRight: 20, paddingHorizontal: 20, paddingVertical: 5, backgroundColor: 'green', borderRadius: 20, alignSelf: 'flex-end'}
};

Proptypes RangeDatepicker

static propTypes = {
    monthProps: PropTypes.shape({
        titleFormat: PropTypes.string,
        titleStyle: PropTypes.object,
    }),
    initialMonth: PropTypes.string,
    dayHeadings: PropTypes.arrayOf(PropTypes.string),
    availableDates: PropTypes.arrayOf(PropTypes.string),
    maxMonth: PropTypes.number,
    buttonColor: PropTypes.string,
    buttonText: PropTypes.string,
    dayHeaderDividerColor: PropTypes.string,
    closeButtonText: PropTypes.string,
    chosenDateTextColor: PropTypes.string,
    flatListProps: PropTypes.object,
    dayHeaderStyle: PropTypes.object,
    dayHeaderContainerStyle: PropTypes.object,
    buttonContainerStyle: PropTypes.object,
    monthProps: PropTypes.object,
    startDate: PropTypes.string,
    untilDate: PropTypes.string,
    minDate: PropTypes.string,
    maxDate: PropTypes.string,
    showReset: PropTypes.bool,
    showClose: PropTypes.bool,
    dayContainerOffset: PropTypes.number,
    showConfirmButton: PropTypes.bool,
    showSelectedRange: PropTypes.bool,
    showsVerticalScrollIndicator: PropTypes.bool,
    ignoreMinDate: PropTypes.bool,
    isHistorical: PropTypes.bool,
    onClose: PropTypes.func,
    onSelect: PropTypes.func,
    onConfirm: PropTypes.func,
    placeHolderStart: PropTypes.string,
    placeHolderUntil: PropTypes.string,
    selectedBackgroundColor: PropTypes.string,
    resetButtonText: PropTypes.string,
    selectedTextColor: PropTypes.string,
    dayBackgroundColor: PropTypes.string,
    dayTextColor: PropTypes.string,
    pointBackgroundColor: PropTypes.string,
    pointTextColor: PropTypes.string,
    todayColor: PropTypes.string,
    infoText: PropTypes.string,
    infoStyle: PropTypes.object,
    showSelectionInfo: PropTypes.bool,
    showButton: PropTypes.bool,
    infoContainerStyle: PropTypes.object
}
import {SingleDatepicker} from 'react-native-range-datepicker';

<SingleDatepicker
    onConfirm={( date ) => this.setState({ date })}
/>

How to set fist day of week


import 'moment/locale/en-gb';
moment.locale("en-gb");

How to set days heades


const dayHeadings =
    [...Array(7).keys()]
        .map(day => moment().weekday(day).format('dd'))
        .map(_capitalize);

Default props SingleDatepicker

static defaultProps = {
	initialMonth: '',
	dayHeadings: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
	maxMonth: 12,
	showClose: true,
	onClose: () => {},
	onSelect: () => {},
	selectedBackgroundColor: 'green',
	selectedTextColor: 'white',
	todayColor: 'green',
	minDate: '',
	maxDate: '',
	infoText: '',
	infoStyle: {color: '#fff', fontSize: 13},
	infoContainerStyle: {marginRight: 20, paddingHorizontal: 20, paddingVertical: 5, backgroundColor: 'green', borderRadius: 20, alignSelf: 'flex-end'},
};

Proptypes SingleDatepicker

static propTypes = {
	initialMonth: PropTypes.string,
	dayHeadings: PropTypes.arrayOf(React.PropTypes.string),
	availableDates: PropTypes.arrayOf(React.PropTypes.string),
	maxMonth: PropTypes.number,
	minDate: PropTypes.string,
	maxDate: PropTypes.string,
	showClose: PropTypes.bool,
	onClose: PropTypes.func,
	onSelect: PropTypes.func,
	selectedBackgroundColor: PropTypes.string,
	selectedTextColor: PropTypes.string,
	todayColor: PropTypes.string,
	infoText: PropTypes.string,
	infoStyle: PropTypes.object,
	infoContainerStyle: PropTypes.object,
}

Update 23/07/2019

  • RN 0.6 compatibility: replaced ListView by FlatList
  • added more flexible width based on actual container size