Categories: Codepen
Tags: Sass, JavaScript, jQuery-ui, Mustache
I created a simple to-do list application which allows creating new tasks, checking off and deleting completed tasks, and re-organizing the list any way the user would like.
I used Mustache for templating and rendering the data, and jQueryUI provided an API for user manipulation of the list.
I used Sass to store some color variables, and getting the hamburger buttons right was all CSS:
.hamburger {
display: inline-block;
content: '';
cursor: pointer;
width: 15px;
height: 15px;
background: linear-gradient(
to bottom,
black, black 20%,
transparent 20%, transparent 40%,
black 40%, black 60%,
transparent 60%, transparent 80%,
black 80%, black 100%
);
}
Using “Montserrat” as the font gave the list a nice look, too.
I began with a few tasks pre-loaded in my data
variable, $template
and $target
jQuery object variables for Mustache to render, and an itemIndex
variable for
keeping track of the current item.
var data = {
"list": [
{
item: "First item",
completed: false
},
{
item: "Second item",
completed: true
},
{
item: "Third item",
completed: false
}
]
};
var $template = $('#template').html();
var $target = $('#target');
var itemIndex;
First I needed a way for Mustache to render the content in my data
variable, which
was simple enough. I created a template in the HTML like so:
<script id="template" type="text/template">
<ul>
{{#list}}
<li>
<i class="hamburger"></i>
<input class="checkbox" type="checkbox" {{#completed}}checked{{/completed}}/>
<input class="text hide" type="text" />
<span {{#completed}}class="checked"{{/completed}}>{{item}}</span>
</li>
{{/list}}
</ul>
</script>
Then, Mustache can take the data inside the data
variable and render the output:
function render() {
var rendered = Mustache.render($template, data);
$target.html(rendered);
}
Super nice and simple! Now that I have the data in my variable displayed on the page,
the next step is to add a function allowing me to add additional tasks. I retrieve
the value of the input field (<input id="list-adder" type="text"/>
):
function addItem() {
var newItem = $('#list-adder').val(); // get the value out of the input field
if (newItem !== '') { // as long as the field is not empty...
data.list.push({ // add a new task to the list:
item: newItem,
completed: false
});
render();
$('#list-adder').val(''); // Empty the input field after the new item is added
}
}
I didn’t have to add the new item to the DOM directly in my function, I just let
render
handle that!
Templating engines like Mustache.js really help when you want to abstract away something
like iterating through some data and displaying it. What I had to keep clear in my mind
when working on this app, though, was that the DOM and the JavaScript data
variable
are two separate entities. I always made sure that data
contained the correct information
whenever an action occurred (like updating a list item). Then, it’s easy to simply call
the render()
method and update the DOM.
See the Pen [GetItDone](https://codepen.io/acrenwelge/pen/bgroGJ/) by Andrew ([@acrenwelge](https://codepen.io/acrenwelge)) on [CodePen](https://codepen.io).