@jonz94/capacitor-image-picker
Version:
Capacitor plugin for multiple image selection
221 lines (150 loc) • 10.4 kB
Markdown
<p align="center"><br><img src="https://user-images.githubusercontent.com/236501/85893648-1c92e880-b7a8-11ea-926d-95355b8175c7.png" width="128" height="128" /></p>
<h3 align="center">Image Picker</h3>
<p align="center"><strong><code>@jonz94/capacitor-image-picker</code></strong></p>
<p align="center">
Capacitor plugin for multiple image selection.
</p>
<p align="center">
<a href="https://github.com/jonz94/capacitor-image-picker/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/jonz94/capacitor-image-picker/ci.yml?branch=main&logo=github&style=flat-square" /></a>
<a href="https://www.npmjs.com/package/@jonz94/capacitor-image-picker"><img src="https://img.shields.io/npm/l/@jonz94/capacitor-image-picker?style=flat-square" /></a>
<a href="https://www.npmjs.com/package/@jonz94/capacitor-image-picker"><img src="https://img.shields.io/npm/v/@jonz94/capacitor-image-picker?style=flat-square" /></a>
</p>
## Install
```bash
npm install @jonz94/capacitor-image-picker
npx cap sync
```
## iOS
### Native Dependencies Setup
This plugin uses [a forked version](https://github.com/jonz94/YPImagePicker) of [YPImagePicker](https://github.com/Yummypets/YPImagePicker) under the hood.
In order to use this plugin, you need to manually modified `ios/App/Podfile` as following:
```diff
target 'App' do
capacitor_pods
# Add your Pods here
+ pod 'YPImagePicker', :git => 'https://github.com/jonz94/YPImagePicker.git', :tag => '5.2.2.0'
end
```
After modified `ios/App/Podfile`, make sure to run `pod update` command to sync up the iOS project.
### Permissions
iOS requires the following usage description be added and filled out for your app in `Info.plist`:
- `NSPhotoLibraryUsageDescription` (`Privacy - Photo Library Usage Description`)
Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) in the [iOS Guide](https://capacitorjs.com/docs/ios) for more information on setting iOS permissions in Xcode.
## Android
### Native Dependencies Setup
This plugin uses [a forked version](https://github.com/jonz94/TedImagePicker) of [TedImagePicker](https://github.com/ParkSangGwon/TedImagePicker) under the hood.
#### Setup [JitPack](https://jitpack.io) Repository
Add following line to your `android/build.gradle`:
```diff
allprojects {
repositories {
google()
mavenCentral()
+ maven { url "https://jitpack.io" }
}
}
```
#### Enable Data Binding
Add following lines to your `android/app/build.gradle`:
```diff
android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
// ...
}
buildTypes {
// ...
}
+ dataBinding {
+ enabled true
+ }
}
```
#### Sync Project
After modified `android/build.gradle` and `android/app/build.gradle`, make sure to run `Sync Project with Gradle Files` in Android Studio.
### Permissions
This plugin requires the following permissions be added to your `AndroidManifest.xml`:
```xml
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
```
The storage permissions are for reading photo files.
Read about [Setting Permissions](https://capacitorjs.com/docs/android/configuration#setting-permissions) in the [Android Guide](https://capacitorjs.com/docs/android) for more information on setting Android permissions.
## Configuration
No configuration required for this plugin.
## Usage
```typescript
import { ImagePicker } from '@jonz94/capacitor-image-picker';
const pickSingleImage = async () => {
const { images } = await ImagePicker.present();
// console.log(images[0]);
return images[0];
}
const pickMultipleImages = async () => {
const { images } = await ImagePicker.present({ limit: 10 });
// console.log(images);
return images;
}
const pickMultipleImagesWithCustomText = async () => {
const { images } = await ImagePicker.present({
limit: 10,
surpassLimitMessage: 'You cannot select more than %d images.',
titleText: 'Pick a image',
albumsTitleText: 'Chose an album',
libraryTitleText: 'Click here to change library',
cancelText: 'Go Back',
doneText: 'OK',
});
// console.log(images);
return images;
}
```
## API
<docgen-index>
* [`present(...)`](#present)
* [Interfaces](#interfaces)
</docgen-index>
<docgen-api>
<!--Update the source file JSDoc comments and rerun docgen to update the docs below-->
### present(...)
```typescript
present(options?: PresentOptions | undefined) => Promise<Images>
```
| Param | Type |
| ------------- | --------------------------------------------------------- |
| **`options`** | <code><a href="#presentoptions">PresentOptions</a></code> |
**Returns:** <code>Promise<<a href="#images">Images</a>></code>
--------------------
### Interfaces
#### Images
| Prop | Type | Description | Since |
| ------------ | -------------------- | ------------------------------- | ----- |
| **`images`** | <code>Image[]</code> | Array of all the picked images. | 1.0.0 |
#### Image
| Prop | Type | Description | Since |
| -------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | ----- |
| **`path`** | <code>string</code> | The file path of the image. | 1.0.0 |
| **`webPath`** | <code>string</code> | webPath returns a path that can be used to set the src attribute of an image for efficient loading and rendering. | 1.0.0 |
| **`mimeType`** | <code>string</code> | The mime type of the image. | 1.0.0 |
#### PresentOptions
| Prop | Type | Description | Default | Since |
| ------------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- | ----- |
| **`limit`** | <code>number</code> | Maximum number of images the user will be able to choose. Note: If this is set to 1, upon selection of a single image. | <code>1</code> | 1.0.0 |
| **`surpassLimitMessage`** | <code>string</code> | The message when user select more than maximum number of pictures. This message will not occur when `limit` is 1. Note: The message **MUST INCLUDE ONE AND ONLY ONE `%d`** as a placeholder for showing the value of `limit`. | <code>"You can only select %d images."</code> | 1.0.0 |
| **`titleText`** | <code>string</code> | Android only: The title of the image picker. | <code>"Select Image"</code> | 1.0.0 |
| **`albumAllText`** | <code>string</code> | Android only: name of the all photos album. | <code>"All"</code> | 1.2.0 |
| **`libraryTitleText`** | <code>string</code> | iOS only: The title of the library. | <code>"Library"</code> | 1.0.0 |
| **`albumsTitleText`** | <code>string</code> | iOS only: The title of the albums. | <code>"Albums"</code> | 1.0.0 |
| **`cancelText`** | <code>string</code> | iOS only: The text to display on the cancel button. Note: on Android, the cancel button is shown as icon-only back button with no text. | <code>"Cancel"</code> | 1.0.0 |
| **`doneText`** | <code>string</code> | The text to display on the done button. | <code>"Done"</code> | 1.0.0 |
</docgen-api>
## Changelog
See [CHANGELOG.md](https://github.com/jonz94/capacitor-image-picker/blob/main/CHANGELOG.md).
## License
See [LICENSE](https://github.com/jonz94/capacitor-image-picker/blob/main/LICENSE).
## Credits
- [EinfachHans's Advanced ImagePicker Cordova Plugin](https://github.com/EinfachHans/cordova-plugin-advanced-imagepicker) inspires this Capacitor plugin.
- [YPImagePicker](https://github.com/Yummypets/YPImagePicker) provides iOS implementation.
- [TedImagePicker](https://github.com/ParkSangGwon/TedImagePicker) provides Android implementation.
- [Official Capacitor Camera Plugin](https://github.com/ionic-team/capacitor-plugins/blob/%40capacitor/camera%404.1.2/camera/ios/Plugin/CameraPlugin.swift#L518-L527) provides `saveTemporaryImage()` implementation on iOS.
- [Capawesome's Capacitor File Picker Plugin](https://github.com/capawesome-team/capacitor-file-picker/blob/v0.5.1/ios/Plugin/FilePicker.swift#L37-L46) provides `getMimeTypeFromURL()` implementation on iOS.