Code Monkey home page Code Monkey logo

aftershave's People

Contributors

ccampbell avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

okcoker goupviet

aftershave's Issues

Passing arguments passed in to a helper function doesn't work

If you pass an argument directly to a helper function like

{{ someFunction(someArg, someOtherArg) }}

Only the first one gets rewritten based on the things passed in

this.helpers.someFunction(args.someArg, someOtherArg);

They should both match

Optimize outputted templates

Instead of possibly rendering out a bunch of templates that contain '

...' you should have a tag store in the rendered template of all the tags being used.

So at the top of the outputted template.js you'd maybe have something like

(function() {
....
var tagOpenSection = '<section>';
var tagClosingSection = '</section>'

Aftershave.templates.someTemplate = function(args) {
        var _t = tagOpenSection + args.content + tagClosingSection;
};

Aftershave.templates.someOtherTemplate = function(args) {
        var _t = tagOpenSection + args.moreContent + tagClosingSection;
};

...
}());

That way we're not bloating the outputted template.js file with duplicate strings that cant be minified. I realize gzip might take care of this ultimately but it could be something to test.

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.