Removed pin-dialog - unmaintained

This commit is contained in:
Max Lynch 2021-09-13 12:23:59 -05:00
parent 7ecf658582
commit f0f89f50ae

View File

@ -1,54 +0,0 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Pin Dialog
* @description
* PhoneGap numeric password dialog plugin for Android and iOS.
*
* Requires Cordova plugin: `cordova-plugin-pin-dialog`. For more info, please see the [Pin Dialog plugin docs](https://github.com/Paldom/PinDialog).
*
*
*
* @usage
* ```typescript
* import { PinDialog } from '@ionic-native/pin-dialog/ngx';
*
*
* constructor(private pinDialog: PinDialog) { }
*
* ...
*
* this.pinDialog.prompt('Enter your PIN', 'Verify PIN', ['OK', 'Cancel'])
* .then(
* (result: any) => {
* if (result.buttonIndex == 1) console.log('User clicked OK, value is: ', result.input1);
* else if(result.buttonIndex == 2) console.log('User cancelled');
* }
* );
* ```
*/
@Plugin({
pluginName: 'PinDialog',
plugin: 'cordova-plugin-pin-dialog',
pluginRef: 'plugins.pinDialog',
repo: 'https://github.com/Paldom/PinDialog',
platforms: ['Android', 'iOS'],
})
@Injectable()
export class PinDialog extends IonicNativePlugin {
/**
* Show pin dialog
* @param {string} message Message to show the user
* @param {string} title Title of the dialog
* @param {string[]} buttons Buttons to show
* @returns {Promise<{ buttonIndex: number, input1: string }>}
*/
@Cordova({
successIndex: 1,
errorIndex: 4, // no error callback
})
prompt(message: string, title: string, buttons: string[]): Promise<{ buttonIndex: number; input1: string }> {
return;
}
}