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

@brank1994/react-recurrence-selector

v0.3.0

Published

A simple, customizable, and reusable component for providing the recurrence functionality.

Downloads

21

Readme

Alt logo React Recurrence

NPM npm NPM JavaScript Style Guide

A simple, customizable, and reusable component for providing the recurrence functionality.

Installation

The package can be installed via NPM:

npm install --save react-recurrence

Demo

A live demo for the component can be found here.

Usage

Below is a simple example on how to use the component. When any internal field is changed, an updated recurrence object is emitted.

Please note that MuiPickersUtilsProvider must be added at the root of your application with the appropriate date util.

import {
  Recurrence,
  RecurrenceType,
  FrequencyType,
  EndingConditionType
} from 'react-recurrence'


const App = () => {

    const today = new Date()
    const defaultRecurrence = {
      startDate: today,
      endDate: today,
      frequency: FrequencyType.Weekly,
      numberOfRepetitions: 1,
      weekDaysRepetition: [],
      endingCondition: EndingConditionType.None,
      endingOccurrencesNumber: 0,
      isAllDay: false,
      startTime: today,
      endTime: today
      }

    const [recurrence, setRecurrence] = useState<RecurrenceType>(defaultRecurrence)

    const handleRecurrenceChange = (updatedRecurrence: RecurrenceType) => {
      setRecurrence(updatedRecurrence)
    }

    return (
      <MuiPickersUtilsProvider utils={DateFnsUtils}>
        <Recurrence
          recurrence={recurrence}
          onChange={handleRecurrenceChange}
        />
      </MuiPickersUtilsProvider>
    )
}

Configuration

The component has a default structuring for the internal components. You can use it without passing the internal components as children as following:

<Recurrence
  recurrence={recurrence}
  onChange={handleRecurrenceChange}
/>

Or you can structure and customise the internal components according to your needs as following:

<Recurrence
  recurrence={recurrence}
  onChange={handleRecurrenceChange}
>
    <Grid
      container
      direction='column'
      justify='center'
      alignItems='center'
      spacing={3}
    >
      <Grid item xs={12}>
        <Recurrence.StartDateSelector/>
      </Grid>
      <Recurrence.FrequencySelector/>
      <Grid item sm={12}>
        <Recurrence.EndingConditionSelector/>
      </Grid>
      <Grid item sm={12}>
        <Recurrence.TimeSelector/>
      </Grid>
    </Grid>
</Recurrence>

Props

recurrence (RecurrenceType)

  startDate: Date
  frequency: FrequencyType
  numberOfRepetitions?: number
  weekDaysRepetition: Array<number>
  endingCondition: EndingConditionType
  endingOccurrencesNumber?: number
  endDate?: Date
  isAllDay: boolean
  startTime?: Date
  endTime?: Date

onChange (recurrence: RecurrenceType) ⇒ void

Any field changes within the component, will emit a recurrence object with the new change.

Internal Components

you can find here the internal components that are used to structure the main recurrence component.

 Alt text

RecurrenceType fields

startDate

Date

Represents the start date of the recurrence.

frequency

[Enum] FrequencyType

Represents how frequent the recurrence will be.

Enum values: None, Hourly, Daily, Weekly, Monthly, Yearly

numberOfRepetitions

number<Nullable>

Represents how many times the recurrence will be repeated according to the chosen frequency.

weekDaysRepetition

Array<number>

Used when weekly repetition is chosen. Represents on which days the recurrence will happen in a week.

endingCondition

[Enum] EndingConditionType

Represents what's the condition of ending a recurrence.

Enum values: None, EndDate, OccurrencesNumber

endingOccurrencesNumber

number<Nullable>

Used when OccurrencesNumber ending condition is chosen. Represents how many times the recurrence will happen.

endDate

Date<Nullable>

Used when EndDate ending condition is chosen. Represents the end date of the recurrence.

isAllDay

boolean

Represents if a recurrence will be all day or if it has a start and end time

startTime

Date<Nullable>

Used when isAllDay boolean is false. Represents the start time of the recurrence.

endTime

Date<Nullable>

Used when isAllDay boolean is false. Represents the end time of the recurrence.

To run Locally

  • npm run start
  • cd example -> npm run start

To run tests

  • npm run test

Storybook

  • npm run storybook

License

MIT © ziadadeela