What is a component in AngularJS?
Asked Answered
R

3

9

I was doing some reading about directives and was wondering what the distinction was between a directive and a component, when I found that there are lots of components in AngularJS.

There is a function component, type component, service component, filter component, provider component, etc... Then to top it off I found that a module component is a component consisting of directives, services, filters, providers, templates, global API’s, and testing mocks. That tended to make things more confusing. I couldn't find a definition of a "component" in the Angular documentation that would explain the distinctions between the types of components listed.

So what exactly is a "component" in AngularJS? Is it something as simple as reusable blocks of code?

By the way, I'm using Angular version 1.4.2 currently.

Robustious answered 4/11, 2015 at 3:57 Comment(3)
You can call component any thing which could be composable. You can define directive and compose it with other member of your code. Usually people called reusable blocks as component.Jolinejoliotcurie
"AngularJS" and "Angular" (at this point in time) mean two different things. Perhaps you intended "AngularJS" and "Angular" to mean the same thing?Elonore
No, the framework made the distinction of components between versions that I was not aware of when I asked the question. I only posted this and the answer to help other devs, especially coming from java background like myself, this particular question in it's narrow scope.Robustious
P
15

Angular components were introduced in version 1.5.

A component is a simplified version of a directive. It cannot do dom manipulation (not link or compile methods) and "replace" is gone too.

Components are "restrict: E" and they are configured using an object (not a function).

An example:

  app.component('onOffToggle', {
    bindings: {
      value: '=',
      disabled: '='
    },
    transclude: true,
    template: '<form class="form-inline">\
                       <span ng-transclude></span>\
                       <switch class="small" ng-model="vm.value" ng-disabled="vm.disabled"/>\
                     </form>',
    controllerAs: 'vm',
    controller: ['$scope', function($scope) {
      var vm = this;
      $scope.$watch("vm.disabled", function (val) {
        if (!val) {
          vm.value = undefined;
        }
      })
    }]
  });

Further reading: https://toddmotto.com/exploring-the-angular-1-5-component-method/

Perithecium answered 23/2, 2016 at 8:42 Comment(1)
There's a bit of confusion of terms in this question. The author was talking about 'component' as a general term, and seems to be asking a question along the lines of 'what are all these different things like filters, services etc'. (Tbh it sounds like they were a bit confused and maybe need to learn up on some JavaScript fundamentals). This answer is referring to AngularJS component()s specifically which is also what most people will be searching for. Indeed that wasn't even a thing in 1.4.2 which is what the asker was using.Bergman
R
7

Coming from an OOP Java oriented background, I was trying to distinguish between the various Angularjs components, including modules. I think the best answer I found about modules was 13 Steps to Angularjs Modularization

In an AngularJS context, modularization is organization by function instead of type. To compare, given arrays time = [60, 60, 24, 365] and money = [1, 5, 10, 25, 50], both are of the same type, but their functions are completely different.

That means your components (controllers, filters, directives) will live in modules instead of wherever they live now.

So yes, for our 1.4x code, components are blocks of resusable code, but in our version 1.4x context, I see the Module Pattern as a recurring structure to these blocks of code in Angularjs, though not considered true components until version 1.5. The way these modules are implemented gives you the type of component, that is, a controllers implementation structure will distinguish it from a service or a provider, if that makes sense. I also think the Angularjs documents should have addressed this.

Here is the basic pattern I see repeated in the Angularjs code:

(function () {
    // ... all vars and functions are in this scope only
    // still maintains access to all globals
}());

Here is an excellent article on the Javascript Module Pattern in depth.

Robustious answered 5/11, 2015 at 18:52 Comment(2)
I noticed that I'm getting downvotes on this answer. If someone could explain to me to what part is wrong, please do so and I will fix it. I'm still keeping it open as I believe parts of it are correct.Robustious
Okay, I see that I left out the context of versions in my answer.Robustious
C
-7

A component is the building block of an Angular 2 application. In Angular 2 applications everything is a component.

They are a special type of directive which are always "Restrict:E" type.

It has majorly two parts. One is the selector and the other is tempate/templateUrl:

@Component({
    selector: "sample-ui",
    templateUrl: "../UI/sample.html"
})

export class CustomerComponent {
    /* Component logic */
}
Camarillo answered 12/3, 2018 at 17:8 Comment(1)
The question is about AngularJS (1.x).Pyrometer

© 2022 - 2024 — McMap. All rights reserved.