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-rrule-widget

v1.2.1

Published

[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)

Downloads

16

Readme

React RRule Widget

MIT License

Based on : React RRule Generator https://github.com/fafruch/react-rrule-generator

App Screenshot

Description

ReactJS library for generating RRule strings.

Uses :

Installation

npm

  npm install --save react-rrule-widget

yarn

  yarn add react-rrule-widget

Usage/Examples

import ReactRRuleWidget from "react-rrule-widget";

function App() {
  const [rrule, setRrule] = useState("");
  const [dates, setDates] = useState<any[]>([]);

  const handleChange = (newRRule: string) => {
    setRrule(newRRule);
    const rruleObj = rrulestr(newRRule);
    setDates(rruleObj.all((_, index) => index < 20));
  };

  return (
    <ReactRRuleWidget
      onChange={handleChange}
      value={rrule}
      locale="en"
      config={{
        hideStart: false,
        count: 10,
        endOptions: ["never", "on-date", "after-executions"],
      }}
    />
  );
}

API

Props

| Name | Type | Description | | ------------------ | ----------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | value | string | REQUIRED. You can pass your own RRule value to RRuleGenerator and use it like controlled input component. | | onChange | function | Callback trigger when the RRule changes. The callback receives newly generated RRule string. | | config | object | Accepts object of what options will be rendered. This object's structure is described in #config | | translations | function or object | Accepts a function or an object with translations for all labels in the component. By default all labels are in English. You can pass your own translation object or function, which has the following signature: (key: string, replacements: object) => string. It receives key of the label in form of 'repeat.yearly.on_the' and an object for placeholder replacements, e.g., { value: error.value }. Example translation objects are placed in /src/lib/translations/. | | locale | string | Specifies the language setting for the package. It supports two values: 'en' for English and 'fr' for French. The default value is 'en' | | customCalendar | React Component or stateless function | This accepts custom calendar / datepicker for choosing a date in EndOnDate view. It receives following props by default: 'aria-label' with value 'Datetime picker for end on date',value - date value consumed by app logic, dateFormat - by default 'YYYY-MM-DD', locale - 'en/ca' or 'en/gb' depending on if weekStartsOnSunday in config is set to true or false |

config

config is an object which accepts following:

| Name | Type | Description | | ---------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | frequency | array of string | You can optionally choose if you want to show repeating options 'Yearly', 'Monthly', 'Weekly', 'Daily', 'Hourly'. You can pass for example ['Monthly', 'Weekly'] if you want to show only options for repeating monthly and weekly. | | yearly | string | If 'on' provided, only choosing a particular day of a month is available, if 'on the' is provided, you have ability to choose for example 'fourth Wednesday of February' | | monthly | string | If 'on' provided, only choosing a particular day of a month is available, if 'on the' is provided, you have ability to choose for example 'fourth Wednesday' | | end | string | You can optionally choose default end option 'Never', 'After', 'On date'. The Default value is 'After' | | endOptions | array of string | You can optionally choose if you want to show ending options 'never', 'after-executions', 'on-date'. You can pass for example ['never', 'on-date'] if you want to show only options for ending never or on a particular date without showint 'After' option. | | hideStart | boolean | If true start date form is not rendered. Default: true | | hideEnd | boolean | If true ending form is not rendered. Default: false | | weekStartsOnSunday | boolean | If set to true, weeks starts on Sunday (both for views and RRule string). Default: false | | count | number | Default value for 'After' end option |

License

MIT