mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-14 04:05:23 +08:00
75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
|
|
|
/**
|
|
* @name File Opener
|
|
* @description
|
|
* This plugin will open a file on your device file system with its default application.
|
|
*
|
|
* @usage
|
|
* ```typescript
|
|
* import { FileOpener } from '@ionic-native/file-opener';
|
|
*
|
|
* constructor(private fileOpener: FileOpener) { }
|
|
*
|
|
* ...
|
|
*
|
|
* this.fileOpener.open('path/to/file.pdf', 'application/pdf')
|
|
* .then(() => console.log('File is opened'))
|
|
* .catch(e => console.log('Error opening file', e));
|
|
*
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
pluginName: 'FileOpener',
|
|
plugin: 'cordova-plugin-file-opener2',
|
|
pluginRef: 'cordova.plugins.fileOpener2',
|
|
repo: 'https://github.com/pwlin/cordova-plugin-file-opener2',
|
|
platforms: ['Android', 'iOS', 'Windows', 'Windows Phone 8']
|
|
})
|
|
@Injectable()
|
|
export class FileOpener extends IonicNativePlugin {
|
|
/**
|
|
* Open an file
|
|
* @param {string} filePath File Path
|
|
* @param {string} fileMIMEType File MIME Type
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@Cordova({
|
|
callbackStyle: 'object',
|
|
successName: 'success',
|
|
errorName: 'error'
|
|
})
|
|
open(filePath: string, fileMIMEType: string): Promise<any> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Uninstalls a package
|
|
* @param {string} packageId Package ID
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@Cordova({
|
|
callbackStyle: 'object',
|
|
successName: 'success',
|
|
errorName: 'error'
|
|
})
|
|
uninstall(packageId: string): Promise<any> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Check if an app is already installed
|
|
* @param {string} packageId Package ID
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@Cordova({
|
|
callbackStyle: 'object',
|
|
successName: 'success',
|
|
errorName: 'error'
|
|
})
|
|
appIsInstalled(packageId: string): Promise<any> {
|
|
return;
|
|
}
|
|
}
|