Code Monkey home page Code Monkey logo

Comments (2)

arcio avatar arcio commented on July 30, 2024 1

Thanks! This worked like a charm, with one exception. I had to use an event listener as the function isn't always passed through from the component.
document.getElementById("ID_NAME").addEventListener("mousedown", function(e) {self.FUNCTION_NAME(e);});

from angular-slick-carousel.

joscmw95 avatar joscmw95 commented on July 30, 2024

This is due to the way navigation is handled in Angular.
Despite a drag, Angular still thinks that it is a mouse click hence triggering the event.

One of the ways to work around this situation is to use a timer on the mousedown event and assume that any (mousedown -> mouseup) that happens in a specified interval is a click:

// fires on mousedown, "(mousedown)=trackMouse()"
trackMouse() {
  this.mouseDown = true;
  window.setTimeout(() => {
    this.mouseDown = false;
  }, 100);
}

// fires on click, "(click)=navigateIfClick(item)"
navigateIfClick(item) {
  if (this.mouseDown) {
    this.router.navigate(['/item/', item.id]);
  }
}

A better solution could be tracking the position of the mousedown and mouseup event and assume it is a click if both events' positions are close.

trackMouseDown(event: MouseEvent) {
  this.x1 = event.x;
  this.y1 = event.y;
}

trackMouseUp(event: MouseEvent, item: Item) {
  let a = this.x1 - event.x;
  let b = this.y1 - event.y;
  let c = Math.sqrt(a * a + b * b);

  if (c < 10) {
    switch (event.which) {
      case 1:
        // left click
        this.router.navigate(['/items/', item.id]);
        break;
      case 2:
        // middle button
        window.open(window.location.hostname + `/items/${item.id}`, '_blank');
        break;
      case 3:
        // right click
        break;
      default:
        this.router.navigate(['/items/', item.id]);
        break;
    }
  }
}

from angular-slick-carousel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.