In this article, we will see how we are going to implement a draggable modal using a directive. First, we need to create a directive using the below command ng g d draggable We will be using HostListener, AfterViewInit, ElementRef.Make sure you import them in your draggable directive. In the…