chromium/third_party/blink/perf_tests/speedometer21/resources/todomvc/architecture-examples/emberjs-debug/source/app/services/repo.js

import Ember from 'ember';
import localStorageMemory from './memory';

export default Ember.Service.extend({
    lastId: 0,
    data: null,
    findAll() {
        return this.get('data') ||
            this.set('data', JSON.parse(window.localStorageMemory.getItem('todos') || '[]'));
    },

    add(attrs) {
        let todo = Object.assign({ id: this.incrementProperty('lastId') }, attrs);
        this.get('data').pushObject(todo);
        this.persist();
        return todo;
    },

    delete(todo) {
        this.get('data').removeObject(todo);
        this.persist();
    },

    persist() {
        window.localStorageMemory.setItem('todos', JSON.stringify(this.get('data')));
    }
});