Giter Site home page Giter Site logo

Comments (6)

elado avatar elado commented on August 25, 2024

Hmm, after patching the gem it seemed to break things with external libraries. I also found out that it supports the extension .ajs.

I use angular-ui-bootstrap and I load some templates with:

//= require angular-ui-bootstrap/template/tabs/tabset.html

My patch (commenting the .html engine registration) broke it.

Maybe a better way is to whitelist/blacklist files/folders?

from angular-rails-templates.

dmathieu avatar dmathieu commented on August 25, 2024

Why would you want to do that?

from angular-rails-templates.

pitr avatar pitr commented on August 25, 2024

anything under app/assets/javascripts should be converted to JS at the end. I'd put your html files in public folder, or app/assets/html or something

from angular-rails-templates.

elado avatar elado commented on August 25, 2024
  1. I work with component folders rather than split filed by type

So I have /app/assets/app folder which contains sub folders with all js/css/html. For example, a directive of a follow button:

app/assets/app/components/follow/directive.js.coffee
app/assets/app/components/follow/style.css.scss
app/assets/app/components/follow/button.html

I don't find any logic in having all files split into 3 different folders (try it--it's much more convenient!).

  1. I use bower to include 3rd party libraries. That means I have /vendor/bower_components/ folder with full libraries like angular-ui-bootstrap that contain all JS/CSS/HTML scattered under it.

I wanted to be able to choose when to convert an HTML file to a template and when not to, since I still want some .html templates in the asset pipeline to be lazy loaded by angular. I realized that I can do that by giving a different extension, e.g. button.tpl.

from angular-rails-templates.

pitr avatar pitr commented on August 25, 2024

I'm glad you came up with a solution.

Splitting by component is a nice idea. Did you have any problems with Rails? AFAIK it expects app/assets/{TYPE} folders.

from angular-rails-templates.

elado avatar elado commented on August 25, 2024

In my application.rb I have:

config.assets.paths << config.root.join("app", "assets", "components")
config.assets.paths << config.root.join("vendor", "assets", "bower_components")

Rails asset pipeline doesn't really care about the content of the file or its location, as long as it's under assets.path. That way I don't need to put js under javascripts, css under stylesheets and html under public, they're all in the same folder, app/components.

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.