So I am writing an Angular Frontend for a pre-existing Rails Application. I understand that using $q is at best an intermediate step before converting the back end to serve a REST Api directly to ngResource through JSON, but unfortunately for the time being there is too much logic residing in various Ruby locations to easily rewrite everything into a purely Angular format.
The question is, how do I correctly instantiate and handle ng attributes in the returned partials. The below is a sanitized version of the code.
Company.Controller.TypeAccordionController = (scope, http, element, q, typeJQueryService) ->
scope.validateForm = (event) ->
console.log "we are here"
scope.getTheDamnType = (id) ->
typeJQueryService.multipart(id).then (response)->
angular.element('.datePicker').datepicker()
Company.Controller.TypeAccordionController.$inject = ['$scope', '$http', '$element', '$q','typeJQuery']
The returned HAML is being correctly displayed on the page and the datepicker is being instantiated successfully. The first line of the returned HAML is:
= form_for @type, :html=>{:class=>'form-horizontal type-form', :"ng-submit"=>"validateForm($event);"} do |f|
Interesting Sidenote: Putting ng-attributes on raw DOM elements within the HAML works like a charm. Example:
= form_for @type, :html=>{:class=>'form-horizontal type-form', :"ng-controller"=>"someFormController"} do |f|
The above WILL NOT WORK. The below works like a charm however:
= form_for @type, :html=>{:class=>'form-horizontal type-form', :"ng-controller"=>"someFormController"} do |f|
%div(ng-controller=someFormController)
The service doing the displaying works as follows:
Company.MyModule.factory 'TypeJQuery', ($q, $rootScope) ->
multipart: (element) ->
deferred = $q.defer()
$.get "..." + element, (data) ->
$rootScope.$apply ->
deferred.resolve data
deferred.promise
However, nothing happens on submit, the log doesn't print. An alternative attempt was:
scope.validateForm = (event) ->
console.log "we are here"
scope.getTheDamnType = (id) ->
typeJQueryService.multipart(id).then (response)->
angular.element('.datePicker').datepicker()
angular.element('form').attr("ng-submit", "validateForm($(this).attr('id'))")
Similiarly nothing useful happened.
Any suggestions on how I can get this fixed? On a side note: later in the returned partial there is another element with an ng-controller on it. Needless to say useful things do not happen to it.
EDIT: The HAML isn't actually being returned raw, rather it is routed through the following js.erb:
$('div.form_<%= @artifact.id %>').replaceWith("<%=j render 'form' %>");
Which then returns the form partial.