mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-14 04:05:23 +08:00
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
|
|
import { Observable } from 'rxjs/Observable';
|
|
/**
|
|
* @name Shake
|
|
* @description Handles shake gesture
|
|
* @usage
|
|
* ```typescript
|
|
* import { Shake } from '@ionic-native/shake';
|
|
*
|
|
* constructor(private shake: Shake) { }
|
|
*
|
|
* ...
|
|
*
|
|
* const watch = this.shake.startWatch(60).subscribe(() => {
|
|
* // do something
|
|
* });
|
|
*
|
|
* watch.unsubscribe();
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
pluginName: 'Shake',
|
|
plugin: 'cordova-plugin-shake',
|
|
pluginRef: 'shake',
|
|
repo: 'https://github.com/leecrossley/cordova-plugin-shake',
|
|
platforms: ['iOS']
|
|
})
|
|
@Injectable()
|
|
export class Shake extends IonicNativePlugin {
|
|
/**
|
|
* Watch for shake gesture
|
|
* @param sensitivity {number} Optional sensitivity parameter. Defaults to 40
|
|
* @returns {Observable<any>}
|
|
*/
|
|
@Cordova({
|
|
observable: true,
|
|
clearFunction: 'stopWatch',
|
|
successIndex: 0,
|
|
errorIndex: 2
|
|
})
|
|
startWatch(sensitivity?: number): Observable<any> { return; }
|
|
|
|
}
|