1.1.4 • Published 11 months ago

recurrence-rule-builder v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Recurrence Rule Builder

A user-friendly UI library for easily creating recurrence rules using pure Bootstrap. Simplify your scheduling tasks with intuitive interfaces and seamless integration.

License

NPM version NPM downloads MIT License Coverage Status

Screenshot

Description

This is a ReactJS project based on Create React Library and using Bootstrap styling. It's built with the help of a great rrule.js library.

This project references the react-rrule-generator package and has been upgraded to a newer version with additional features.

It also uses:

Demo

https://hvantoan.github.io/recurrence-rule-builder

Installation

npm install recurrence-rule-builder@latest

Usage

In your CSS index file don't forget to import styles:

// this lib uses boostrap (v.5.3.3)
@import '~bootstrap/dist/css/bootstrap.css';
@import "~react-datetime/css/react-datetime.css";

Then you're good to go.
Just use it:

import RRuleEditor from "recurrence-rule-builder";

// render it as it is

const SimpleRender = () => <RRuleEditor onChange={(rrule) => console.log(`RRule changed, now it's ${rrule}`)} />;

// or with your own forms configuration

import MyCustomCalendar from "./MyCustomCalendar";

const CustomizedRender = () => (
  <RRuleEditor
    onChange={(rrule) => console.log(`RRule changed, now it's ${rrule}`)}
    config={{
      repeat: ["Monthly", "Weekly"],
      yearly: "on the",
      monthly: "on",
      end: ["Never", "On date"],
      weekStartsOnSunday: true,
      hideError: true,
    }}
    customCalendar={MyCustomCalendar}
  />
);

API

Props

NameTypeDescription
onChangefunctionREQUIRED. Callback trigger when the RRule changes. The callback receives newly generated RRule string.
valuestringYou can pass your own RRule value to RRuleGenerator and use it like controlled input component.
configobjectAccepts object of what options will be rendered. This object's structure is described in #config
translationsfunction or objectAccepts 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/.
customCalendarReact Component or stateless functionThis 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:

NameTypeDescription
frequencyarray of stringYou 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.
yearlystringIf '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'
monthlystringIf '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'
endarray of stringYou can optionally choose if you want to show ending options 'Never', 'After', '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.
hideStartbooleanIf true start date form is not rendered. Default: true
hideEndbooleanIf true ending form is not rendered. Default: false
hideErrorbooleanIf true error alert is not rendered. Default: false
weekStartsOnSundaybooleanIf set to true, weeks starts on Sunday (both for views and RRule string). Default: false
formatStartstringFormat display value for Start Date. Default: "
formatEndstringFormat display value for End Date. Default:
startDatestringInitial value for start date. Default:

License

MIT

1.1.4

11 months ago

1.1.3

11 months ago

1.1.2

11 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago