Skip to content

Instantly share code, notes, and snippets.

@daffl
Last active May 17, 2016 20:39
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save daffl/6665992 to your computer and use it in GitHub Desktop.
Save daffl/6665992 to your computer and use it in GitHub Desktop.
Feathers real-time todos
var feathers = require('feathers');
var bodyParser = require('body-parser');
// An in-memory service implementation
var memory = require('feathers-memory');
// Create an in-memory CRUD service for our Todos
var todoService = memory();
var app = feathers()
// Set up REST and SocketIO APIs
.configure(feathers.rest())
.configure(feathers.socketio())
// Parse HTTP bodies
.use(bodyParser.json())
.use(bodyParser.urlencoded({ extended: true }))
// Host the current directory (for index.html)
.use(feathers.static(__dirname))
// Host our Todos service on the /todos path
.use('/todos', todoService);
app.listen(8080);
<!DOCTYPE html>
<html>
<head>
<title>Feathers real-time Todos</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<style type="text/css">
.done {
text-decoration: line-through;
}
</style>
<div class="container" id="todos">
<h1>Feathers real-time Todos</h1>
<ul class="todos list-unstyled"></ul>
<form role="form" class="create-todo">
<div class="form-group">
<input type="text" class="form-control" name="description" placeholder="Add a new Todo">
</div>
<button type="submit" class="btn btn-info col-md-12">Add Todo</button>
</form>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://rawgit.com/feathersjs/feathers-client/release/dist/feathers.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
var el = $('#todos');
var socket = io();
var app = feathers()
.configure(feathers.socketio(socket));
var todos = app.service('todos');
function getElement(todo) {
return el.find('[data-id="' + todo.id + '"]')
}
function addTodo(todo) {
var html = '<li class="page-header checkbox" data-id="' + todo.id + '">' +
'<label><input type="checkbox" name="done">' +
todo.text +
'</label><a href="javascript://" class="pull-right delete">' +
'<span class="glyphicon glyphicon-remove"></span>' +
'</a></li>';
el.find('.todos').append(html);
updateTodo(todo);
}
function removeTodo(todo) {
getElement(todo).remove();
}
function updateTodo(todo) {
var element = getElement(todo);
var checkbox = element.find('[name="done"]').removeAttr('disabled');
element.toggleClass('done', todo.complete);
checkbox.prop('checked', todo.complete);
}
el.on('submit', 'form', function (ev) {
var field = $(this).find('[name="description"]');
todos.create({
text: field.val(),
complete: false
});
field.val('');
ev.preventDefault();
});
el.on('click', '.delete', function (ev) {
var id = $(this).parents('li').data('id');
todos.remove(id);
ev.preventDefault();
});
el.on('click', '[name="done"]', function(ev) {
var id = $(this).parents('li').data('id');
$(this).attr('disabled', 'disabled');
todos.update(id, {
complete: $(this).is(':checked')
});
});
todos.on('updated', updateTodo);
todos.on('removed', removeTodo);
todos.on('created', addTodo);
todos.find(function(error, todos) {
todos.forEach(addTodo);
});
</script>
</body>
</html>
@hotdogee
Copy link

The text of a todo is lost after being marked as done. Either include the original text in the update, or use patch and patched instead of update and updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment