Giter Site home page Giter Site logo

normandy72 / manipulating-the-dom Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 100 KB

Manipulating the DOM with link in AngularJS. Coursera course "Single Page Web Applications with AngularJS" by Yaakov Chaikin.

HTML 26.49% JavaScript 68.94% CSS 4.57%
angular angularjs html html5 javascript js css css3 jqlite jquery

manipulating-the-dom's Introduction

Manipulating the DOM with link

Step 1: Declare Link Function

function MyDirective(){
    var ddo = {
        scope: {...},
        link: linkFunction,
        ...
        templateUrl: 'template.html'
    };
    return ddo;
}

Step 2: Define the Link Function

function LinkFunction(scope, element, attrs, controller){
    ...
}

Summary
  • DOM manipulation usually done inside of the link function declared on the DDO.
  • Link function does not support injection. To use injected components, services, inject them into directive.
  • 'scope' parameter is the exact $scope in directive's controller.
  • 'element' object represents the element of the directive:
    • Top level element.
    • It's jqLite object or jQuery object (if jQuery is included before Angular).

Using Directive’s transclude to Wrap Other Elements

Step 1: Set transclude to true

function MyDirective(){
    var ddo = {
        scope: {...},
        transclude: true,
        ...
        templateUrl: "template.html"
    };
    return ddo;
}

Step 2: Wrap Some Parent Content

<my-directive>
    <span>
        WARNING! WARNING! {{ctrl.someProp}}
    </span>
</my-directive>

{{ctrl.someProp}} - evaluated in the parent controller, NOT in our directive

Step 3: ng-transclude To Place Wrapper Content

<div>
    ...
    <div ng-transclude></div>
</div>

<div ng-transclude></div> - insert evaluated wrapped content into element marked with ng-transclude


Summary
  • transclude allows whole templates to be passed into a directive.
  • The wrapped content is evaluated in the parent's context, NOT in the directive's context.
  • In the DDO:
    • transclude: true
  • In directive's template:
    • ng-transclude attribute designates place for evaluated wrapped content.

manipulating-the-dom's People

Contributors

normandy72 avatar

Watchers

 avatar

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.