refactor(diagnostic):

This commit is contained in:
Guille 2016-07-08 00:54:06 +02:00
parent f8330daa8b
commit 17214ffba7

View File

@ -1,4 +1,5 @@
import {Plugin, Cordova} from './plugin';
import { Cordova, Plugin } from './plugin';
@Plugin({
plugin: 'cordova.plugins.diagnostic',
@ -10,28 +11,28 @@ export class Diagnostic {
* Checks if app is able to access device location.
*/
@Cordova()
static isLocationEnabled(): Promise<any> {return; }
static isLocationEnabled(): Promise<any> { return; }
/**
* Checks if Wifi is connected/enabled. On iOS this returns true if the device is connected to a network by WiFi. On Android and Windows 10 Mobile this returns true if the WiFi setting is set to enabled.
* On Android this requires permission. `<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />`
*/
@Cordova()
static isWifiEnabled(): Promise<any> {return; }
static isWifiEnabled(): Promise<any> { return; }
/**
* Checks if the device has a camera. On Android this returns true if the device has a camera. On iOS this returns true if both the device has a camera AND the application is authorized to use it. On Windows 10 Mobile this returns true if both the device has a rear-facing camera AND the
* application is authorized to use it.
*/
@Cordova()
static isCameraEnabled(): Promise<any> {return; }
static isCameraEnabled(): Promise<any> { return; }
/**
* Checks if the device has Bluetooth capabilities and if so that Bluetooth is switched on (same on Android, iOS and Windows 10 Mobile)
* On Android this requires permission <uses-permission android:name="android.permission.BLUETOOTH" />
*/
@Cordova()
static isBluetoothEnabled(): Promise<any> {return; }
static isBluetoothEnabled(): Promise<any> { return; }
/**
* Returns the location authorization status for the application.
@ -40,27 +41,27 @@ export class Diagnostic {
* mode - (iOS-only / optional) location authorization mode: "always" or "when_in_use". If not specified, defaults to "when_in_use".
*/
@Cordova()
static requestLocationAuthorization(mode?: string): Promise<any> {return; }
static requestLocationAuthorization(mode?: string): Promise<any> { return; }
/**
* Checks if the application is authorized to use location.
* Note for Android: this is intended for Android 6 / API 23 and above. Calling on Android 5 / API 22 and below will always return GRANTED status as permissions are already granted at installation time.
*/
@Cordova()
static isLocationAuthorized(): Promise<any> {return; }
static isLocationAuthorized(): Promise<any> { return; }
/**
* Checks if camera hardware is present on device.
*/
@Cordova()
static isCameraPresent(): Promise<any> {return; }
static isCameraPresent(): Promise<any> { return; }
/**
* Checks if the application is authorized to use the camera.
* Note for Android: this is intended for Android 6 / API 23 and above. Calling on Android 5 / API 22 and below will always return TRUE as permissions are already granted at installation time.
*/
@Cordova()
static isCameraAuthorized(): Promise<any> {return; }
static isCameraAuthorized(): Promise<any> { return; }
/**
* Checks if location mode is set to return high-accuracy locations from GPS hardware.
* Returns true if Location mode is enabled and is set to either:
@ -68,7 +69,7 @@ export class Diagnostic {
* - High accuracy = GPS hardware, network triangulation and Wifi network IDs (high and low accuracy)
*/
@Cordova()
static isGpsLocationEnabled(): Promise<any> {return; }
static isGpsLocationEnabled(): Promise<any> { return; }
/**
* Checks if location mode is set to return low-accuracy locations from network triangulation/WiFi access points.
@ -77,7 +78,7 @@ export class Diagnostic {
* - High accuracy = GPS hardware, network triangulation and Wifi network IDs (high and low accuracy)
*/
@Cordova()
static isNetworkLocationEnabled(): Promise<any> {return; }
static isNetworkLocationEnabled(): Promise<any> { return; }
/**
* Checks if remote (push) notifications are enabled.
@ -85,7 +86,7 @@ export class Diagnostic {
* On iOS <=7, returns true if app is registered for remote notifications AND alert style is not set to "None" (i.e. "Banners" or "Alerts") - same as isRegisteredForRemoteNotifications().
*/
@Cordova()
static isRemoteNotificationsEnabled(): Promise<any> {return; }
static isRemoteNotificationsEnabled(): Promise<any> { return; }
/**
* Indicates if the app is registered for remote (push) notifications on the device.
@ -93,5 +94,5 @@ export class Diagnostic {
* On iOS <=7, returns true if app is registered for remote notifications AND alert style is not set to "None" (i.e. "Banners" or "Alerts") - same as isRemoteNotificationsEnabled().
*/
@Cordova()
static isRegisteredForRemoteNotifications(): Promise<any> {return; }
static isRegisteredForRemoteNotifications(): Promise<any> { return; }
}