当前位置: 首页 > 软件库 > 手机/移动开发 > >

nativescript-health-data

授权协议 MIT License
开发语言 JavaScript TypeScript
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 颛孙嘉玉
操作系统 iOS
开源组织
适用人群 未知
 软件概览

Health Data plugin for NativeScript

This is a NativeScript plugin that abstracts Apple HealthKit and Google Fit to read health data from the user's device.

Prerequisites

Android

Google Fit API Key - Go to the Google Developers Console, create a project, and enable the Fitness API.Then under Credentials, create a Fitness API OAuth2 client ID for an Android App (select User data and press the What credentials do I need? button).If you are using Linux/maxOS, generate your SHA1-key with the code below.

keytool -exportcert -keystore path-to-debug-or-production-keystore -list -v

Note that the default (debug) keystore password is empty.

iOS

Make sure you enable the HealthKit entitlement in your app ID.

Installation

Install the plugin using the NativeScript CLI:

tns plugin add nativescript-health-data

API

The examples below are all in TypeScript, and the demo was developed in Nativescript w/ Angular.

This is how you can import and instantiate the plugin, all examples expect this setup:

import { AggregateBy, HealthData, HealthDataType } from "nativescript-health-data";

export class MyHealthyClass {
  private healthData: HealthData;

  constructor() {
    this.healthData = new HealthData();
  }
}

isAvailable

This tells you whether or not the device supports Health Data. On iOS this is probably always true.On Android the user will be prompted to (automatically) update their Play Services version in case it's not sufficiently up to date.If you don't want this behavior, pass false to this function, as shown below.

this.healthData.isAvailable(false)
    .then(available => console.log(available));

isAuthorized

This function (and the next one) takes an Array of HealthDataType's. Each of those has a name and an accessType.

  • The name can be one of the 'Available Data Types'.
  • The accessType can be one of read, write, or readAndWrite (note that this plugin currently only supports reading data, but that will change).

iOS is a bit silly here: if you've only requested 'read' access, you'll never get a true response from this method. Details here.

this.healthData.isAuthorized([<HealthDataType>{name: "steps", accessType: "read"}])
    .then(authorized => console.log(authorized));

requestAuthorization

This function takes the same argument as isAuthorized, and will trigger a consent screen in case the user hasn't previously authorized your app to access any of the passed HealthDataType's.

Note that this plugin currently only supports reading data, but that will change.

const types: Array<HealthDataType> = [
	{name: "height", accessType: "write"},
	{name: "weight", accessType: "readAndWrite"},
	{name: "steps", accessType: "read"},
	{name: "distance", accessType: "read"}
];

this.healthData.requestAuthorization(types)
    .then(authorized => console.log(authorized))
    .catch(error => console.log("Request auth error: ", error));

query

Mandatory properties are startData, endDate, and dataType.The dataType must be one of the 'Available Data Types'.

By default data is not aggregated, so all individual datapoints are returned.This plugin however offers a way to aggregate the data by either hour, day, or sourceAndDay,the latter will enable you to read daily data per source (Fitbit, Nike Run Club, manual entry, etc).

If you didn't run requestAuthorization before running query,the plugin will run requestAuthorization for you (for the requested dataType). You're welcome. ��

this.healthData.query(
    {
      startDate: new Date(new Date().getTime() - 3 * 24 * 60 * 60 * 1000), // 3 days ago
      endDate: new Date(), // now
      dataType: "steps", // equal to the 'name' property of 'HealthDataType'
      unit: "count", // make sure this is compatible with the 'dataType' (see below)
      aggregateBy: "day", // optional, one of: "hour", "day", "sourceAndDay"
      sortOrder: "desc" // optional, default "asc"
    })
    .then(result => console.log(JSON.stringify(result)))
    .catch(error => this.resultToShow = error);

startMonitoring (iOS only, for now)

If you want to be notified when health data was changed, you can monitor specific types.This even works when your app is in the background, with enableBackgroundUpdates: true.Note that iOS will wake up your app so you can act upon this notification (in the onUpdate function by fi. querying recent changes to this data type),but in return you are responsible for telling iOS you're done. So make sure you invoke the completionHandler as shown below.

Not all data types support backgroundUpdateFrequency: "immediate",so your app may not always be invoked immediately when data is added/deleted in HealthKit.

Background notifications probably don't work on the iOS simulator, so please test those on a real device.

this.healthData.startMonitoring(
    {
      dataType: "heartRate",
      enableBackgroundUpdates: true,
      backgroundUpdateFrequency: "immediate",
      onUpdate: (completionHandler: () => void) => {
        console.log("Our app was notified that health data changed, so querying...");
        this.getData("heartRate", "count/min").then(() => completionHandler());
      }
    })
    .then(() => this.resultToShow = `Started monitoring heartRate`)
    .catch(error => this.resultToShow = error);

stopMonitoring (iOS only, for now)

It's best to call this method in case you no longer wish to receive notifications when health data changes.

this.healthData.stopMonitoring(
    {
      dataType: "heartRate",
    })
    .then(() => this.resultToShow = `Stopped monitoring heartRate`)
    .catch(error => this.resultToShow = error);

Available Data Types

With version 1.0.0 these are the supported types of data you can read. Also, make sure you pass in the correct unit.

Note that you are responsible for passing the correct unit, although there's only 1 option for each type. Well actually, the unit is ignored on Android at the moment, and on iOS there are undocumented types you can pass in (fi. mi for distance).

The reason is I intend to support more units per type, but that is yet to be implemented... so it's for the sake of future backward-compatibility! ��

TypeOfData Unit GoogleFit Data Type Apple HealthKit Data Type
distance m TYPE_DISTANCE_DELTA HKQuantityTypeIdentifierDistanceWalkingRunning
steps count TYPE_STEP_COUNT_DELTA HKQuantityTypeIdentifierStepCount
calories count TYPE_CALORIES_EXPENDED HKQuantityTypeIdentifierActiveEnergyBurned
height m TYPE_HEIGHT HKQuantityTypeIdentifierHeight
weight kg TYPE_WEIGHT HKQuantityTypeIdentifierBodyMass
heartRate count/min TYPE_HEART_RATE_BPM HKQuantityTypeIdentifierHeartRate
fatPercentage % TYPE_BODY_FAT_PERCENTAGE HKQuantityTypeIdentifierBodyFatPercentage

Credits

  • Filipe Mendes for a superb first version of this repo, while working for SPMS, Shared Services for Ministry of Health (of Portugal). He kindly transferred this repo to me when he no longer had time to maintain it.
  • Daniel Leal, for a great PR.
 相关资料
  • Health Monitor Laravel Server & App Health Monitor and Notifier This package checks if the application resources are running as they should and creates a service status panel. It has the following mai

  • 系统管理员可以利用Health Monitor 去监控网络中的每一台工作站PC或者服务器,一旦出现问题,它可以用邮件或者短信息的方式通知你。你还可以自行指定让它监控哪些组件和服务,比如CPU利 用率、剩余硬盘空间、可用内存数量等。文件夹或者文件的变动也会被记录在案,所有的监测结果会被保存在一个log文件中。

  • Asthma Health 是用于研究哮喘的移动应用,它能帮助人们更加深入地认识哮喘,并且能帮助制定治疗计划,避免复发。此应用程序提交了大量的调查报告,从而使人们更好地了解到哮喘的触发条件,而且它能连接到 HealthKit 去跟踪吸入器的使用情况。

  • MicroProfile Health 是 MicroProfile 的系统健康检查规范,主要目标是作为以自动化流程维持计算节点状态的云基础设施环境,它用于从另一个机器(比如 Kubernetes 服务控制器)探测计算节点的状态。 在此方案中,运行状况检查用于确定是否需要丢弃(终止、关闭)计算节点,并最终由另一个(健康)实例替换。 解决方案: 健康检查协议和连接格式(wireformat) 用于实

  • GNU Health 是一个免费的健康和医院信息系统,提供以下功能: 电子医疗档案 医院信息系统 健康信息系统

  • NGINX Plus supports Active Health Checks, To use active health checks in the Ingress controller:1. HTTP Readiness Probe in the templates of your application pods apiVersion: apps/v1 kind: Deployment m