Giter Site home page Giter Site logo

Comments (4)

pitr avatar pitr commented on August 25, 2024

What JS do those files compile to? Specifically, what is the path in templateCache.put call? Unless you've changed config.angular_templates.ignore_prefix, those templates are accessible as players/index.html and videos/index.html, and shouldn't be mixed up.

from angular-rails-templates.

davetron5000 avatar davetron5000 commented on August 25, 2024

I'm having a similar issue:

app/assets/inventoryTags/index.html
app/assets/physicalInventory/index.html

The JS for these files are generated differently.

inventoryTags/index.html looks like this:

// Angular Rails Template
// source: app/assets/javascripts/templates/inventoryTags/index.html

angular.module("templates").run(["$templateCache", function($templateCache) {
  $templateCache.put("inventoryTags/index.html", '<div inventory-tags-tab-control></div>\n<divETC')
}]);

physicalInventory/index.html looks like this:

window.AngularRailsTemplates || (window.AngularRailsTemplates = angular.module("templates", []));

window.AngularRailsTemplates.run(["$templateCache",function($templateCache) {
  $templateCache.put("physicalInventory/index.html", "\u003Cheader\u003E\n  \u003Ch1 class=\"h3 text-c\"\u003EReconcile PhysicalETC");
}]);

My application.js is:

//= require angular/angular
//= require angular-resource/angular-resource
//= require angular-route/angular-route
//= require angular-animate/angular-animate
//= require angular-rails-templates
//= require lodash/dist/lodash
//= require jquery/jquery
//= require jquery-modal/jquery.modal
//= require jquery-ui/ui/jquery-ui
//= require jquery-ujs/src/rails
//= require jquery-cookie/jquery.cookie
//= require jquery.hotkeys
//= require chosen-jquery
//= require stitchfix_init
//= require_tree ./templates
//= require_directory ./lib 
//= require_directory ./angular_apps 
//= require_directory ./angular_apps/controllers
//= require_directory ./angular_apps/directives
//= require_directory ./angular_apps/services
//= require_directory .

Notice that the first uses the ERB file from the gem, and doesn't escape the HTML. The second one appears to have some sort of wrapping from sprockets or Tilt and does escape the HTML.

If I explicitly require_dir ./templates/physicalInventory first, everything works.

I'm using rvm and bundler. When I comment out the erb file in the gem, it has no effect. When I add random raise calls in evaluate inside tile or angular-rails-templates, they are never hit.

I cannot figure out why they would be handled differently and have no way to debug this. Any ideas what to check?

from angular-rails-templates.

davetron5000 avatar davetron5000 commented on August 25, 2024

This only affects dev mode. Production mode seems to work. So, likely sprockets is screwing us somehow

from angular-rails-templates.

pitr avatar pitr commented on August 25, 2024

fixed in 0.1.2, please reopen is it happens again

from angular-rails-templates.

Related Issues (20)

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.