1.3.0 • Published 6 months ago

react-rrule-widget v1.3.0

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

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

NameTypeDescription
valuestringREQUIRED. You can pass your own RRule value to RRuleGenerator and use it like controlled input component.
onChangefunctionCallback trigger when the RRule changes. The callback receives newly generated RRule string.
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/.
localestringSpecifies the language setting for the package. It supports two values: 'en' for English and 'fr' for French. The default value is 'en'
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'
endstringYou can optionally choose default end option 'Never', 'After', 'On date'. The Default value is 'After'
endOptionsarray of stringYou 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.
hideStartbooleanIf true start date form is not rendered. Default: true
hideEndbooleanIf true ending form is not rendered. Default: false
weekStartsOnSundaybooleanIf set to true, weeks starts on Sunday (both for views and RRule string). Default: false
countnumberDefault value for 'After' end option

License

MIT

1.3.0

6 months ago

1.2.0

1 year ago

1.2.1

1 year ago

1.1.1

1 year ago