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.
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
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:
Here is an excellent article on the Javascript Module Pattern in depth.
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:
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:
Further reading: https://toddmotto.com/exploring-the-angular-1-5-component-method/