README.md 6.58 KB
Newer Older
Greg Wilson's avatar
Greg Wilson committed
1
# react-native-apple-healthkit
Greg Wilson's avatar
Greg Wilson committed
2 3
A React Native bridge module for interacting with [Apple HealthKit] data. 

Greg Wilson's avatar
Greg Wilson committed
4
![Alt text](https://devimages.apple.com.edgekey.net/assets/elements/icons/healthkit/healthkit-64x64.png "Apple HealthKit")
Greg Wilson's avatar
Greg Wilson committed
5

Greg Wilson's avatar
Greg Wilson committed
6
#### Table of Contents
Greg Wilson's avatar
Greg Wilson committed
7 8 9 10 11 12
  * [Getting Started](#getting-started)
    * [Installation](#installation-xcode)
    * [Usage](#usage)
  * [Documentation](#documentation)
    * [Permissions](#permissions)
    * [Methods](#methods)
Greg Wilson's avatar
Greg Wilson committed
13
      * [isAvailable](#isavailable)
Greg Wilson's avatar
Greg Wilson committed
14
      * [initHealthKit](#inithealthkit)
15
      * [getLatestWeight](#getlatestweight)
Greg Wilson's avatar
Greg Wilson committed
16
      * [saveWeight](#saveweight)
17
      * [getLatestHeight](#getlatestheight)
Greg Wilson's avatar
Greg Wilson committed
18
      * [getLatestBmi](#getlatestbmi)
Greg Wilson's avatar
Greg Wilson committed
19

Greg Wilson's avatar
Greg Wilson committed
20 21 22 23 24 25 26 27 28
## Getting started

###  Installation (xcode)

1. `npm install react-native-apple-healthkit@https://github.com/GregWilson/react-native-apple-healthkit.git --save`
2. In XCode, in the project navigator, right click `Libraries``Add Files to [your project's name]`
3. Go to `node_modules``react-native-apple-healthkit` and add `RCTAppleHealthKit.xcodeproj`
4. In XCode, in the project navigator, select your project. Add `libRCTAppleHealthKit.a` to your project's `Build Phases``Link 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`.
Greg Wilson's avatar
Greg Wilson committed
29
5. Compile and have fun
Greg Wilson's avatar
Greg Wilson committed
30

Greg Wilson's avatar
Greg Wilson committed
31
### Usage
Greg Wilson's avatar
Greg Wilson committed
32

Greg Wilson's avatar
Greg Wilson committed
33 34 35
Just `require` the `react-native-apple-healthkit` module and you're ready to go!
```javascript
var AppleHealthKit = require('react-native-apple-healthkit');
Greg Wilson's avatar
Greg Wilson committed
36

Greg Wilson's avatar
Greg Wilson committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
...

let healthKitOptions = {
    permissions: {
        read: ["Height", "Weight", "Steps", "DateOfBirth", "BodyMassIndex"],
        write: ["Weight", "Steps"]
    }
};

AppleHealthKit.initHealthKit(healthKitOptions, (err, res) => {
    if(err) {
        console.log("error initializing healthkit: ", err);
        return;
    }
    console.log("HEALTHKIT INITIALIZED!");
    // ...
});


```

Greg Wilson's avatar
Greg Wilson committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
When the module has been successfully initialized you can read and write HealthKit data

```javascript
var AppleHealthKit = require('react-native-apple-healthkit');
var _ = require('lodash');

...

AppleHealthKit.getCurrentWeight(null, (err, weight) => {
    if(err){
        console.log("error getting current weight: ", err);
        return;
    }
    weight = _.round(weight,1);
    // do something with the weight...
});

...

let myWeight = 200;
AppleHealthKit.saveWeight({weight:myWeight}, (err, res) => {
    if(err){
        console.log("error saving weight to healthkit: ", err);
        return;
    }
    // weight successfully saved
});


```
Greg Wilson's avatar
Greg Wilson committed
88 89


Greg Wilson's avatar
Greg Wilson committed
90 91 92

## Documentation

Greg Wilson's avatar
Greg Wilson committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
### Permissions

The available HealthKit permissions to use with `initHealthKit` 

Read Permissions:

    Height               HKQuantityTypeIdentifierHeight
    Weight               HKQuantityTypeIdentifierBodyMass
    BodyFatPercentage    HKQuantityTypeIdentifierBodyFatPercentage
    BodyMassIndex        HKQuantityTypeIdentifierBodyMassIndex
    LeanBodyMass         HKQuantityTypeIdentifierLeanBodyMass
    Steps                HKQuantityTypeIdentifierStepCount
    Sex                  HKCharacteristicTypeIdentifierBiologicalSex
    DateOfBirth          HKCharacteristicTypeIdentifierDateOfBirth
    DietaryEnergy        HKQuantityTypeIdentifierDietaryEnergyConsumed
    ActiveEnergy         HKQuantityTypeIdentifierActiveEnergyBurned
    
Write Permissions:

    Height               HKQuantityTypeIdentifierHeight
    Weight               HKQuantityTypeIdentifierBodyMass
    BodyFatPercentage    HKQuantityTypeIdentifierBodyFatPercentage
    BodyMassIndex        HKQuantityTypeIdentifierBodyMassIndex
    LeanBodyMass         HKQuantityTypeIdentifierLeanBodyMass
    Steps                HKQuantityTypeIdentifierStepCount
    DietaryEnergy        HKQuantityTypeIdentifierDietaryEnergyConsumed
    ActiveEnergy         HKQuantityTypeIdentifierActiveEnergyBurned
        
Greg Wilson's avatar
Greg Wilson committed
121 122
### Methods

Greg Wilson's avatar
Greg Wilson committed
123 124
#### **`isAvailable`** 
check if HealthKit is available on the device
Greg Wilson's avatar
Greg Wilson committed
125 126 127 128 129 130 131
```javascript
AppleHealthKit.isAvailable((err: string, available: bool) => {
    if(available){
        // ...
    }
});
```
Greg Wilson's avatar
Greg Wilson committed
132
___
Greg Wilson's avatar
Greg Wilson committed
133

Greg Wilson's avatar
Greg Wilson committed
134
#### **`initHealthKit`** 
Greg Wilson's avatar
Greg Wilson committed
135
initialize HealthKit. this will show the HealthKit permissions prompt for any read/write permissions that have not yet been selected by the user.
Greg Wilson's avatar
Greg Wilson committed
136 137 138 139 140

`initHealthKit` requires an options object with HealthKit permission settings.
```javascript
let healthKitOptions = {
    permissions: {
Greg Wilson's avatar
Greg Wilson committed
141 142
        read: ["Height", "Weight", "Steps", "DateOfBirth", "BodyMassIndex"],
        write: ["Weight"]
Greg Wilson's avatar
Greg Wilson committed
143 144
    }
};
Greg Wilson's avatar
Greg Wilson committed
145
```
Greg Wilson's avatar
Greg Wilson committed
146

Greg Wilson's avatar
Greg Wilson committed
147
```javascript
Greg Wilson's avatar
Greg Wilson committed
148 149 150 151 152 153 154 155 156 157
AppleHealthKit.initHealthKit(healthKitOptions: object, (err: string, res: object) => {
    if(err) {
        console.log("error initializing healthkit: ", err);
        return;
    }
    // healthkit is initialized...
    // now safe to read and write healthkit data...
});
```

Greg Wilson's avatar
Greg Wilson committed
158 159
___

160
#### **`getLatestWeight`**
Greg Wilson's avatar
Greg Wilson committed
161
get the most recent weight value
Greg Wilson's avatar
Greg Wilson committed
162
```javascript
163
AppleHealthKit.getLatestWeight(null, (err: string, weight: number) => {
Greg Wilson's avatar
Greg Wilson committed
164
    if(err){
165
        console.log("error getting latest weight: ", err);
Greg Wilson's avatar
Greg Wilson committed
166 167 168
        return;
    }
    weight = _.round(weight,1);
Greg Wilson's avatar
Greg Wilson committed
169
    // do something with the weight...
Greg Wilson's avatar
Greg Wilson committed
170 171 172
});
```

Greg Wilson's avatar
Greg Wilson committed
173 174
___

Greg Wilson's avatar
Greg Wilson committed
175 176
#### **`saveWeight`**
save a numeric weight value to HealthKit
Greg Wilson's avatar
Greg Wilson committed
177 178 179 180 181 182 183 184 185 186 187 188 189 190

`saveWeight` accepts an object containing a numeric weight value with the key *weight*:
```javascript
let saveOptions = {weight: 200}
```
```javascript
AppleHealthKit.saveWeight(saveOptions, (err, res) => {
    if(err){
        console.log("error saving weight to healthkit: ", err);
        return;
    }
    // weight successfully saved
});
```
Greg Wilson's avatar
Greg Wilson committed
191

192 193 194 195 196 197 198 199 200 201 202 203 204
___

#### **`getLatestHeight`**
get the most recent height value
```javascript
AppleHealthKit.getLatestHeight(null, (err: string, height: number) => {
    if(err){
        console.log("error getting latest height: ", err);
        return;
    }
    // do something with the height value...
});
```
Greg Wilson's avatar
Greg Wilson committed
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
___

#### **`getLatestBmi`**
get the most recent BMI data. the handler function will be called with a `bmi` object containing *value: number*, *startDate: ISO8601Timestamp*, and *endDate: ISO8601Timestamp*. The BMI value may be very old so the sample dates are provided as well. *should apply this to all other RCT types* 
```javascript
AppleHealthKit.getLatestBmi(null, (err: string, bmi: Object) => {
    if(err){
        console.log("error getting latest bmi data: ", err);
        return;
    }
    if(bmi && bmi.value){
        let d = bmi.startDate
        let val = bmi.value;
        // ...
    }
});
```


224

Greg Wilson's avatar
Greg Wilson committed
225
[Apple HealthKit]: https://developer.apple.com/healthkit/