Last active
September 12, 2018 08:02
-
-
Save PaulKinlan/800cd4cc10e20af386ba0837675ca8de to your computer and use it in GitHub Desktop.
Simple Templating
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const applyTemplate = (templateElement, data) => { | |
const element = templateElement.content.cloneNode(true); | |
const treeWalker = document.createTreeWalker(element, NodeFilter.SHOW_ELEMENT, () => NodeFilter.FILTER_ACCEPT); | |
while(treeWalker.nextNode()) { | |
const node = treeWalker.currentNode; | |
for(let bindAttr in node.dataset) { | |
let isBindableAttr = (bindAttr.indexOf('bind_') == 0) ? true : false; | |
if(isBindableAttr) { | |
let dataKeyString = node.dataset[bindAttr]; | |
let dataKeys = dataKeyString.split("|"); | |
let bindKey = bindAttr.substr(5); | |
for(let dataKey of dataKeys) { | |
if(dataKey in data && data[dataKey] !== "") { | |
node[bindKey] = data[dataKey]; | |
break; | |
} | |
} | |
} | |
} | |
} | |
return element; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template id='itemTemplate'> | |
<div class="item" data-bind_id='guid'> | |
<h3><span data-bind_inner-text='title'></span> (<a data-bind_href='link'>#</a>)</h3> | |
<div data-bind_inner-text='pubDate'></div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@PaulKinlan Nit!