Skip to content

Commit f3ef08a

Browse files
ANKUR DWIVEDIANKUR DWIVEDI
ANKUR DWIVEDI
authored and
ANKUR DWIVEDI
committed
added checks parameter
1 parent 0048fb9 commit f3ef08a

File tree

7 files changed

+13
-3
lines changed

7 files changed

+13
-3
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ To use the SDK, you need to provide it with a few configuration parameters. The
209209
}
210210
]
211211
}"
212+
[checks]="'\'request.folder\' : \'sample-folder/\''" // To run server side checks before uploading files. Notice the quotes around request.folder and sample-folder.
212213
></ik-upload>
213214
```
214215

sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "imagekitio-angular",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",

sdk/projects/imagekitio-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "imagekitio-angular",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"peerDependencies": {
55
"@angular/common": ">=12.2.0",
66
"@angular/core": ">=12.2.0",

sdk/projects/imagekitio-angular/src/lib/ik-upload/ik-upload.component.ts

+7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export class IkUploadComponent implements AfterViewInit {
3737
@Input('onUploadStart') onUploadStart: (e: HTMLInputEvent) => void;
3838
@Input('onUploadProgress') onUploadProgress: (e: ProgressEvent) => void;
3939
@Input('transformation') transformation: Object; //optional
40+
@Input('checks') checks: string; //optional
4041
fileToUpload: File = null;
4142
xhr: XMLHttpRequest;
4243

@@ -76,6 +77,7 @@ export class IkUploadComponent implements AfterViewInit {
7677
onError: this.onError,
7778
onSuccess: this.onSuccess,
7879
transformation: this.transformation,
80+
checks: this.checks
7981
}
8082

8183
// Custom validation
@@ -250,6 +252,11 @@ export class IkUploadComponent implements AfterViewInit {
250252
if (options.transformation !== undefined) {
251253
Object.assign(params, { transformation: options.transformation });
252254
}
255+
256+
if (options.checks !== undefined) {
257+
Object.assign(params, { checks: options.checks });
258+
}
259+
253260
return params;
254261
}
255262
}

sdk/projects/imagekitio-angular/src/lib/imagekitio-angular.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Injectable } from '@angular/core';
22
import ImageKit from 'imagekit-javascript';
3-
const SDK_VERSION = '5.0.0';
3+
const SDK_VERSION = '5.1.0';
44
export interface Lqip {
55
readonly active: boolean;
66
readonly quality: number;

sdk/projects/imagekitio-angular/src/lib/utility/ik-type-def-collection.ts

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface IkUploadComponentOptions {
5555
validateFile?: Function;
5656
xhr?: XMLHttpRequest;
5757
transformation?: Object;
58+
checks?: string;
5859
}
5960

6061
export interface AuthResponse {

sdk/src/app/app.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ <h1>Hi! This is an ImageKit Angular SDK Demo!</h1>
9292
[onUploadStart]="onUploadStartFunction"
9393
[onUploadProgress]="onUploadProgressFunction"
9494
[authenticator]="authenticator"
95+
[checks]="'\'request.folder\' : \'sample-folder/\''"
9596
class="file-upload-ik">
9697
</ik-upload>
9798
<button (click)="onAbortFunction()">Abort</button>

0 commit comments

Comments
 (0)