GithubHelp home page GithubHelp logo

Comments (4)

nfilzi avatar nfilzi commented on June 14, 2024

I just stumbled upon this merged PR, introducing a custom hotkey-fire event. Would it be the way to go at this? If it is, it could be nice to get it documented somehow?

from hotkey.

keithamus avatar keithamus commented on June 14, 2024

Yeah the hotkey-fire event is used to provide custom behaviours other than clicking links and buttons.

Sorry we didn’t fully document that! Would you like to make a PR documenting it? That would be an awesome improvement!

from hotkey.

DaveSanders avatar DaveSanders commented on June 14, 2024

Yeah, it'd be really great to get some documentation on this - it seems like it would be a fairly common use? Having found the library today, that was the first thing I went looking for.

from hotkey.

keithamus avatar keithamus commented on June 14, 2024

I've added some documentation to the README: https://github.com/github/hotkey/blob/main/README.md#js

By default form elements (such as input,textarea,select) or elements with contenteditable will call focus() when the hotkey is triggered. All other elements trigger a click(). All elements, regardless of type, will emit a cancellable hotkey-fire event, so you can customize the behaviour, if you so choose:

for (const el of document.querySelectorAll('[data-shortcut]')) {
  install(el, el.dataset.shortcut)
  
  if (el.matches('.frobber')) {
    el.addEventListener('hotkey-fire', event => {
      // ensure the default `focus()`/`click()` is prevented:
      event.preventDefault()
      
      // Use a custom behaviour instead 
      frobulateFrobber(event.target)
    })
  }
}

I'll close this for now as I think this is effectively solved. Let me know if you have any other questions or find any other issues and I'll be happy to help 🙂

from hotkey.

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.