Code Monkey home page Code Monkey logo

Comments (5)

chieffancypants avatar chieffancypants commented on September 26, 2024

Agree. Did you encounter this where you could let me know a simple scenario I can add to the tests? Generally, controllers get destroyed when changing routes (which will destroy the hotkey), but if there are cases where destroying controllers happens without a route change, then this should definitely be addressed.

from angular-hotkeys.

jeffwhelpley avatar jeffwhelpley commented on September 26, 2024

After thinking about this more, I don't think there are many normal cases where controllers are destroyed without a route change. Really the issue is that I am using the UI Router instead of the Angular Router. I think I saw someone was working on the UI Router update to this library so I am fine waiting for that.

from angular-hotkeys.

lord2800 avatar lord2800 commented on September 26, 2024

I can think of a couple cases where a controller might be destroyed outside of a route change: ngInclude, ngIf... basically anything where the DOM node is removed. See: http://plnkr.co/edit/KytBilQzg2XxZ8ZkaSPt?p=preview

from angular-hotkeys.

shabalin avatar shabalin commented on September 26, 2024

The another example could be Modal windows (angular-bootstrap modal component)

var modal = $modal.open({
                   ...
                    templateUrl: '/my-selection-dialog.tpl.html',
                    controller: FromExistentModelCtrl,
                    resolve: {
                          ....
                    }
                });

So the window is created and destroyed within same route/state, but window actions are handled by separate view controller.

Although I think that binding hotkeys in directives could be a solution for most case

from angular-hotkeys.

chieffancypants avatar chieffancypants commented on September 26, 2024

So from what I can tell, there's no good way for the service to be informed automatically of the controller's scope being destroyed. In order to accomplish this, I had to add an additional method which passes the controller's scope into the service, at which point, hotkeys will automatically take care of removing the bindings when the scope is destroyed. It looks like this:

angular.controller('MyCtrl', function ($scope, hotkeys) {
  hotkeys.bindTo($scope)
    .add({
      combo: 'w',
      description: 'blah blah',
      callback: function() {}
    })
    // you can chain these methods for ease of use:
    .add ({...});

});

You can check out the i32-scope-destroyed branch to see and play with it for yourselves. If anyone can think of a better way, please let me know...otherwise I'll merge this into master and call it complete.

from angular-hotkeys.

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.