UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

986 lines 64.4 kB
import { ENTER } from '@angular/cdk/keycodes';
import { HttpRequest, HttpHeaders, HttpEventType, HttpResponse, HttpClient } from '@angular/common/http';
import * as i0 from '@angular/core';
import { input, inject, ElementRef, DestroyRef, Input, ViewChild, ViewEncapsulation, Component, DOCUMENT, NgZone, ChangeDetectorRef, computed, ChangeDetectionStrategy, EventEmitter, signal, booleanAttribute, numberAttribute, Output, NgModule } from '@angular/core';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { of, Observable, Subscription } from 'rxjs';
import { switchMap, map, tap, filter } from 'rxjs/operators';
import { warn } from 'ng-zorro-antd/core/logger';
import { fromEventOutsideAngular, generateClassName, toBoolean } from 'ng-zorro-antd/core/util';
import { Directionality } from '@angular/cdk/bidi';
import { Platform } from '@angular/cdk/platform';
import { NgTemplateOutlet } from '@angular/common';
import * as i3 from 'ng-zorro-antd/button';
import { NzButtonModule } from 'ng-zorro-antd/button';
import { withAnimationCheck } from 'ng-zorro-antd/core/animation';
import * as i2 from 'ng-zorro-antd/icon';
import { NzIconModule } from 'ng-zorro-antd/icon';
import * as i5 from 'ng-zorro-antd/progress';
import { NzProgressModule } from 'ng-zorro-antd/progress';
import * as i1 from 'ng-zorro-antd/tooltip';
import { NzTooltipModule } from 'ng-zorro-antd/tooltip';
import * as i4 from 'ng-zorro-antd/core/transition-patch';
import { NzI18nService } from 'ng-zorro-antd/i18n';

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */
class NzUploadBtnComponent {
    reqs = {};
    destroyed = false;
    file;
    nzId = input(...(ngDevMode ? [undefined, { debugName: "nzId" }] : /* istanbul ignore next */ []));
    options;
    onClick() {
        if (this.options.disabled || !this.options.openFileDialogOnClick) {
            return;
        }
        this.file.nativeElement.click();
    }
    // skip safari bug
    onFileDrop(e) {
        if (this.options.disabled || e.type === 'dragover') {
            e.preventDefault();
            return;
        }
        if (this.options.directory) {
            this.traverseFileTree(e.dataTransfer.items);
        }
        else {
            const files = Array.prototype.slice
                .call(e.dataTransfer.files)
                .filter((file) => this.attrAccept(file, this.options.accept));
            if (files.length) {
                this.uploadFiles(files);
            }
        }
        e.preventDefault();
    }
    onChange(e) {
        if (this.options.disabled) {
            return;
        }
        const hie = e.target;
        this.uploadFiles(hie.files);
        hie.value = '';
    }
    traverseFileTree(files) {
        const _traverseFileTree = (item, path) => {
            if (item.isFile) {
                item.file((file) => {
                    if (this.attrAccept(file, this.options.accept)) {
                        this.uploadFiles([file]);
                    }
                });
            }
            else if (item.isDirectory) {
                const dirReader = item.createReader();
                dirReader.readEntries((entries) => {
                    for (const entrieItem of entries) {
                        _traverseFileTree(entrieItem, `${path}${item.name}/`);
                    }
                });
            }
        };
        for (const file of files) {
            _traverseFileTree(file.webkitGetAsEntry(), '');
        }
    }
    attrAccept(file, acceptedFiles) {
        if (file && acceptedFiles) {
            const acceptedFilesArray = Array.isArray(acceptedFiles) ? acceptedFiles : acceptedFiles.split(',');
            const fileName = `${file.name}`;
            const mimeType = `${file.type}`;
            const baseMimeType = mimeType.replace(/\/.*$/, '');
            return acceptedFilesArray.some(type => {
                const validType = type.trim();
                if (validType.charAt(0) === '.') {
                    return (fileName
                        .toLowerCase()
                        .indexOf(validType.toLowerCase(), fileName.toLowerCase().length - validType.toLowerCase().length) !== -1);
                }
                else if (/\/\*$/.test(validType)) {
                    // This is something like an image/* mime type
                    return baseMimeType === validType.replace(/\/.*$/, '');
                }
                return mimeType === validType;
            });
        }
        return true;
    }
    attachUid(file) {
        if (!file.uid) {
            file.uid = Math.random().toString(36).substring(2);
        }
        return file;
    }
    uploadFiles(fileList) {
        let filters$ = of(Array.prototype.slice.call(fileList));
        if (this.options.filters) {
            this.options.filters.forEach(f => {
                filters$ = filters$.pipe(switchMap(list => {
                    const fnRes = f.fn(list);
                    return fnRes instanceof Observable ? fnRes : of(fnRes);
                }));
            });
        }
        filters$.subscribe({
            next: list => {
                list.forEach((file) => {
                    this.attachUid(file);
                    this.upload(file, list);
                });
            },
            error: e => {
                warn(`Unhandled upload filter error`, e);
            }
        });
    }
    upload(file, fileList) {
        if (!this.options.beforeUpload) {
            return this.post(file);
        }
        const before = this.options.beforeUpload(file, fileList);
        const successBeforeLoadHook = (processedFile) => {
            const processedFileType = Object.prototype.toString.call(processedFile);
            if (typeof processedFile !== 'boolean' &&
                (processedFileType === '[object File]' || processedFileType === '[object Blob]')) {
                processedFile.uid = file.uid; // we are sure that the file has already an uid, now nzBeforeUpload is used to transform the file, the transform file needs to have the same uid as the original file
                this.post(file, processedFile);
            }
            else if (processedFile) {
                this.post(file);
            }
        };
        const errorBeforeLoadHook = (error) => {
            warn(`Unhandled upload beforeUpload error`, error);
        };
        if (before instanceof Observable) {
            before.subscribe({
                next: successBeforeLoadHook,
                error: errorBeforeLoadHook
            });
        }
        else if (before instanceof Promise) {
            before.then(successBeforeLoadHook).catch(errorBeforeLoadHook);
        }
        else if (before) {
            return this.post(file);
        }
    }
    post(file, processedFile) {
        if (this.destroyed) {
            return;
        }
        let process$ = of(processedFile || file);
        let transformedFile;
        const opt = this.options;
        const { uid } = file;
        const { action, data, headers, transformFile } = opt;
        const args = {
            action: typeof action === 'string' ? action : '',
            name: opt.name,
            headers,
            file,
            postFile: file,
            data,
            withCredentials: opt.withCredentials,
            onProgress: opt.onProgress
                ? e => {
                    opt.onProgress(e, file);
                }
                : undefined,
            onSuccess: (ret, xhr) => {
                this.clean(uid);
                opt.onSuccess(ret, file, xhr);
            },
            onError: xhr => {
                this.clean(uid);
                opt.onError(xhr, file);
            }
        };
        if (typeof action === 'function') {
            const actionResult = action(file);
            if (actionResult instanceof Observable) {
                process$ = process$.pipe(switchMap(() => actionResult), map(res => {
                    args.action = res;
                    return file;
                }));
            }
            else {
                args.action = actionResult;
            }
        }
        if (typeof transformFile === 'function') {
            const transformResult = transformFile(file);
            process$ = process$.pipe(switchMap(() => (transformResult instanceof Observable ? transformResult : of(transformResult))), tap(newFile => (transformedFile = newFile)));
        }
        /**
         * TODO
         * All this part of code needs to be removed in v22.0.0 when we will remove the `nzTransformFile` hook
         */
        if (typeof data === 'function') {
            const dataResult = data(file);
            if (dataResult instanceof Observable) {
                process$ = process$.pipe(
                /**
                 * this is a little bit tricky but here is the explanation:
                 * Potentially, people can use the `beforeUpload` hook to transform the file, and also `nzTransformFile` hook to transform the file,
                 * if beforeUpload hook transform the file, so nzTransformFile hook must not be called, otherwise the file will be transformed twice
                 * Normally this can not happen, but it is possible until we remove the `nzTransformFile` hook
                 */
                filter(() => !processedFile), switchMap(() => dataResult), map(res => {
                    args.data = res;
                    return transformedFile ?? file;
                }));
            }
            else {
                args.data = dataResult;
            }
        }
        if (typeof headers === 'function') {
            const headersResult = headers(file);
            if (headersResult instanceof Observable) {
                process$ = process$.pipe(switchMap(() => headersResult), map(res => {
                    args.headers = res;
                    return transformedFile ?? file;
                }));
            }
            else {
                args.headers = headersResult;
            }
        }
        process$.subscribe(newFile => {
            args.postFile = newFile;
            const req$ = (opt.customRequest || this.xhr).call(this, args);
            if (!(req$ instanceof Subscription)) {
                warn(`Must return Subscription type in '[nzCustomRequest]' property`);
            }
            this.reqs[uid] = req$;
            opt.onStart(file);
        });
    }
    xhr(args) {
        const formData = new FormData();
        if (args.data) {
            Object.keys(args.data).map(key => {
                formData.append(key, args.data[key]);
            });
        }
        formData.append(args.name, args.postFile);
        if (!args.headers) {
            args.headers = {};
        }
        if (args.headers['X-Requested-With'] !== null) {
            args.headers['X-Requested-With'] = `XMLHttpRequest`;
        }
        else {
            delete args.headers['X-Requested-With'];
        }
        const req = new HttpRequest('POST', args.action, formData, {
            reportProgress: true,
            withCredentials: args.withCredentials,
            headers: new HttpHeaders(args.headers)
        });
        return this.http.request(req).subscribe({
            next: (event) => {
                if (event.type === HttpEventType.UploadProgress) {
                    if (event.total > 0) {
                        event.percent = (event.loaded / event.total) * 100;
                    }
                    args.onProgress(event, args.file);
                }
                else if (event instanceof HttpResponse) {
                    args.onSuccess(event.body, args.file, event);
                }
            },
            error: err => {
                this.abort(args.file);
                args.onError(err, args.file);
            }
        });
    }
    clean(uid) {
        const req$ = this.reqs[uid];
        if (req$ instanceof Subscription) {
            req$.unsubscribe();
        }
        delete this.reqs[uid];
    }
    abort(file) {
        if (file) {
            this.clean(file && file.uid);
        }
        else {
            Object.keys(this.reqs).forEach(uid => this.clean(uid));
        }
    }
    http = inject(HttpClient, { optional: true });
    elementRef = inject(ElementRef);
    destroyRef = inject(DestroyRef);
    constructor() {
        if (!this.http) {
            throw new Error(`Not found 'HttpClient', You can configure 'HttpClient' with 'provideHttpClient()' in your root module.`);
        }
        this.destroyRef.onDestroy(() => {
            this.destroyed = true;
            this.abort();
        });
    }
    ngOnInit() {
        // Caretaker note: `input[type=file].click()` will open a native OS file picker,
        // it doesn't require Angular to run `ApplicationRef.tick()`.
        fromEventOutsideAngular(this.elementRef.nativeElement, 'click')
            .pipe(takeUntilDestroyed(this.destroyRef))
            .subscribe(() => this.onClick());
        fromEventOutsideAngular(this.elementRef.nativeElement, 'keydown')
            .pipe(takeUntilDestroyed(this.destroyRef))
            .subscribe(event => {
            if (this.options.disabled) {
                return;
            }
            if (event.key === 'Enter' || event.keyCode === ENTER) {
                this.onClick();
            }
        });
    }
    static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadBtnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
    static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: NzUploadBtnComponent, isStandalone: true, selector: "[nz-upload-btn]", inputs: { nzId: { classPropertyName: "nzId", publicName: "nzId", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: false, isRequired: false, transformFunction: null } }, host: { listeners: { "drop": "onFileDrop($event)", "dragover": "onFileDrop($event)" }, properties: { "attr.tabindex": "\"0\"", "attr.role": "\"button\"", "class.ant-upload-disabled": "options.disabled" }, classAttribute: "ant-upload" }, viewQueries: [{ propertyName: "file", first: true, predicate: ["file"], descendants: true, static: true }], exportAs: ["nzUploadBtn"], ngImport: i0, template: "<!--\n  We explicitly bind `style.display` to avoid using an inline style\n  attribute property (which is not allowed when CSP `unsafe-inline`\n  is not specified).\n-->\n<input\n  type=\"file\"\n  [attr.id]=\"nzId()\"\n  #file\n  (change)=\"onChange($event)\"\n  [attr.accept]=\"options.accept\"\n  [attr.directory]=\"options.directory ? 'directory' : null\"\n  [attr.webkitdirectory]=\"options.directory ? 'webkitdirectory' : null\"\n  [multiple]=\"options.multiple\"\n  [style.display]=\"'none'\"\n/>\n<ng-content />\n", encapsulation: i0.ViewEncapsulation.None });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadBtnComponent, decorators: [{
            type: Component,
            args: [{ selector: '[nz-upload-btn]', exportAs: 'nzUploadBtn', host: {
                        class: 'ant-upload',
                        '[attr.tabindex]': '"0"',
                        '[attr.role]': '"button"',
                        '[class.ant-upload-disabled]': 'options.disabled',
                        '(drop)': 'onFileDrop($event)',
                        '(dragover)': 'onFileDrop($event)'
                    }, encapsulation: ViewEncapsulation.None, template: "<!--\n  We explicitly bind `style.display` to avoid using an inline style\n  attribute property (which is not allowed when CSP `unsafe-inline`\n  is not specified).\n-->\n<input\n  type=\"file\"\n  [attr.id]=\"nzId()\"\n  #file\n  (change)=\"onChange($event)\"\n  [attr.accept]=\"options.accept\"\n  [attr.directory]=\"options.directory ? 'directory' : null\"\n  [attr.webkitdirectory]=\"options.directory ? 'webkitdirectory' : null\"\n  [multiple]=\"options.multiple\"\n  [style.display]=\"'none'\"\n/>\n<ng-content />\n" }]
        }], ctorParameters: () => [], propDecorators: { file: [{
                type: ViewChild,
                args: ['file', { static: true }]
            }], nzId: [{ type: i0.Input, args: [{ isSignal: true, alias: "nzId", required: false }] }], options: [{
                type: Input
            }] } });

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */
const isImageFileType = (type) => !!type && type.indexOf('image/') === 0;
const CLASS_NAME$1 = 'ant-upload-list';
const MEASURE_SIZE = 200;
class NzUploadListComponent {
    list = [];
    listType = input('text', ...(ngDevMode ? [{ debugName: "listType" }] : /* istanbul ignore next */ []));
    locale = {};
    set items(list) {
        this.list = list;
    }
    icons;
    onPreview;
    onRemove;
    onDownload;
    previewFile;
    previewIsImage;
    iconRender = null;
    document = inject(DOCUMENT);
    destroyRef = inject(DestroyRef);
    ngZone = inject(NgZone);
    cdr = inject(ChangeDetectorRef);
    platform = inject(Platform);
    dir = inject(Directionality).valueSignal;
    class = computed(() => {
        const cls = [CLASS_NAME$1, this.generateClass(this.listType())];
        if (this.dir() === 'rtl') {
            cls.push(this.generateClass('rtl'));
        }
        return cls;
    }, ...(ngDevMode ? [{ debugName: "class" }] : /* istanbul ignore next */ []));
    showPic = computed(() => {
        return this.listType() === 'picture' || this.listType() === 'picture-card';
    }, ...(ngDevMode ? [{ debugName: "showPic" }] : /* istanbul ignore next */ []));
    itemAnimationEnter = withAnimationCheck(() => `ant-upload-${this.showPic() ? 'animate-inline' : 'animate'}-enter`);
    itemAnimationLeave = withAnimationCheck(() => `ant-upload-${this.showPic() ? 'animate-inline' : 'animate'}-leave`);
    genErr(file) {
        if (file.response && typeof file.response === 'string') {
            return file.response;
        }
        return (file.error && file.error.statusText) || this.locale.uploadError;
    }
    extname(url) {
        const temp = url.split('/');
        const filename = temp[temp.length - 1];
        const filenameWithoutSuffix = filename.split(/#|\?/)[0];
        return (/\.[^./\\]*$/.exec(filenameWithoutSuffix) || [''])[0];
    }
    isImageUrl(file) {
        if (isImageFileType(file.type)) {
            return true;
        }
        const url = (file.thumbUrl || file.url || '');
        if (!url) {
            return false;
        }
        const extension = this.extname(url);
        if (/^data:image\//.test(url) || /(webp|svg|png|gif|jpg|jpeg|jfif|bmp|dpg)$/i.test(extension)) {
            return true;
        }
        else if (/^data:/.test(url)) {
            // other file types of base64
            return false;
        }
        else if (extension) {
            // other file types which have extension
            return false;
        }
        return true;
    }
    getIconType(file) {
        if (!this.showPic()) {
            return '';
        }
        if (file.isUploading || (!file.thumbUrl && !file.url)) {
            return 'uploading';
        }
        else {
            return 'thumbnail';
        }
    }
    previewImage(file) {
        if (!isImageFileType(file.type) || !this.platform.isBrowser) {
            return of('');
        }
        const canvas = this.document.createElement('canvas');
        canvas.width = MEASURE_SIZE;
        canvas.height = MEASURE_SIZE;
        canvas.style.cssText = `position: fixed; left: 0; top: 0; width: ${MEASURE_SIZE}px; height: ${MEASURE_SIZE}px; z-index: 9999; display: none;`;
        this.document.body.appendChild(canvas);
        const ctx = canvas.getContext('2d');
        const img = new Image();
        const objectUrl = URL.createObjectURL(file);
        img.src = objectUrl;
        return fromEventOutsideAngular(img, 'load').pipe(map(() => {
            const { width, height } = img;
            let drawWidth = MEASURE_SIZE;
            let drawHeight = MEASURE_SIZE;
            let offsetX = 0;
            let offsetY = 0;
            if (width < height) {
                drawHeight = height * (MEASURE_SIZE / width);
                offsetY = -(drawHeight - drawWidth) / 2;
            }
            else {
                drawWidth = width * (MEASURE_SIZE / height);
                offsetX = -(drawWidth - drawHeight) / 2;
            }
            try {
                ctx.drawImage(img, offsetX, offsetY, drawWidth, drawHeight);
            }
            catch {
                // noop
            }
            const dataURL = canvas.toDataURL();
            this.document.body.removeChild(canvas);
            URL.revokeObjectURL(objectUrl);
            return dataURL;
        }));
    }
    genThumb() {
        if (!this.platform.isBrowser) {
            return;
        }
        const win = window;
        if (!this.showPic() ||
            typeof document === 'undefined' ||
            typeof win === 'undefined' ||
            !win.FileReader ||
            !win.File) {
            return;
        }
        this.list
            .filter(file => file.originFileObj instanceof File && file.thumbUrl === undefined)
            .forEach(file => {
            file.thumbUrl = '';
            // Caretaker note: we shouldn't use promises here since they're not cancellable.
            // A promise microtask can be resolved after the view is destroyed. Thus, running `detectChanges()`
            // will cause a runtime exception (`detectChanges()` cannot be run on destroyed views).
            const dataUrl$ = (this.previewFile ? this.previewFile(file) : this.previewImage(file.originFileObj)).pipe(takeUntilDestroyed(this.destroyRef));
            this.ngZone.runOutsideAngular(() => {
                dataUrl$.subscribe(dataUrl => {
                    this.ngZone.run(() => {
                        file.thumbUrl = dataUrl;
                        this.detectChanges();
                    });
                });
            });
        });
    }
    showDownload(file) {
        return !!(this.icons.showDownloadIcon && file.status === 'done');
    }
    fixData() {
        this.list.forEach(file => {
            file.isUploading = file.status === 'uploading';
            file.message = this.genErr(file);
            file.linkProps = typeof file.linkProps === 'string' ? JSON.parse(file.linkProps) : file.linkProps;
            file.isImageUrl = this.previewIsImage ? this.previewIsImage(file) : this.isImageUrl(file);
            file.iconType = this.getIconType(file);
            file.showDownload = this.showDownload(file);
        });
    }
    handlePreview(file, e) {
        if (!this.onPreview) {
            return;
        }
        e.preventDefault();
        return this.onPreview(file);
    }
    handleRemove(file, e) {
        e.preventDefault();
        if (this.onRemove) {
            this.onRemove(file);
        }
    }
    handleDownload(file) {
        if (typeof this.onDownload === 'function') {
            this.onDownload(file);
        }
        else if (file.url) {
            window.open(file.url);
        }
    }
    detectChanges() {
        this.fixData();
        this.cdr.detectChanges();
    }
    ngOnChanges() {
        this.fixData();
        this.genThumb();
    }
    generateClass(suffix) {
        return generateClassName(CLASS_NAME$1, suffix);
    }
    static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
    static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: NzUploadListComponent, isStandalone: true, selector: "nz-upload-list", inputs: { listType: { classPropertyName: "listType", publicName: "listType", isSignal: true, isRequired: false, transformFunction: null }, locale: { classPropertyName: "locale", publicName: "locale", isSignal: false, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: false, isRequired: false, transformFunction: null }, icons: { classPropertyName: "icons", publicName: "icons", isSignal: false, isRequired: false, transformFunction: null }, onPreview: { classPropertyName: "onPreview", publicName: "onPreview", isSignal: false, isRequired: false, transformFunction: null }, onRemove: { classPropertyName: "onRemove", publicName: "onRemove", isSignal: false, isRequired: false, transformFunction: null }, onDownload: { classPropertyName: "onDownload", publicName: "onDownload", isSignal: false, isRequired: false, transformFunction: null }, previewFile: { classPropertyName: "previewFile", publicName: "previewFile", isSignal: false, isRequired: false, transformFunction: null }, previewIsImage: { classPropertyName: "previewIsImage", publicName: "previewIsImage", isSignal: false, isRequired: false, transformFunction: null }, iconRender: { classPropertyName: "iconRender", publicName: "iconRender", isSignal: false, isRequired: false, transformFunction: null } }, host: { properties: { "class": "class()" } }, exportAs: ["nzUploadList"], usesOnChanges: true, ngImport: i0, template: "@let _listType = listType();\n@for (file of list; track file) {\n  <div class=\"ant-upload-list-{{ _listType }}-container\">\n    <div\n      class=\"ant-upload-list-item ant-upload-list-item-{{ file.status }} ant-upload-list-item-list-type-{{ _listType }}\"\n      [attr.data-key]=\"file.key\"\n      [animate.enter]=\"itemAnimationEnter()\"\n      [animate.leave]=\"itemAnimationLeave()\"\n      nz-tooltip\n      [nzTooltipTitle]=\"file.status === 'error' ? file.message : null\"\n    >\n      <ng-template #icon>\n        @switch (file.iconType) {\n          @case ('uploading') {\n            <div class=\"ant-upload-list-item-thumbnail\" [class.ant-upload-list-item-file]=\"!file.isUploading\">\n              <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n            </div>\n          }\n          @case ('thumbnail') {\n            <a\n              class=\"ant-upload-list-item-thumbnail\"\n              [class.ant-upload-list-item-file]=\"!file.isImageUrl\"\n              target=\"_blank\"\n              rel=\"noopener noreferrer\"\n              [href]=\"file.url || file.thumbUrl\"\n              (click)=\"handlePreview(file, $event)\"\n            >\n              @if (file.isImageUrl) {\n                <img class=\"ant-upload-list-item-image\" [src]=\"file.thumbUrl || file.url\" [attr.alt]=\"file.name\" />\n              } @else {\n                <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n              }\n            </a>\n          }\n          @default {\n            <div class=\"ant-upload-text-icon\">\n              <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n            </div>\n          }\n        }\n      </ng-template>\n\n      <ng-template #iconNode let-file>\n        @if (!iconRender) {\n          @switch (_listType) {\n            @case ('picture') {\n              @if (file.isUploading) {\n                <nz-icon nzType=\"loading\" />\n              } @else {\n                <nz-icon [nzType]=\"file.isImageUrl ? 'picture' : 'file'\" nzTheme=\"twotone\" />\n              }\n            }\n            @case ('picture-card') {\n              @if (file.isUploading) {\n                {{ locale.uploading }}\n              } @else {\n                <nz-icon [nzType]=\"file.isImageUrl ? 'picture' : 'file'\" nzTheme=\"twotone\" />\n              }\n            }\n            @default {\n              <nz-icon [nzType]=\"file.isUploading ? 'loading' : 'paper-clip'\" />\n            }\n          }\n        } @else {\n          <ng-template [ngTemplateOutlet]=\"iconRender\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n        }\n      </ng-template>\n\n      <ng-template #removeIcon>\n        @if (icons.showRemoveIcon) {\n          <button\n            type=\"button\"\n            nz-button\n            nzType=\"text\"\n            nzSize=\"small\"\n            (click)=\"handleRemove(file, $event)\"\n            [attr.title]=\"locale.removeFile\"\n            class=\"ant-upload-list-item-card-actions-btn\"\n          >\n            <nz-icon nzType=\"delete\" />\n          </button>\n        }\n      </ng-template>\n\n      <ng-template #downloadIcon>\n        @if (file.showDownload) {\n          <button\n            type=\"button\"\n            nz-button\n            nzType=\"text\"\n            nzSize=\"small\"\n            (click)=\"handleDownload(file)\"\n            [attr.title]=\"locale.downloadFile\"\n            class=\"ant-upload-list-item-card-actions-btn\"\n          >\n            <nz-icon nzType=\"download\" />\n          </button>\n        }\n      </ng-template>\n\n      <ng-template #downloadOrDelete>\n        @if (_listType !== 'picture-card') {\n          <span class=\"ant-upload-list-item-card-actions\" [class.picture]=\"_listType === 'picture'\">\n            <ng-template [ngTemplateOutlet]=\"downloadIcon\" />\n            <ng-template [ngTemplateOutlet]=\"removeIcon\" />\n          </span>\n        }\n      </ng-template>\n\n      <ng-template #preview>\n        @if (file.url) {\n          <a\n            target=\"_blank\"\n            rel=\"noopener noreferrer\"\n            class=\"ant-upload-list-item-name\"\n            [attr.title]=\"file.name\"\n            [href]=\"file.url\"\n            [attr.download]=\"file.linkProps && file.linkProps.download\"\n            (click)=\"handlePreview(file, $event)\"\n          >\n            {{ file.name }}\n          </a>\n        } @else {\n          <span class=\"ant-upload-list-item-name\" [attr.title]=\"file.name\" (click)=\"handlePreview(file, $event)\">\n            {{ file.name }}\n          </span>\n        }\n        <ng-template [ngTemplateOutlet]=\"downloadOrDelete\" />\n      </ng-template>\n\n      <div class=\"ant-upload-list-item-info\">\n        <span class=\"ant-upload-span\">\n          <ng-template [ngTemplateOutlet]=\"icon\" />\n          <ng-template [ngTemplateOutlet]=\"preview\" />\n        </span>\n      </div>\n      @if (!file.isUploading) {\n        @if (_listType === 'picture-card') {\n          <span class=\"ant-upload-list-item-actions\">\n            @if (icons.showPreviewIcon) {\n              <a\n                [href]=\"file.url || file.thumbUrl\"\n                target=\"_blank\"\n                rel=\"noopener noreferrer\"\n                [attr.title]=\"locale.previewFile\"\n                [style]=\"!(file.url || file.thumbUrl) ? { opacity: 0.5, 'pointer-events': 'none' } : null\"\n                (click)=\"handlePreview(file, $event)\"\n              >\n                <nz-icon nzType=\"eye\" />\n              </a>\n            }\n            @if (file.status === 'done') {\n              <ng-template [ngTemplateOutlet]=\"downloadIcon\" />\n            }\n            <ng-template [ngTemplateOutlet]=\"removeIcon\" />\n          </span>\n        }\n      } @else {\n        <div class=\"ant-upload-list-item-progress\">\n          <nz-progress [nzPercent]=\"file.percent!\" nzType=\"line\" [nzShowInfo]=\"false\" [nzStrokeWidth]=\"2\" />\n        </div>\n      }\n    </div>\n  </div>\n}\n", dependencies: [{ kind: "ngmodule", type: NzTooltipModule }, { kind: "directive", type: i1.NzTooltipDirective, selector: "[nz-tooltip]", inputs: ["nzTooltipTitle", "nzTooltipTitleContext", "nz-tooltip", "nzTooltipTrigger", "nzTooltipPlacement", "nzTooltipOrigin", "nzTooltipVisible", "nzTooltipMouseEnterDelay", "nzTooltipMouseLeaveDelay", "nzTooltipOverlayClassName", "nzTooltipOverlayStyle", "nzTooltipArrowPointAtCenter", "cdkConnectedOverlayPush", "nzTooltipColor"], outputs: ["nzTooltipVisibleChange"], exportAs: ["nzTooltip"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: NzIconModule }, { kind: "directive", type: i2.NzIconDirective, selector: "nz-icon,[nz-icon]", inputs: ["nzSpin", "nzRotate", "nzType", "nzTheme", "nzTwotoneColor", "nzIconfont"], exportAs: ["nzIcon"] }, { kind: "ngmodule", type: NzButtonModule }, { kind: "component", type: i3.NzButtonComponent, selector: "button[nz-button], a[nz-button]", inputs: ["nzBlock", "nzGhost", "nzSearch", "nzLoading", "nzDanger", "disabled", "tabIndex", "nzType", "nzShape", "nzSize"], exportAs: ["nzButton"] }, { kind: "directive", type: i4.ɵNzTransitionPatchDirective, selector: "[nz-button], [nz-icon], nz-icon, [nz-menu-item], [nz-submenu], nz-select-top-control, nz-select-placeholder, nz-input-group", inputs: ["hidden"] }, { kind: "ngmodule", type: NzProgressModule }, { kind: "component", type: i5.NzProgressComponent, selector: "nz-progress", inputs: ["nzShowInfo", "nzWidth", "nzStrokeColor", "nzSize", "nzFormat", "nzSuccessPercent", "nzPercent", "nzStrokeWidth", "nzGapDegree", "nzStatus", "nzType", "nzGapPosition", "nzStrokeLinecap", "nzSteps"], exportAs: ["nzProgress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadListComponent, decorators: [{
            type: Component,
            args: [{ selector: 'nz-upload-list', exportAs: 'nzUploadList', host: {
                        '[class]': 'class()'
                    }, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NzTooltipModule, NgTemplateOutlet, NzIconModule, NzButtonModule, NzProgressModule], template: "@let _listType = listType();\n@for (file of list; track file) {\n  <div class=\"ant-upload-list-{{ _listType }}-container\">\n    <div\n      class=\"ant-upload-list-item ant-upload-list-item-{{ file.status }} ant-upload-list-item-list-type-{{ _listType }}\"\n      [attr.data-key]=\"file.key\"\n      [animate.enter]=\"itemAnimationEnter()\"\n      [animate.leave]=\"itemAnimationLeave()\"\n      nz-tooltip\n      [nzTooltipTitle]=\"file.status === 'error' ? file.message : null\"\n    >\n      <ng-template #icon>\n        @switch (file.iconType) {\n          @case ('uploading') {\n            <div class=\"ant-upload-list-item-thumbnail\" [class.ant-upload-list-item-file]=\"!file.isUploading\">\n              <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n            </div>\n          }\n          @case ('thumbnail') {\n            <a\n              class=\"ant-upload-list-item-thumbnail\"\n              [class.ant-upload-list-item-file]=\"!file.isImageUrl\"\n              target=\"_blank\"\n              rel=\"noopener noreferrer\"\n              [href]=\"file.url || file.thumbUrl\"\n              (click)=\"handlePreview(file, $event)\"\n            >\n              @if (file.isImageUrl) {\n                <img class=\"ant-upload-list-item-image\" [src]=\"file.thumbUrl || file.url\" [attr.alt]=\"file.name\" />\n              } @else {\n                <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n              }\n            </a>\n          }\n          @default {\n            <div class=\"ant-upload-text-icon\">\n              <ng-template [ngTemplateOutlet]=\"iconNode\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n            </div>\n          }\n        }\n      </ng-template>\n\n      <ng-template #iconNode let-file>\n        @if (!iconRender) {\n          @switch (_listType) {\n            @case ('picture') {\n              @if (file.isUploading) {\n                <nz-icon nzType=\"loading\" />\n              } @else {\n                <nz-icon [nzType]=\"file.isImageUrl ? 'picture' : 'file'\" nzTheme=\"twotone\" />\n              }\n            }\n            @case ('picture-card') {\n              @if (file.isUploading) {\n                {{ locale.uploading }}\n              } @else {\n                <nz-icon [nzType]=\"file.isImageUrl ? 'picture' : 'file'\" nzTheme=\"twotone\" />\n              }\n            }\n            @default {\n              <nz-icon [nzType]=\"file.isUploading ? 'loading' : 'paper-clip'\" />\n            }\n          }\n        } @else {\n          <ng-template [ngTemplateOutlet]=\"iconRender\" [ngTemplateOutletContext]=\"{ $implicit: file }\" />\n        }\n      </ng-template>\n\n      <ng-template #removeIcon>\n        @if (icons.showRemoveIcon) {\n          <button\n            type=\"button\"\n            nz-button\n            nzType=\"text\"\n            nzSize=\"small\"\n            (click)=\"handleRemove(file, $event)\"\n            [attr.title]=\"locale.removeFile\"\n            class=\"ant-upload-list-item-card-actions-btn\"\n          >\n            <nz-icon nzType=\"delete\" />\n          </button>\n        }\n      </ng-template>\n\n      <ng-template #downloadIcon>\n        @if (file.showDownload) {\n          <button\n            type=\"button\"\n            nz-button\n            nzType=\"text\"\n            nzSize=\"small\"\n            (click)=\"handleDownload(file)\"\n            [attr.title]=\"locale.downloadFile\"\n            class=\"ant-upload-list-item-card-actions-btn\"\n          >\n            <nz-icon nzType=\"download\" />\n          </button>\n        }\n      </ng-template>\n\n      <ng-template #downloadOrDelete>\n        @if (_listType !== 'picture-card') {\n          <span class=\"ant-upload-list-item-card-actions\" [class.picture]=\"_listType === 'picture'\">\n            <ng-template [ngTemplateOutlet]=\"downloadIcon\" />\n            <ng-template [ngTemplateOutlet]=\"removeIcon\" />\n          </span>\n        }\n      </ng-template>\n\n      <ng-template #preview>\n        @if (file.url) {\n          <a\n            target=\"_blank\"\n            rel=\"noopener noreferrer\"\n            class=\"ant-upload-list-item-name\"\n            [attr.title]=\"file.name\"\n            [href]=\"file.url\"\n            [attr.download]=\"file.linkProps && file.linkProps.download\"\n            (click)=\"handlePreview(file, $event)\"\n          >\n            {{ file.name }}\n          </a>\n        } @else {\n          <span class=\"ant-upload-list-item-name\" [attr.title]=\"file.name\" (click)=\"handlePreview(file, $event)\">\n            {{ file.name }}\n          </span>\n        }\n        <ng-template [ngTemplateOutlet]=\"downloadOrDelete\" />\n      </ng-template>\n\n      <div class=\"ant-upload-list-item-info\">\n        <span class=\"ant-upload-span\">\n          <ng-template [ngTemplateOutlet]=\"icon\" />\n          <ng-template [ngTemplateOutlet]=\"preview\" />\n        </span>\n      </div>\n      @if (!file.isUploading) {\n        @if (_listType === 'picture-card') {\n          <span class=\"ant-upload-list-item-actions\">\n            @if (icons.showPreviewIcon) {\n              <a\n                [href]=\"file.url || file.thumbUrl\"\n                target=\"_blank\"\n                rel=\"noopener noreferrer\"\n                [attr.title]=\"locale.previewFile\"\n                [style]=\"!(file.url || file.thumbUrl) ? { opacity: 0.5, 'pointer-events': 'none' } : null\"\n                (click)=\"handlePreview(file, $event)\"\n              >\n                <nz-icon nzType=\"eye\" />\n              </a>\n            }\n            @if (file.status === 'done') {\n              <ng-template [ngTemplateOutlet]=\"downloadIcon\" />\n            }\n            <ng-template [ngTemplateOutlet]=\"removeIcon\" />\n          </span>\n        }\n      } @else {\n        <div class=\"ant-upload-list-item-progress\">\n          <nz-progress [nzPercent]=\"file.percent!\" nzType=\"line\" [nzShowInfo]=\"false\" [nzStrokeWidth]=\"2\" />\n        </div>\n      }\n    </div>\n  </div>\n}\n" }]
        }], propDecorators: { listType: [{ type: i0.Input, args: [{ isSignal: true, alias: "listType", required: false }] }], locale: [{
                type: Input
            }], items: [{
                type: Input
            }], icons: [{
                type: Input
            }], onPreview: [{
                type: Input
            }], onRemove: [{
                type: Input
            }], onDownload: [{
                type: Input
            }], previewFile: [{
                type: Input
            }], previewIsImage: [{
                type: Input
            }], iconRender: [{
                type: Input
            }] } });

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */
const CLASS_NAME = 'ant-upload';
class NzUploadComponent {
    static ngAcceptInputType_nzShowUploadList;
    cdr = inject(ChangeDetectorRef);
    i18n = inject(NzI18nService);
    destroyRef = inject(DestroyRef);
    document = inject(DOCUMENT);
    platform = inject(Platform);
    dir = inject(Directionality).valueSignal;
    uploadComp;
    listComp;
    locale;
    // #region fields
    nzId = input(...(ngDevMode ? [undefined, { debugName: "nzId" }] : /* istanbul ignore next */ []));
    nzType = 'select';
    nzLimit = 0;
    nzSize = 0;
    nzFileType;
    nzAccept;
    nzAction;
    nzDirectory = false;
    nzOpenFileDialogOnClick = true;
    nzBeforeUpload;
    nzCustomRequest;
    nzData;
    nzFilter = [];
    nzFileList = [];
    nzDisabled = false;
    nzHeaders;
    nzListType = 'text';
    nzMultiple = false;
    nzName = 'file';
    _showUploadList = true;
    set nzShowUploadList(value) {
        this._showUploadList = typeof value === 'boolean' ? toBoolean(value) : value;
    }
    get nzShowUploadList() {
        return this._showUploadList;
    }
    nzShowButton = true;
    nzWithCredentials = false;
    nzRemove;
    nzPreview;
    nzPreviewFile;
    nzPreviewIsImage;
    /**
     * @deprecated will be removed in v22.0.0
     * Use `nzBeforeUpload` instead.
     */
    nzTransformFile;
    nzDownload;
    nzIconRender = null;
    nzFileListRender = null;
    nzMaxCount = input(...(ngDevMode ? [undefined, { debugName: "nzMaxCount" }] : /* istanbul ignore next */ []));
    nzChange = new EventEmitter();
    nzFileListChange = new EventEmitter();
    _btnOptions;
    zipOptions() {
        if (typeof this.nzShowUploadList === 'boolean' && this.nzShowUploadList) {
            this.nzShowUploadList = {
                showPreviewIcon: true,
                showRemoveIcon: true,
                showDownloadIcon: true
            };
        }
        // filters
        const filters = this.nzFilter.slice();
        if (this.nzMultiple && this.nzLimit > 0 && filters.findIndex(w => w.name === 'limit') === -1) {
            filters.push({
                name: 'limit',
                fn: (fileList) => fileList.slice(-this.nzLimit)
            });
        }
        if (this.nzSize > 0 && filters.findIndex(w => w.name === 'size') === -1) {
            filters.push({
                name: 'size',
                fn: (fileList) => fileList.filter(w => w.size / 1024 <= this.nzSize)
            });
        }
        if (this.nzFileType && this.nzFileType.length > 0 && filters.findIndex(w => w.name === 'type') === -1) {
            const types = this.nzFileType.split(',');
            filters.push({
                name: 'type',
                fn: (fileList) => fileList.filter(w => ~types.indexOf(w.type))
            });
        }
        this._btnOptions = {
            disabled: this.nzDisabled,
            accept: this.nzAccept,
            action: this.nzAction,
            directory: this.nzDirectory,
            openFileDialogOnClick: this.nzOpenFileDialogOnClick,
            beforeUpload: this.nzBeforeUpload,
            customRequest: this.nzCustomRequest,
            data: this.nzData,
            headers: this.nzHeaders,
            name: this.nzName,
            multiple: this.nzMultiple,
            withCredentials: this.nzWithCredentials,
            filters,
            transformFile: this.nzTransformFile,
            onStart: this.onStart,
            onProgress: this.onProgress,
            onSuccess: this.onSuccess,
            onError: this.onError
        };
        return this;
    }
    // #endregion
    // #region upload
    fileToObject(file) {
        return {
            lastModified: file.lastModified,
            lastModifiedDate: file.lastModifiedDate,
            name: file.filename || file.name,
            size: file.size,
            type: file.type,
            uid: file.uid,
            response: file.response,
            error: file.error,
            percent: 0,
            originFileObj: file
        };
    }
    getFileItem(file, fileList) {
        return fileList.filter(item => item.uid === file.uid)[0];
    }
    removeFileItem(file, fileList) {
        return fileList.filter(item => item.uid !== file.uid);
    }
    onStart = (file) => {
        const maxCount = this.nzMaxCount();
        if (!this.nzFileList) {
            this.nzFileList = [];
        }
        const targetItem = this.fileToObject(file);
        targetItem.status = 'uploading';
        if (maxCount === 1) {
            this.nzFileList = [targetItem];
        }
        else if (!maxCount || maxCount <= 0 || this.nzFileList.length < maxCount) {
            this.nzFileList = [...this.nzFileList, targetItem];
        }
        this.nzFileListChange.emit(this.nzFileList);
        this.nzChange.emit({ file: targetItem, fileList: this.nzFileList, type: 'start' });
        this.detectChangesList();
    };
    onProgress = (e, file) => {
        const fileList = this.nzFileList;
        const targetItem = this.getFileItem(file, fileList);
        if (!targetItem) {
            return;
        }
        targetItem.percent = e.percent;
        this.nzChange.emit({
            event: e,
            file: targetItem,
            fileList: this.nzFileList,
            type: 'progress'
        });
        this.detectChangesList();
    };
    onSuccess = (res, file) => {
        const fileList = this.nzFileList;
        const targetItem = this.getFileItem(file, fileList);
        if (!targetItem) {
            return;
        }
        targetItem.status = 'done';
        targetItem.response = res;
        this.nzChange.emit({
            file: targetItem,
            fileList,
            type: 'success'
        });
        this.detectChangesList();
    };
    onError = (err, file) => {
        const fileList = this.nzFileList;
        const targetItem = this.getFileItem(file, fileList);
        if (!targetItem) {
            return;
        }
        targetItem.error = err;
        targetItem.status = 'error';
        this.nzChange.emit({
            file: { ...targetItem },
            fileList,
            type: 'error'
        });
        this.detectChangesList();
    };
    // #endregion
    // #region drag
    dragState;
    // skip safari bug
    fileDrop(e) {
        if (e.type === this.dragState) {
            return;
        }
        this.dragState = e.type;
        this.setClassMap();
    }
    // #endregion
    // #region list
    detectChangesList() {
        this.cdr.detectChanges();
        this.listComp?.detectChanges();
    }
    onRemove = (file) => {
        this.uploadComp.abort(file);
        file.status = 'removed';
        const fnRes = typeof this.nzRemove === 'function' ? this.nzRemove(file) : this.nzRemove == null ? true : this.nzRemove;
        (fnRes instanceof Observable ? fnRes : of(fnRes)).pipe(filter((res) => res)).subscribe(() => {
            this.nzFileList = this.removeFileItem(file, this.nzFileList);
            this.nzChange.emit({
                file,
                fileList: this.nzFileList,
                type: 'removed'
            });
            this.nzFileListChange.emit(this.nzFileList);
            this.cdr.detectChanges();
        });
    };
    // #endregion
    // #region styles
    classList = signal([], ...(ngDevMode ? [{ debugName: "classList" }] : /* istanbul ignore next */ []));
    setClassMap() {
        let subCls = [];
        if (this.nzType === 'drag') {
            if (this.nzFileList.some(file => file.status === 'uploading')) {
                subCls.push(this.generateClass('drag-uploading'));
            }
            if (this.dragState === 'dragover') {
                subCls.push(this.generateClass('drag-hover'));
            }
        }
        else {
            subCls = [this.generateClass(`select-${this.nzListType}`)];
        }
        if (this.nzDisabled) {
            subCls.push(this.generateClass('disabled'));
        }
        this.classList.set([CLASS_NAME, this.generateClass(this.nzType), ...subCls]);
    }
    // #endregion
    ngOnInit() {
        this.i18n.localeChange.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => {
            this.locale = this.i18n.getLocaleData('Upload');
            this.detectChangesList();
        });
    }
    ngAfterViewInit() {
        if (this.platform.FIREFOX) {
            // fix firefox drop open new tab
            fromEventOutsideAngular(this.document.body, 'drop')
                .pipe(takeUntilDestroyed(this.destroyRef))
                .subscribe(event => {
                event.preventDefault();
                event.stopPropagation();
            });
        }
    }
    ngOnChanges() {
        this.zipOptions().setClassMap();
    }
    generateClass(suffix) {
        return generateClassName(CLASS_NAME, suffix);
    }
    static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
    static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: NzUploadComponent, isStandalone: true, selector: "nz-upload", inputs: { nzId: { classPropertyName: "nzId", publicName: "nzId", isSignal: true, isRequired: false, transformFunction: null }, nzType: { classPropertyName: "nzType", publicName: "nzType", isSignal: false, isRequired: false, transformFunction: null }, nzLimit: { classPropertyName: "nzLimit", publicName: "nzLimit", isSignal: false, isRequired: false, transformFunction: numberAttribute }, nzSize: { classPropertyName: "nzSize", publicName: "nzSize", isSignal: false, isRequired: false, transformFunction: numberAttribute }, nzFileType: { classPropertyName: "nzFileType", publicName: "nzFileType", isSignal: false, isRequired: false, transformFunction: null }, nzAccept: { classPropertyName: "nzAccept", publicName: "nzAccept", isSignal: false, isRequired: false, transformFunction: null }, nzAction: { classPropertyName: "nzAction", publicName: "nzAction", isSignal: false, isRequired: false, transformFunction: null }, nzDirectory: { classPropertyName: "nzDirectory", publicName: "nzDirectory", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzOpenFileDialogOnClick: { classPropertyName: "nzOpenFileDialogOnClick", publicName: "nzOpenFileDialogOnClick", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzBeforeUpload: { classPropertyName: "nzBeforeUpload", publicName: "nzBeforeUpload", isSignal: false, isRequired: false, transformFunction: null }, nzCustomRequest: { classPropertyName: "nzCustomRequest", publicName: "nzCustomRequest", isSignal: false, isRequired: false, transformFunction: null }, nzData: { classPropertyName: "nzData", publicName: "nzData", isSignal: false, isRequired: false, transformFunction: null }, nzFilter: { classPropertyName: "nzFilter", publicName: "nzFilter", isSignal: false, isRequired: false, transformFunction: null }, nzFileList: { classPropertyName: "nzFileList", publicName: "nzFileList", isSignal: false, isRequired: false, transformFunction: null }, nzDisabled: { classPropertyName: "nzDisabled", publicName: "nzDisabled", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzHeaders: { classPropertyName: "nzHeaders", publicName: "nzHeaders", isSignal: false, isRequired: false, transformFunction: null }, nzListType: { classPropertyName: "nzListType", publicName: "nzListType", isSignal: false, isRequired: false, transformFunction: null }, nzMultiple: { classPropertyName: "nzMultiple", publicName: "nzMultiple", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzName: { classPropertyName: "nzName", publicName: "nzName", isSignal: false, isRequired: false, transformFunction: null }, nzShowUploadList: { classPropertyName: "nzShowUploadList", publicName: "nzShowUploadList", isSignal: false, isRequired: false, transformFunction: null }, nzShowButton: { classPropertyName: "nzShowButton", publicName: "nzShowButton", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzWithCredentials: { classPropertyName: "nzWithCredentials", publicName: "nzWithCredentials", isSignal: false, isRequired: false, transformFunction: booleanAttribute }, nzRemove: { classPropertyName: "nzRemove", publicName: "nzRemove", isSignal: false, isRequired: false, transformFunction: null }, nzPreview: { classPropertyName: "nzPreview", publicName: "nzPreview", isSignal: false, isRequired: false, transformFunction: null }, nzPreviewFile: { classPropertyName: "nzPreviewFile", publicName: "nzPreviewFile", isSignal: false, isRequired: false, transformFunction: null }, nzPreviewIsImage: { classPropertyName: "nzPreviewIsImage", publicName: "nzPreviewIsImage", isSignal: false, isRequired: false, transformFunction: null }, nzTransformFile: { classPropertyName: "nzTransformFile", publicName: "nzTransformFile", isSignal: false, isRequired: false, transformFunction: null }, nzDownload: { classPropertyName: "nzDownload", publicName: "nzDownload", isSignal: false, isRequired: false, transformFunction: null }, nzIconRender: { classPropertyName: "nzIconRender", publicName: "nzIconRender", isSignal: false, isRequired: false, transformFunction: null }, nzFileListRender: { classPropertyName: "nzFileListRender", publicName: "nzFileListRender", isSignal: false, isRequired: false, transformFunction: null }, nzMaxCount: { classPropertyName: "nzMaxCount", publicName: "nzMaxCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { nzChange: "nzChange", nzFileListChange: "nzFileListChange" }, host: { properties: { "class.ant-upload-picture-card-wrapper": "nzListType === \"picture-card\"" } }, viewQueries: [{ propertyName: "uploadComp", first: true, predicate: ["uploadComp"], descendants: true }, { propertyName: "listComp", first: true, predicate: ["listComp"], descendants: true }], exportAs: ["nzUpload"], usesOnChanges: true, ngImport: i0, template: "<ng-template #list>\n  @if (locale && !nzFileListRender) {\n    <nz-upload-list\n      #listComp\n      [style.display]=\"nzShowUploadList ? '' : 'none'\"\n      [locale]=\"locale\"\n      [listType]=\"nzListType\"\n      [items]=\"nzFileList || []\"\n      [icons]=\"$any(nzShowUploadList)\"\n      [iconRender]=\"nzIconRender\"\n      [previewFile]=\"nzPreviewFile\"\n      [previewIsImage]=\"nzPreviewIsImage\"\n      [onPreview]=\"nzPreview\"\n      [onRemove]=\"onRemove\"\n      [onDownload]=\"nzDownload\"\n    />\n  }\n  @if (nzFileListRender) {\n    <ng-container *ngTemplateOutlet=\"nzFileListRender; context: { $implicit: nzFileList }\" />\n  }\n</ng-template>\n<ng-template #con><ng-content /></ng-template>\n<ng-template #btn>\n  <div [class]=\"classList()\" [class.ant-upload-rtl]=\"dir() === 'rtl'\" [style.display]=\"nzShowButton ? '' : 'none'\">\n    <div nz-upload-btn #uploadComp [options]=\"_btnOptions!\" [nzId]=\"nzId()\">\n      <ng-template [ngTemplateOutlet]=\"con\" />\n    </div>\n  </div>\n</ng-template>\n@if (nzType === 'drag') {\n  <div\n    [class]=\"classList()\"\n    [class.ant-upload-rtl]=\"dir() === 'rtl'\"\n    (drop)=\"fileDrop($event)\"\n    (dragover)=\"fileDrop($event)\"\n    (dragleave)=\"fileDrop($event)\"\n  >\n    <div nz-upload-btn #uploadComp [options]=\"_btnOptions!\" class=\"ant-upload-btn\" [nzId]=\"nzId()\">\n      <div class=\"ant-upload-drag-container\">\n        <ng-template [ngTemplateOutlet]=\"con\" />\n      </div>\n    </div>\n  </div>\n  <ng-template [ngTemplateOutlet]=\"list\" />\n} @else {\n  @if (nzListType === 'picture-card') {\n    <ng-template [ngTemplateOutlet]=\"list\" />\n    <ng-template [ngTemplateOutlet]=\"btn\" />\n  } @else {\n    <ng-template [ngTemplateOutlet]=\"btn\" />\n    <ng-template [ngTemplateOutlet]=\"list\" />\n  }\n}\n", dependencies: [{ kind: "component", type: NzUploadListComponent, selector: "nz-upload-list", inputs: ["listType", "locale", "items", "icons", "onPreview", "onRemove", "onDownload", "previewFile", "previewIsImage", "iconRender"], exportAs: ["nzUploadList"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NzUploadBtnComponent, selector: "[nz-upload-btn]", inputs: ["nzId", "options"], exportAs: ["nzUploadBtn"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadComponent, decorators: [{
            type: Component,
            args: [{ selector: 'nz-upload', exportAs: 'nzUpload', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
                        '[class.ant-upload-picture-card-wrapper]': 'nzListType === "picture-card"'
                    }, imports: [NzUploadListComponent, NgTemplateOutlet, NzUploadBtnComponent], template: "<ng-template #list>\n  @if (locale && !nzFileListRender) {\n    <nz-upload-list\n      #listComp\n      [style.display]=\"nzShowUploadList ? '' : 'none'\"\n      [locale]=\"locale\"\n      [listType]=\"nzListType\"\n      [items]=\"nzFileList || []\"\n      [icons]=\"$any(nzShowUploadList)\"\n      [iconRender]=\"nzIconRender\"\n      [previewFile]=\"nzPreviewFile\"\n      [previewIsImage]=\"nzPreviewIsImage\"\n      [onPreview]=\"nzPreview\"\n      [onRemove]=\"onRemove\"\n      [onDownload]=\"nzDownload\"\n    />\n  }\n  @if (nzFileListRender) {\n    <ng-container *ngTemplateOutlet=\"nzFileListRender; context: { $implicit: nzFileList }\" />\n  }\n</ng-template>\n<ng-template #con><ng-content /></ng-template>\n<ng-template #btn>\n  <div [class]=\"classList()\" [class.ant-upload-rtl]=\"dir() === 'rtl'\" [style.display]=\"nzShowButton ? '' : 'none'\">\n    <div nz-upload-btn #uploadComp [options]=\"_btnOptions!\" [nzId]=\"nzId()\">\n      <ng-template [ngTemplateOutlet]=\"con\" />\n    </div>\n  </div>\n</ng-template>\n@if (nzType === 'drag') {\n  <div\n    [class]=\"classList()\"\n    [class.ant-upload-rtl]=\"dir() === 'rtl'\"\n    (drop)=\"fileDrop($event)\"\n    (dragover)=\"fileDrop($event)\"\n    (dragleave)=\"fileDrop($event)\"\n  >\n    <div nz-upload-btn #uploadComp [options]=\"_btnOptions!\" class=\"ant-upload-btn\" [nzId]=\"nzId()\">\n      <div class=\"ant-upload-drag-container\">\n        <ng-template [ngTemplateOutlet]=\"con\" />\n      </div>\n    </div>\n  </div>\n  <ng-template [ngTemplateOutlet]=\"list\" />\n} @else {\n  @if (nzListType === 'picture-card') {\n    <ng-template [ngTemplateOutlet]=\"list\" />\n    <ng-template [ngTemplateOutlet]=\"btn\" />\n  } @else {\n    <ng-template [ngTemplateOutlet]=\"btn\" />\n    <ng-template [ngTemplateOutlet]=\"list\" />\n  }\n}\n" }]
        }], propDecorators: { uploadComp: [{
                type: ViewChild,
                args: ['uploadComp', { static: false }]
            }], listComp: [{
                type: ViewChild,
                args: ['listComp', { static: false }]
            }], nzId: [{ type: i0.Input, args: [{ isSignal: true, alias: "nzId", required: false }] }], nzType: [{
                type: Input
            }], nzLimit: [{
                type: Input,
                args: [{ transform: numberAttribute }]
            }], nzSize: [{
                type: Input,
                args: [{ transform: numberAttribute }]
            }], nzFileType: [{
                type: Input
            }], nzAccept: [{
                type: Input
            }], nzAction: [{
                type: Input
            }], nzDirectory: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzOpenFileDialogOnClick: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzBeforeUpload: [{
                type: Input
            }], nzCustomRequest: [{
                type: Input
            }], nzData: [{
                type: Input
            }], nzFilter: [{
                type: Input
            }], nzFileList: [{
                type: Input
            }], nzDisabled: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzHeaders: [{
                type: Input
            }], nzListType: [{
                type: Input
            }], nzMultiple: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzName: [{
                type: Input
            }], nzShowUploadList: [{
                type: Input
            }], nzShowButton: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzWithCredentials: [{
                type: Input,
                args: [{ transform: booleanAttribute }]
            }], nzRemove: [{
                type: Input
            }], nzPreview: [{
                type: Input
            }], nzPreviewFile: [{
                type: Input
            }], nzPreviewIsImage: [{
                type: Input
            }], nzTransformFile: [{
                type: Input
            }], nzDownload: [{
                type: Input
            }], nzIconRender: [{
                type: Input
            }], nzFileListRender: [{
                type: Input
            }], nzMaxCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "nzMaxCount", required: false }] }], nzChange: [{
                type: Output
            }], nzFileListChange: [{
                type: Output
            }] } });

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */
class NzUploadModule {
    static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
    static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.14", ngImport: i0, type: NzUploadModule, imports: [NzUploadComponent, NzUploadBtnComponent, NzUploadListComponent], exports: [NzUploadComponent] });
    static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadModule, imports: [NzUploadComponent, NzUploadListComponent] });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NzUploadModule, decorators: [{
            type: NgModule,
            args: [{
                    imports: [NzUploadComponent, NzUploadBtnComponent, NzUploadListComponent],
                    exports: [NzUploadComponent]
                }]
        }] });

/**
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
 */

/**
 * Generated bundle index. Do not edit.
 */

export { NzUploadBtnComponent, NzUploadComponent, NzUploadListComponent, NzUploadModule };
//# sourceMappingURL=ng-zorro-antd-upload.mjs.map