i have several large projects that I would like to start moving from 5.x to 
.9 and on to 1. 

I like where the project is going, but really this has been a HUGE PAIN to 
migrate. I have started, but wonder if I should continue without further 
questions being answered:

1) Compound binding/string interpolation in bindings:  - if this is still 
being developed and a estimated time line

2) Exploring helpers for binding to class and style.:  - if this is still 
being developed and a estimated time line
3) template if binding with simple == < > comparisons: - if this is still 
being developed and a estimated time line




reasons:


the lake of this <div>Dear {{ title }} {{ lastName }},</div> is huge, it's 
everywhere in my code.

something like this:

        <!--<iron-ajax 
url="/api/international-affiliations/Affiliation-count/{{new_tenant_id}}/{{selectedPlaceId}}/"
                   handleas="json" auto
                   on-response="affiliationsResponse"
                   on-core-error="{{ajaxError}}"
                   id="ajax_degrees">
        </iron-ajax>

turns into  url="[[ajax_activities_url]]"

        ajax_degrees_url_init: { type: String, value: 
"/api/summary/degree-count/0}/1/2/" },
        ajax_degrees_url_params: {
            computed: 'compute_url_object(new_tenant_id, selectedPlaceId, 
selectedEstablishmentId)'
        },
        ajax_degrees_url: {
            computed: 
'compute_url(ajax_degrees_url_init,ajax_degrees_url_params)',
        },

    compute_url_object: function (...args: any[]) {
        return arguments;
    },
    compute_url: function (str, mapObj) {
        var re = new RegExp(Object.keys(mapObj).join("|"), "gi");

        return str.replace(re, function (matched) {
            return mapObj[matched.toLowerCase()];
        });
    },



I don't want to make a new property to like y =  x > 1, I just want to 
declare that in my template, it's everywhere...

I was using the core-style, it was an easy way for me to make my 
multitenant site have tenant specific themes.


I stuck with polymer over something like riot/react because it was just so 
simple and composable, without these features I am wondering if I made the 
right decision. 

I would appreciate anyone who can provide me with the 3 answers above.

thanks
Tim 

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/21e54862-b563-4007-8226-e8d49bbf8ccb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to