georgipeltekov / ngx-file-drop

Angular 11 file and folder drop library
MIT License
295 stars 100 forks source link

Bug: Single clicks are stopped #200

Open btxtiger opened 4 years ago

btxtiger commented 4 years ago

I would like to use a fullscreen drop overlay. Therefor I created a dropzone and added style. However it is not possible anymore to click underlaying elements. $event.stopPropagation should not be used for click events.

<ngx-file-drop class="full-drop" [useDragEnter]="true"
                  (onFileDrop)="dropped($event)"
                  (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)">
   <ng-template ngx-file-drop-content-tmp let-openFileSelector="openFileSelector">
   </ng-template>
</ngx-file-drop>
::ng-deep .full-drop {
   .ngx-file-drop__drop-zone {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100vw !important;
      height: 100vh !important;
      z-index: 999;
      opacity: 0.5;

      &--over {
         opacity: 1;
      }
   }
}
Akkora commented 3 years ago

Have you tried it with pointer-events: none?

Nikita-schetko commented 9 months ago

Bump! Guys is there is a working example, of using ngx-file-drop full screen as a background without issue with clicking ?

juanbalastegui commented 6 months ago

Same issue here. Any solution?