npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@stridekick/react-native-google-fit

v3.1.1

Published

A React Native bridge module for interacting with Google Fit

Downloads

164

Readme

@stridekick/react-native-google-fit

npm version Downloads

A React Native bridge module for interacting with Google Fit

Changelog:

0.2.0   - getDailyDistanceSamples();
        - isAvailable();
        - isEnabled();
        - deleteWeight();
0.1.1-beta
        - getDailyStepCountSamples method compatible with Apple Healthkit module
        - started to implement JSDoc documentation

0.1.0
        - getting activity within module itself
        - fixed package name dependency
        - provided more detailed documentation

0.0.9   - Weights Save Support
        - Refactor methods to be compatible with react-native-apple-healthkit module
        - Remove 'moment.js' dependency

0.0.8   - Weights Samples support

0.0.1   - 0.0.7 Initial builds

Getting started

$ npm install react-native-google-fit --save

Enable Google Fitness API for your application

In order for your app to communicate properly with the Google Fitness API you need to enable Google Fit API in your Google API Console. Also you need to generate new client ID for your app and provide both debug and release SHA keys. Another step is to configure the consent screen, etc.

More detailed info available at https://developers.google.com/fit/android/get-api-key

Mostly Automatic installation

$ react-native link react-native-google-fit

then pass your package name to the module in MainApplication.java (google fit requires package name to save data)

new GoogleFitPackage(BuildConfig.APPLICATION_ID)

Manual installation

  1. Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import com.reactnative.googlefit.GoogleFitPackage; to the imports at the top of the file
  • Add new GoogleFitPackage(BuildConfig.APPLICATION_ID), to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
     include ':react-native-google-fit'
    project(':react-native-google-fit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-fit/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-google-fit')

USAGE

  1. import GoogleFit from 'react-native-google-fit';

  2. Authorize:

        GoogleFit.authorizeFit();
        GoogleFit.onAuthorize((result) => {
             //console.log(result);
             dispatch('AUTH SUCCESS');
        });
  1. Retrieve Steps For Period

GoogleFit.getSteps(dayStart, dayEnd);

REDUX example


   let retrieveDailySteps = () => {
       return async (dispatch) => {
           let todayStart = "2017-01-01T00:00:17.971Z"; //ISO Time String
           let dayEnd = "2017-01-01T23:59:17.971Z"; //ISO Time String
           await GoogleFit.getSteps(todayStart, dayEnd);
           await GoogleFit.observeHistory((results) => {
               if (results.length > 0) {
                   console.log(results[0].steps);
                   dispatch('SUCCESSFULLY GOT DAILY STEPS!');
               }
           });
       }
   }
  1. Retrieve Weights

let opt =   {
               unit: 'pound',										// required; default 'kg'
               startDate: "2017-01-01T00:00:17.971Z",		        // required
               endDate: (new Date()).toISOString(),				// required
               ascending: false									// optional; default false
            };

GoogleFit.getWeightSamples(opt, (err,res) => {
       console.log(res);
});
  1. Save Weights

   let opt =   {
                   value: 200,
                   date: (new Date().toISOString()),
                   unit: "pound"
               };
   GoogleFit.saveWeight(opt, (err, res)=> {
        if (err) throw 'Cant save data to the Google Fit';
   });
  1. Other methods:
observeSteps(callback); //On Step Changed Event

unsucscribeListeners(); //Put into componentWillUnmount() method to prevent leaks

getDailyDistanceSamples(options, callback); - method to get daily distance

isAvailable(callback); - Checks is GoogleFit available for current account / installed on device

isEnabled(callback); - Checks is permissions granted

deleteWeight(options, callback); - method to delete weights by options (same as in save weights)

PLANS / TODO

  • support of all Google Fit activity types
  • code refactoring
  • optimization

Copyright (c) 2017-present, Stanislav Doskalenko [email protected]

Based on Asim Malik android source code, copyright (c) 2015, thanks mate!