npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

drpx-id

v2.0.2

Published

An Angular directive to link directives together inside a template so they can be used as components

Downloads

6

Readme

drpx-id

An Angular directive to link directives together inside a template so they can be used as components.

It leverages in John Papa styleguide to expose a directive controller in the current scope so it can be used.

It is the reverse of require: of the directive configuration, it allows parent to reference children.

Example

You can reference your children directives with id decorator:

    <!-- yourComponent.tpl.html -->
    <toggle id="theToggle"></toggle>
    <button ng-click="theToggle.toggle()">Toggle</button>
    <h1 ng-show="theToggle.isOpen()">My Content</h1>

The corresponding toggle directive is:

    /* Toggle.component.js */
    angular
        .module('Toggle', [])
        .directive('toggle', ToggleDirective);

    function ToggleDirective() {
        var directive = {
            scope: {},                   // it requires an isolated scope
            controller: ToggleController // it requires a Controller
            controllerAs: 'vm',          // it requires controller as vm
        };
        return directive;
    }

    function ToggleController() {
        var opened = false;

        this.close = function() {
            opened = false;
        };
        this.isOpen = function() {
            return opened;
        };
        this.open = function() {
            opened = true;
        };
        this.toggle = function() {
            opened = !opened;
        };
    }

Install

$ bower install --save drpx-id

add to your module the dependence:

    angular.module('yourModule', ['drpxId']);

include the javascript library in your application:

<script src="bower_components/drpx-id/drpx-id.js"></script>

How to use

Structure your current directive as follows:

  • make them it have a controller (ex: controller: YourController)
  • make controller be published as vm (which is: controllerAs: 'vm')

Note: If you do not publish the controller as vm it will create a vm object in the scope.

Decorate a template element with the id="name" decorator to assign it to your current template directive controller.

Although id is global in html, it only affects parent directive.

assign directive controller

Structure your component directives as follow:

  • make them have an isolated scope (at least scope: {}),
  • make them have always a controller (ex: controller: YourController)
  • make controller be published as vm (which is: controllerAs: 'vm')
  • optional: bind your attributes values to the controller (ex: bindToController: true)

Note: in short time it should be done automatically by https://github.com/angular/angular.js/issues/10007

In your template use the id="name" to publish the children controller (ex: YourController) at the current template directive controller vm.name of the parent.

id at a DOM element

Your DOM element is assigned to vm.name (not jQlite element).

drpxId V2 Breaking changes

Until v1 given id="name" directives controllers where assigned to $scope.$.name, in v2 they are assigned to the current template controller vm.name. It is because I have detected that people gets a wrong concept, confusing with jQuery, when they see the $ sign. Now I believe that assignign it to the current template controller it makes more sense.

Until v1 if the id is assigned to an non-angular directive it did nothing. Now, in v2 they are assigned. It means that it can overwrite template controller properties that were not assigned previously.

Limits

Because of compatibility with Angular 1.2 (Angular 1.4 has better interface) it does not enable full performance optimization. You cannot disable scope debug data, see https://docs.angularjs.org/guide/production .

Because $parse:isecdom ( https://docs.angularjs.org/error/$parse/isecdom )you cannot use dom element from controllers directly in your template. In such case you may use a controller function to access it. As example, the following code is not working:

    <!-- it does not works because $parse:isecdom security error -->
    <audio id="audio" src="http://developer.mozilla.org/@api/deki/files/2926/=AudioTest_(1).ogg">
        Your browser does not support the <code>audio</code> element.
    </audio>
    <button ng-click="vm.audio.play()">Play audio</button>