Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
react-native-fetch-calendar-events
Advanced tools
React Native module for fetching Calendar Events
It's a fork of React-Native-Calendar-Events with support for fetching calendar events on Android. As soon as code will be refactored, going to remove this repo and send a PR to "react-native-calendar-events".
React Native Module for fetching Calendar Events on iOS and Android.
npm install react-native-fetch-calendar-events
Add RNCalendarEvents
, as well as EventKit.framework
to project libraries.
For iOS 8 compatibility, you may need to link your project with CoreFoundation.framework
(status = Optional) under Link Binary With Libraries on the Build Phases page of your project settings.
Setting up privacy usage descriptions may also be require depending on which iOS version is supported. This involves updating the Property List, Info.plist
, with the corresponding key for the EKEventStore api. Info.plist reference.
For updating the Info.plist
key/value via Xcode, add a Privacy - Calendars Usage Description
key with a usage description as the value.
build.gradle
to look like this:apply plugin: 'com.android.application'
android {
...
}
dependencies {
...
+ compile project(':react-native-fetch-calendar-events')
}
settings.gradle
, insert the following code:include ':react-native-fetch-calendar-events'
project(':react-native-fetch-calendar-events').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fetch-calendar-events/android')
MainActivity.java
to look like this:package com.myapp;
....
import com.calendarevents.CalendarEventsPackage;
public class MainActivity extends extends ReactActivity {
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new CalendarEventsPackage()
);
}
...
}
MainActivity.java
to look like this:import com.calendarevents.CalendarEventsPackage;
public class MainActivity extends ReactActivity {
...
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
CalendarEventsPackage.onRequestPermissionsResult(requestCode, permissions, grantResults);
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
...
}
Require the react-native-fetch-calendar-events
module.
import RNCalendarEvents from 'react-native-fetch-calendar-events';
NOTE: Starting from
1.0.0
, this package will use Promises instead of Events.
Property | Value | Description |
---|---|---|
id | String (read-only) | Unique id for the calendar event. |
title | String | The title for the calendar event. |
startDate | Date | The start date of the calendar event. |
endDate | Date | The end date of the calendar event. |
allDay | Bool | Indicates whether the event is an all-day event. |
recurrence | String | The simple recurrence frequency of the calendar event daily , weekly , monthly , yearly or none. |
occurrenceDate | Date (read-only) | The original occurrence date of an event if it is part of a recurring series. |
isDetached | Bool | Indicates whether an event is a detached instance of a repeating event. |
location | String | The location associated with the calendar event. |
notes | String | The notes associated with the calendar event. |
alarms | Array | The alarms associated with the calendar event, as an array of alarm objects. |
Get authorization status for IOS EventStore.
RNCalendarEvents.authorizationStatus()
Returns: Promise
denied
, restricted
, authorized
or undetermined
Example:
RNCalendarEvents.authorizationStatus()
.then(status => {
// handle status
})
.catch(error => {
// handle error
});
Request authorization to IOS EventStore. Authorization must be granted before accessing calendar events.
RNCalendarEvents.authorizeEventStore()
Returns: Promise
denied
, restricted
, authorized
or undetermined
Example:
RNCalendarEvents.authorizeEventStore()
.then(status => {
// handle status
})
.catch(error => {
// handle error
});
Fetch all calendar events from EventStore (iOS) and CalendarContract (Android). Returns a promise with fulfilled with found events.
RNCalendarEvents.fetchAllEvents(startDate, endDate)
Parameters:
Returns: Promise
Example:
RNCalendarEvents.fetchAllEvents('2016-08-19T19:26:00.000Z', '2017-08-19T19:26:00.000Z')
.then(events => {
// handle events
})
.catch(error => {
// handle error
});
Creates calendar event.
RNCalendarEvents.saveEvent(title, settings);
Parameters:
Returns: Promise
Example:
RNCalendarEvents.saveEvent('title', {
location: 'location',
notes: 'notes',
startDate: '2016-10-01T09:45:00.000UTC',
endDate: '2016-10-02T09:45:00.000UTC'
})
.then(id => {
// handle success
})
.catch(error => {
// handle error
});
Give the unique calendar event ID to update an existing calendar event.
Parameters:
Returns: Promise
Example:
RNCalendarEvents.saveEvent('title', {
id: 'FE6B128F-C0D8-4FB8-8FC6-D1D6BA015CDE',
location: 'location',
notes: 'notes',
startDate: '2016-10-01T09:45:00.000UTC',
endDate: '2016-10-02T09:45:00.000UTC'
})
.then(id => {
// handle success
})
.catch(error => {
// handle error
});
Property | Value | Description |
---|---|---|
date | Date or Number | If a Date 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. |
structuredLocation | Object | (iOS Only) The location to trigger an alarm. |
Property | Value | Description |
---|---|---|
title | String | The title of the location. |
proximity | String | A value indicating how a location-based alarm is triggered. Possible values: enter , leave , none . |
radius | Number | A minimum distance from the core location that would trigger the calendar event's alarm. |
coords | Object | The geolocation coordinates, as an object with latitude and longitude properties |
Example with date:
RNCalendarEvents.saveEvent('title', {
location: 'location',
notes: 'notes',
startDate: '2016-10-01T09:45:00.000UTC',
endDate: '2016-10-02T09:45:00.000UTC',
alarms: [{
date: -1 // or absolute date - iOS Only
}]
});
Example with structuredLocation (iOS Only):
RNCalendarEvents.saveEvent('title', {
location: 'location',
notes: 'notes',
startDate: '2016-10-01T09:45:00.000UTC',
endDate: '2016-10-02T09:45:00.000UTC',
alarms: [{
structuredLocation: {
title: 'title',
proximity: 'enter',
radius: 500,
coords: {
latitude: 30.0000,
longitude: 97.0000
}
}
}]
});
Example with recurrence:
RNCalendarEvents.saveEvent('title', {
location: 'location',
notes: 'notes',
startDate: '2016-10-01T09:45:00.000UTC',
endDate: '2016-10-02T09:45:00.000UTC',
alarms: [{
date: -1 // or absolute date - iOS Only
}],
recurrence: 'daily'
});
Removes calendar event.
RNCalendarEvents.removeEvent(id);
Parameters:
Returns: Promise
Example:
RNCalendarEvents.removeEvent('FE6B128F-C0D8-4FB8-8FC6-D1D6BA015CDE')
.then(success => {
// handle success
})
.catch(error => {
// handle error
});
Removes future (recurring) calendar events.
RNCalendarEvents.removeFutureEvents(id);
Parameters:
Returns: Promise
Example:
RNCalendarEvents.removeFutureEvents('FE6B128F-C0D8-4FB8-8FC6-D1D6BA015CDE')
.then(success => {
// handle success
})
.catch(error => {
// handle error
});
FAQs
React Native module for fetching Calendar Events
The npm package react-native-fetch-calendar-events receives a total of 0 weekly downloads. As such, react-native-fetch-calendar-events popularity was classified as not popular.
We found that react-native-fetch-calendar-events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.