Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
148
rated 0 times [  152] [ 4]  / answers: 1 / hits: 23406  / 9 Years ago, sat, may 2, 2015, 12:00:00

Our website is currently using jQuery library and getting a traffic of about 1 million monthly. We want to include API centric approach, so decided to move to Javascript MVC and have chosen angularJS for it.



Now my question is, should I use jQuery on the top of Angular so that I need to rewrite minimal DOM manipulation code, or I should re-write everything in the Angular way? We are using jQuery plugins like plupload, jQuery UI. etc on the website. Please suggest the best way of migration (page load time also matters).



Already went through "Thinking in AngularJS" if I have a jQuery background? but not getting a clear answer


More From » jquery

 Answers
49

Good thing about AngularJS which you need consider before doing Migration.




  1. It provides two way binding by only storing variable in scope.

  2. Other thing we need write code as compare to JQuery.

  3. Implementation in modular way(by creating angular.module)

  4. Shift most of the code from Javascript to HTML, that looks code more cleaner.

  5. Singleton patterners are there to store a data & share it between multiple controller or services.

  6. It in built with smaller version of jQuery that is known as JQlite which has most of the basic functionality, but you want to use JQuery in AngularJS then it will be available easily just you need to add jQuery reference in it, after that JQLite functionality gets converted into JQuery.






You should not use jQuery on the top of the AngularJS, because AngularJS digest cycle wont run if we do any angular DOM manipulation or scope variable manipulation using JQuery.



As you migrate you jQuery component to AngularJS you need to follow below things




  1. You need first search angular-ui-bootstrap site because they had covered most of the UI component which has already converted to angular.

  2. I'm sure you will not found every plugin Angular version, at that you should wrap that plugin to directive. Which will give you controller over the DOM element where ever directive has placed.(Example here for Datepicker using directive)

  3. Don't try to bind event from outside angular context that will create a digest cycle, that will leads to affect in binding updation on UI.

  4. Ensure while making any ajax call that should be using $http rather than using $.ajax

  5. There are many places you can find in jquery code that would be replace by ng-class directive, like if you are doing only adding & removing class, or showing some element on basis of any condtion, so that sort of jquery code can be replace by use ng-class directive

  6. Look for the places where you are only removing a DOM or adding DOM that could be easily replaced by the the ng-if directive, or only show hide of element can be done by using either ng-show/ng-hide

  7. Also find such a part in UI in which you are creating same DOM using for loop that can be convert to angular native directive ng-repeat

  8. If you have any case where you wanted to show and hide multiple element, so that part of code would be implemented using ng-switch directive


[#66777] Thursday, April 30, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
carolyn

Total Points: 618
Total Questions: 119
Total Answers: 86

Location: Saint Pierre and Miquelon
Member since Fri, Jan 28, 2022
2 Years ago
;