@greatapps/common 1.1.453 → 1.1.454
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import imageCompression from "browser-image-compression";
|
|
2
|
-
import { TARGET_FILE_SIZE_MB } from "../constants/image.constants";
|
|
3
2
|
async function compressImage(file, options = {}) {
|
|
4
|
-
const { maxSizeMB =
|
|
3
|
+
const { maxSizeMB = 1, maxWidthOrHeight = 1920 } = options;
|
|
5
4
|
if (file.size <= maxSizeMB * 1024 * 1024) {
|
|
6
5
|
return file;
|
|
7
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/modules/images/utils/compress-image.ts"],"sourcesContent":["import imageCompression from 'browser-image-compression'\nimport type { CompressImageOptions } from '../types/image.type'\
|
|
1
|
+
{"version":3,"sources":["../../../../src/modules/images/utils/compress-image.ts"],"sourcesContent":["import imageCompression from 'browser-image-compression'\nimport type { CompressImageOptions } from '../types/image.type'\n\nexport async function compressImage(\n file: File,\n options: CompressImageOptions = {}\n): Promise<File> {\n const { maxSizeMB = 1, maxWidthOrHeight = 1920 } = options\n\n if (file.size <= maxSizeMB * 1024 * 1024) {\n return file\n }\n\n return imageCompression(file, {\n maxSizeMB,\n maxWidthOrHeight,\n useWebWorker: true,\n fileType: file.type as 'image/jpeg' | 'image/png' | 'image/webp',\n })\n}\n"],"mappings":"AAAA,OAAO,sBAAsB;AAG7B,eAAsB,cACpB,MACA,UAAgC,CAAC,GAClB;AACf,QAAM,EAAE,YAAY,GAAG,mBAAmB,KAAK,IAAI;AAEnD,MAAI,KAAK,QAAQ,YAAY,OAAO,MAAM;AACxC,WAAO;AAAA,EACT;AAEA,SAAO,iBAAiB,MAAM;AAAA,IAC5B;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd,UAAU,KAAK;AAAA,EACjB,CAAC;AACH;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import imageCompression from 'browser-image-compression'
|
|
2
2
|
import type { CompressImageOptions } from '../types/image.type'
|
|
3
|
-
import { TARGET_FILE_SIZE_MB } from '../constants/image.constants'
|
|
4
3
|
|
|
5
4
|
export async function compressImage(
|
|
6
5
|
file: File,
|
|
7
6
|
options: CompressImageOptions = {}
|
|
8
7
|
): Promise<File> {
|
|
9
|
-
const { maxSizeMB =
|
|
8
|
+
const { maxSizeMB = 1, maxWidthOrHeight = 1920 } = options
|
|
10
9
|
|
|
11
10
|
if (file.size <= maxSizeMB * 1024 * 1024) {
|
|
12
11
|
return file
|