Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IKUpload Accept Specific File Extension #61

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions sdk/lib/src/imagekitio-angular/ik-upload/ik-upload.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IkUploadComponentOptions, Dict, HTMLInputEvent } from '../utility/ik-ty
@Component({
selector: 'ik-upload',
template: `
<input *ngIf="buttonRef; else elseBlock" type="file" (change)="handleFileInput($event)" style="display:none"/>
<input *ngIf="buttonRef; else elseBlock" type="file" [accept]="acceptedExtension" (change)="handleFileInput($event)" style="display:none"/>
<ng-template #elseBlock>
<input type="file" (change)="handleFileInput($event)" />
</ng-template>
Expand All @@ -14,6 +14,7 @@ import { IkUploadComponentOptions, Dict, HTMLInputEvent } from '../utility/ik-ty
})
export class IkUploadComponent implements AfterViewInit {
@Input('fileName') fileName: string; //optional
@Input('acceptedExtension') acceptedExtension: string; //optional
@Input('useUniqueFileName') useUniqueFileName: boolean; //optional
@Input('tags') tags: Array<string>; //optional
@Input('folder') folder: string; //optional
Expand All @@ -38,9 +39,9 @@ export class IkUploadComponent implements AfterViewInit {
@Input('onUploadProgress') onUploadProgress: (e: ProgressEvent) => void;
fileToUpload: File = null;

constructor(private el: ElementRef, private imagekit: ImagekitService) {
constructor(private el: ElementRef, private imagekit: ImagekitService) {
}

ngAfterViewInit():void {
this.buttonRef && this.buttonRef.addEventListener('click', ()=>{this.el.nativeElement.children[0].click()});
}
Expand Down Expand Up @@ -73,10 +74,10 @@ export class IkUploadComponent implements AfterViewInit {
if (!this.checkCustomFileValidation(options.file)) {
return;
}

this.startIkUpload(e, options);
}

checkCustomFileValidation(file: File): boolean {
if (this.validateFile && typeof this.validateFile === 'function') {
return this.validateFile(file);
Expand All @@ -95,15 +96,15 @@ export class IkUploadComponent implements AfterViewInit {
const params = this.getUploadParams(options);
const progressCb = this.createUploadProgressMonitor(options.xhr);
const ik = this.getIkInstance();

ik.upload(params, (err, result) => {
this.handleUploadResponse(err, result, options, options.xhr, progressCb)
});
}

getIkInstance(): any {
if(this.publicKey === undefined ||
this.urlEndpoint === undefined ||
if(this.publicKey === undefined ||
this.urlEndpoint === undefined ||
this.authenticationEndpoint === undefined){
return this.imagekit.ikInstance;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ImageKitConfiguration, ImagekitService } from './imagekit.service';
})
export class ImagekitioAngularModule {

static forRoot(config: ImageKitConfiguration): ModuleWithProviders {
static forRoot(config: ImageKitConfiguration): ModuleWithProviders<any> {
return {
ngModule: ImagekitioAngularModule,
providers: [
Expand Down