react-add-to-calendar-hoc
react-add-to-calendar-hoc copied to clipboard
Simple Unopinionated React Add to Calendar Button. Bring your own components.
Looking for a way to pass custom text to the array of the calendar dropdown... Will be used for localization
Would be great to add recurring events (`RRULE`) to the API. The google link parameter is... `&recur=RRULE:FREQ%3DDAILY` https://developers.google.com/calendar/api/guides/recurringevents I've been messing with this trying to get it done... https://www.textmagic.com/free-tools/rrule-generator
# Bug report End time for long events does not work with `dur` value. ## Describe the bug The URL for long events (over ~100 hours) in Yahoo is not...
# Bug report const provider = description; const momentStartDate = moment(startDatetime); const startTime = momentStartDate.format('YYYYMMDDTHHmmssZ'); const endTime = moment(endDatetime).format('YYYYMMDDTHHmmssZ'); const event = { title: "Appointment - " + location, description:...
Apparently there are several "required" properties missing from the ISC files... - `PRODID` - name of product/app generating the file - `DTSTAMP` - last update to the calendar content -...
New prop to pass in recurring events rules. https://github.com/jasonleibowitz/react-add-to-calendar-hoc/issues/56 _I chose to use [jakubroztocil/rrule](https://github.com/jakubroztocil/rrule) to generate `RRULE` strings_
# Feature request There is no example for HoCs. This confuses users the first sight. That's why I decided to make a clear, full-coverage example. ## Describe the solution you'd...