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-inline-calendar

v0.4.6

Published

React Native component that renders selectable monthly calendar or week stripe with agenda for selected date

Downloads

50

Readme

react-native-inline-calendar

React Native component that renders selectable monthly calendar or week stripe with agenda for selected date

Installation

Run in your terminal:

yarn add react-native-inline-calendar

or

npm install react-native-inline-calendar --save

Then add to your application as

import { Calendar } from react-native-inline-calendar

Usage

You can see usage example in this Expo demo

Params

| Param name | Type | Default value | Description | | ------------- | ----------- | ------------- | ----------- | | weekMode | boolean | false | enable week stripe mode | | disableWeekToggle | boolean | false | disable toggle from week stripe to month view | | scrollable | boolean | false | scrollable or not | | weekStartsOn | number | 0 | Index of the first week day, i.e. 0 - Sunday, 1 - Monday, etc. | | showAgenda | boolean | true | show agenda list under the calendar (items property) | | scrollByOne | boolean | true | scroll by one page or with momentum | | animatedScrollTo | boolean | true | animate initial scroll | | hideHeader | boolean | false | Hide/show month header | | hideWeekDays | boolean | false | Hide/show week days names | | showArrows | boolean | true | Hide/show navigation arrows | | minMonthsToScroll | number | 0 | number of months in the past available for scroll | | maxMonthsToScroll | number | 1 | number of months in the future available for scroll | | initialDate | date | new Date | initial date | | minDate | date | new Date | if set, all dates earlier than that will be disabled | | headerDateFormat | string | Date format for header | | selectedDate | date | initialDate or now | date, initially selected | | currentDate | date | initialDate or now | current date | | items | object | null | agenda items in map format (see below) | | dataUpdated | timestamp | null | timestamp of last data refresh to update calendar cache. Required for dinamic data updates | | emptyListRenderer | function | defaultEmptyListRenderer | what should be rendered if agenda is empty for selected date | | itemRenderer | function | defaultItemRenderer | agenda item renderer | | itemClickHandler | function | void | agenda item click handler | | onDateSelect | function | void | date select handler, doesn't prevent rendering date's agenda, runs after selected date state is updated | | styles | object | defaultStyles | custom styles that can be applied to the component. Import defaultStyles for the reference |

Agenda items data format:

{
  'YYYY-MM-DD': {
    style: object,
    items: [ object ] 
  } 
}