mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-07 23:03:19 +08:00
fcda5ffcab
This reverts commit 8b53c04dc5
.
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
|
|
|
declare const window: any;
|
|
|
|
/**
|
|
* @name File Path
|
|
* @description
|
|
*
|
|
* This plugin allows you to resolve the native filesystem path for Android content URIs and is based on code in the aFileChooser library.
|
|
*
|
|
* @usage
|
|
* ```typescript
|
|
* import { FilePath } from '@ionic-native/file-path/ngx';
|
|
*
|
|
* constructor(private filePath: FilePath) { }
|
|
*
|
|
* ...
|
|
*
|
|
* this.filePath.resolveNativePath(path)
|
|
* .then(filePath => console.log(filePath))
|
|
* .catch(err => console.log(err));
|
|
*
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
pluginName: 'FilePath',
|
|
plugin: 'cordova-plugin-filepath',
|
|
pluginRef: 'window.FilePath',
|
|
repo: 'https://github.com/hiddentao/cordova-plugin-filepath',
|
|
platforms: ['Android']
|
|
})
|
|
@Injectable()
|
|
export class FilePath extends IonicNativePlugin {
|
|
/**
|
|
* Resolve native path for given content URL/path.
|
|
* @param {string} path Content URL/path.
|
|
* @returns {Promise<string>}
|
|
*/
|
|
@Cordova()
|
|
resolveNativePath(path: string): Promise<string> {
|
|
return;
|
|
}
|
|
}
|