1.7.5 • Published 4 years ago

@fatihergin/react-native-calendar-events v1.7.5

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

React Native Calendar Events

npm npm npm

A React Native module to help access and save events to iOS and Android calendars.

Table of contents

Getting started

This package assumes that you already have a React Native project or are familiar with React Native. If not, checkout the official documentation for more details about getting started with React Native.

The following is required for the package to work properly.

Step 1. - Install

Install the react-native-calendar-events library with native code.

npm install --save  @fatihergin/react-native-calendar-events-@1.7.4

Step 2. - Link the library

Since this package contains native code, you will need to include the code as a library. The React Native documentation on "Linking Libraries" also provides some details for this process.

  • Automatic linking
react-native link
  • Manual linking Sometimes "automatic linking" is not sufficient or is not properly including the library. Fortunately, the React Native docs on "Manual Linking" serves a helpful guide (with pictures) in the process.

Step 3. - OS specific setup

API

The following API allows for interacting with both iOS and Android device calendars. See the full list of available event fields.

import RNCalendarEvents from '@fatihergin/react-native-calendar-events';

authorizationStatus

Get calendar authorization status.

RNCalendarEvents.authorizationStatus()

Returns: Promise

  • fulfilled: String - denied, restricted, authorized or undetermined
  • rejected: Error

authorizeEventStore

Request calendar authorization. Authorization must be granted before accessing calendar events.

Android note: This is only necessary for targeted SDK of 23 and higher.

RNCalendarEvents.authorizeEventStore()

Returns: Promise

  • fulfilled: String - denied, restricted, authorized or undetermined
  • rejected: Error

findCalendars

Finds all the calendars on the device.

RNCalendarEvents.findCalendars()

Returns: Promise

  • fulfilled: Array - A list of known calendars on the device
  • rejected: Error

saveCalendar

Create a calendar.

RNCalendarEvents.saveCalendar(calendar)

Arguments:

Returns: Promise

  • fulfilled: The id of the created calendar
  • rejected: Error

findEventById

Find calendar event by id. Returns a promise with fulfilled found events.

RNCalendarEvents.findEventById(id)

Arguments:

  • id: String - The events unique id.

Returns: Promise

  • fulfilled: Object | null - Found event with unique id.
  • rejected: Error

fetchAllEvents

Fetch all calendar events. Returns a promise with fulfilled found events.

RNCalendarEvents.fetchAllEvents(startDate, endDate, calendars)

Arguments:

  • startDate: String - The start date of the range of events fetched.
  • endDate: String - The end date of the range of events fetched.
  • calendars: Array - List of calendar id strings to specify calendar events. Defaults to all calendars if empty.

Returns: Promise

  • fulfilled: Array - Matched events within the specified date range.
  • rejected: Error

saveEvent

Creates or updates a calendar event. - wiki guide

RNCalendarEvents.saveEvent(title, details, options);

Arguments:

  • title: String - The title of the event.
  • details: Object - The event's details.
  • options: Object - Options specific to the saved event.

Returns: Promise

  • fulfilled: String - Created event's ID.
  • rejected: Error

To update an event, the event id must be defined. - wiki guide

RNCalendarEvents.saveEvent(title, {id: 'FE6B128F-C0D8-4FB8-8FC6-D1D6BA015CDE'})

removeEvent

Removes calendar event.

RNCalendarEvents.removeEvent(id, options)

Arguments:

  • id: String - The id of the event to remove.
  • options: Object - Options specific to event removal.

Returns: Promise

  • fulfilled: Bool - Successful
  • rejected: Error

Event fields

PropertyTypeDescriptioniOSAndroid
id*StringUnique id for the calendar event.
calendarId**StringUnique id for the calendar where the event will be saved. Defaults to the device's default calendar.
titleStringThe title for the calendar event.
startDateStringThe start date of the calendar event in ISO format.
endDateStringThe end date of the calendar event in ISO format.
allDayBoolIndicates whether the event is an all-day event.
recurrenceStringThe simple recurrence frequency of the calendar event daily, weekly, monthly, yearly or none.
recurrenceRule **ObjectThe events recurrence settings.
occurrenceDate*StringThe original occurrence date of an event if it is part of a recurring series.
isDetachedBoolIndicates whether an event is a detached instance of a repeating event.
urlStringThe url associated with the calendar event.
locationStringThe location associated with the calendar event.
notesStringThe notes associated with the calendar event.
descriptionStringThe description associated with the calendar event.
alarmsArrayThe alarms associated with the calendar event, as an array of alarm objects.
attendees*ArrayThe attendees of the event, including the organizer.
calendar*ObjectThe calendar containing the event.
skipAndroidTimezoneBoolSkip the process of setting automatic timezone on android

Calendar

PropertyTypeDescriptioniOSAndroid
idStringUnique calendar ID.
titleStringThe calendar’s title.
typeStringThe calendar’s type.
sourceStringThe source object representing the account to which this calendar belongs.
isPrimary*BoolIndicates if the calendar is assigned as primary.
allowsModifications*BoolIndicates if the calendar allows events to be written, edited or removed.
color*StringThe color assigned to the calendar represented as a hex value.
allowedAvailabilities*ArrayThe event availability settings supported by the calendar.

Attendees

PropertyTypeDescriptioniOSAndroid
nameStringThe name of the attendee.
email*StringThe email address of the attendee.
phone*StringThe phone number of the attendee.

Recurrence rule

PropertyTypeDescriptioniOSAndroid
frequencyStringEvent recurring frequency. Allowed values are daily, weekly, monthly, yearly.
endDateStringEvent recurring end date. This overrides occurrence.
occurrenceNumberNumber of event occurrences.
intervalNumberThe interval between events of this recurrence.

Alarms

PropertyTypeDescriptioniOSAndroid
dateString or NumberIf a String is given, an alarm will be set with an absolute date. If a Number is given, an alarm will be set with a relative offset (in minutes) from the start date.
structuredLocationObjectThe location to trigger an alarm.

Alarm structuredLocation

PropertyTypeDescriptioniOSAndroid
titleStringThe title of the location.
proximityStringA value indicating how a location-based alarm is triggered. Possible values: enter, leave, none.
radiusNumberA minimum distance from the core location that would trigger the calendar event's alarm.
coordsObjectThe geolocation coordinates, as an object with latitude and longitude properties

Options

PropertyTypeDescriptioniOSAndroid
exceptionDateStringThe start date of a recurring event's exception instance. Used for updating single event in a recurring series
futureEventsBoolIf true the update will span all future events. If false it only update the single instance.

Calendar options

PropertyTypeDescriptioniOSAndroid
titleStringThe calendar title (required)
colorStringThe calendar color (required)
entityTypeString'event' or 'reminder' (required)
nameStringThe calendar name (required)
accessLevelStringDefines how the event shows up for others when the calendar is shared doc(required) 'contributor', 'editor', 'freebusy', 'override', 'owner', 'read', 'respond', 'root'
ownerAccountStringThe owner account for this calendar, based on the calendar feed doc(required)
sourceObjectThe calendar Account source (required)
source.nameStringThe Account name (required)
source.typeStringThe Account type
source.isLocalAccountBoolThe source (required if source.type is not used)

Wiki

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Big thanks to all who have contributed, raised an issue or simply find use in this project. Cheers!