Implementing a trello-like task board using knockout

405 Views Asked by At

I'm trying to use knockout-sortable in order to implement a task board which resembles trello.

I'm getting the list of tasks from a json ajax call, and each task element contains a status ("doing", "done"...).

It's really easy to create a model right from the json using the knockout mapping plugin, and I can even use computed observer functions to filter the list of tasks in the model and read the appropriate list into each individual list. Something like this:

$.getJSON( "/tasks/list/", function( data ) {
    viewModel = ko.mapping.fromJS(data);

    viewModel.ToDoTasks = ko.computed(function() {
        var status = "To Do";
        return ko.utils.arrayFilter(this.tasks(), function(item) {
                return (item.status() === status);
            });
    }, viewModel);

...

<div class="widget_contents noPadding" 
     data-bind="sortable: { template: 'taskTmpl', data: ToDoTasks }">
</div>

The thing is, that when dropping from one list to another, I get an error, since knockout doesn't know how to update a list provided using an observable.

I tried implementing the computed observable as a read-write, but I'm getting the same error:

viewModel.ToDoTasks = ko.computed({
        read: function() {
            var status = "To Do";
            return ko.utils.arrayFilter(this.tasks(), function(item) {
                    return (item.status() === status);
                });
            },
        write: function (value) {
            console.log(value);
            // Will update  the status field for the task in the array...
        },
        owner: viewModel
    });

I know it's possible to achieve this by splitting the list of tasks, so each status has its own observable list, and then merge it back when sending back to the server, but I wonder if there's a cleaner way, without having to resort to this.

0

There are 0 best solutions below