JSPM

  • Created
  • Published
  • Downloads 39623
  • Score
    100M100P100Q145134F
  • License MIT

A React Native package to interact with Apple HealthKit

Package Exports

  • react-native-health

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-health) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Native Health

A React Native package to interact with Apple HealthKit for iOS.

Getting Started

Automatic Installation

Install the react-native-health package from npm

yarn add react-native-health

If you are using CocoaPods you can run the following from the ios/ folder of your app

pod install

Or, if you need to manually link it, run

react-native link react-native-health

Update the info.plist file in your project

<key>NSHealthShareUsageDescription</key>
<string>Read and understand health data.</string>
<key>NSHealthUpdateUsageDescription</key>
<string>Share workout data with other apps.</string>

Manual Installation

  1. Run yarn add react-native-health
  2. In XCode, in the project navigator, right-click LibrariesAdd Files to [your project's name]
  3. Go to node_modulesreact-native-health and add RCTAppleHealthkit.xcodeproj
  4. In XCode, in the project navigator, select your project. Add libRCTAppleHealthkit.a to your project's Build PhasesLink Binary With Libraries
  5. Click RCTAppleHealthkit.xcodeproj in the project navigator and go the Build Settings tab. Make sure 'All' is toggled on (instead of 'Basic'). In the Search Paths section, look for Header Search Paths and make sure it contains both $(SRCROOT)/../../react-native/React and $(SRCROOT)/../../../React - mark both as recursive.
  6. Enable Healthkit in your application's Capabilities
  7. Compile and run

Get Started

Initialize Healthkit. This will show the Healthkit permissions prompt for any read/write permissions set in the required options object.

Due to Apple's privacy model if an app user has previously denied a specific permission then they can not be prompted again for that same permission. The app user would have to go into the Apple Health app and grant the permission to your react-native app under sources tab.

For any data that is read from Healthkit the status/error is the same for both. This privacy restriction results in having no knowledge of whether the permission was denied (make sure it's added to the permissions options object), or the data for the specific request was nil (ex. no steps recorded today).

For any data written to Healthkit an authorization error can be caught. If an authorization error occurs you can prompt the user to set the specific permission or add the permission to the options object if not present.

If new read/write permissions are added to the options object then the app user will see the Healthkit permissions prompt with the new permissions to allow.

initHealthKit requires an options object with Healthkit permission settings

let options = {
    permissions: {
        read: ["Height", "Weight", "StepCount", "DateOfBirth", "BodyMassIndex", "ActiveEnergyBurned"],
        write: ["Height", "Weight", "StepCount", "BodyMassIndex", "Biotin", "Caffeine", "Calcium", "Carbohydrates", "Chloride", "Cholesterol", "Copper", "EnergyConsumed", "FatMonounsaturated", "FatPolyunsaturated", "FatSaturated", "FatTotal", "Fiber", "Folate", "Iodine", "Iron", "Magnesium", "Manganese", "Molybdenum", "Niacin", "PantothenicAcid", "Phosphorus", "Potassium", "Protein", "Riboflavin", "Selenium", "Sodium", "Sugar", "Thiamin", "VitaminA", "VitaminB12", "VitaminB6", "VitaminC", "VitaminD", "VitaminE", "VitaminK", "Zinc", "Water"]
    }
};
import AppleHealthKit from 'react-native-health';

AppleHealthKit.initHealthKit(options: Object, (err: string, results: Object) => {
    if (err) {
        console.log("error initializing Healthkit: ", err);
        return;
    }

    // Height Example
    AppleHealthKit.getDateOfBirth(null, (err: Object, results: Object) => {
    if (this._handleHealthkitError(err, 'getDateOfBirth')) {
      return;
    }
      console.log(results)
    });

});
{
    value: '1986-09-01T00:00:00.000-0400',
    age: 29
}

Documentation

Supported Apple Permissions

The available Healthkit permissions to use with initHealthKit

Permission Healthkit Identifier Type Read Write
ActiveEnergyBurned HKQuantityTypeIdentifierActiveEnergyBurned
BasalEnergyBurned HKQuantityTypeIdentifierBasalEnergyBurned
BiologicalSex HKCharacteristicTypeIdentifierBiologicalSex
BloodAlcoholContent HKQuantityTypeIdentifierBloodAlcoholContent
BloodGlucose HKQuantityTypeIdentifierBloodGlucose
BloodPressureDiastolic HKQuantityTypeIdentifierBloodPressureDiastolic
BloodPressureSystolic HKQuantityTypeIdentifierBloodPressureSystolic
BodyMassIndex HKQuantityTypeIdentifierBodyMassIndex
BodyTemperature HKQuantityTypeIdentifierBodyTemperature
DateOfBirth HKCharacteristicTypeIdentifierDateOfBirth
DistanceCycling HKQuantityTypeIdentifierDistanceCycling
DistanceWalkingRunning HKQuantityTypeIdentifierDistanceWalkingRunning
FlightsClimbed HKQuantityTypeIdentifierFlightsClimbed
HeartRate HKQuantityTypeIdentifierHeartRate
Height HKQuantityTypeIdentifierHeight
LeanBodyMass HKQuantityTypeIdentifierLeanBodyMass
MindfulSession HKCategoryTypeIdentifierMindfulSession
RespiratoryRate HKQuantityTypeIdentifierRespiratoryRate
SleepAnalysis HKCategoryTypeIdentifierSleepAnalysis
StepCount HKQuantityTypeIdentifierStepCount
Steps HKQuantityTypeIdentifierSteps
Weight HKQuantityTypeIdentifierBodyMass
BodyFatPercentage HKQuantityTypeIdentifierBodyFatPercentage

These permissions are exported as constants of the react-native-health module.

import AppleHealthKit from 'react-native-health';

// get the available permissions from AppleHealthKit.Constants object
const PERMS = AppleHealthKit.Constants.Permissions;

// setup healthkit read/write permissions using PERMS
const healthKitOptions = {
    permissions: {
        read:  [
            PERMS.StepCount,
            PERMS.Height,
        ],
        write: [
            PERMS.StepCount
        ],
    }
};

Units

  • bpm
  • calorie
  • celsius
  • count
  • day
  • fahrenheit
  • foot
  • gram
  • hour
  • inch
  • joule
  • meter
  • mgPerdL
  • mile
  • minute
  • mmhg
  • mmolPerL
  • percent
  • pound
  • second

References

Acknowledgement

This package is a fork of rn-apple-healthkit

This package also inherits additional features from Nutrisense fork