Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Update

The main problems were that I incorrectly assumed that I could use .get("contentIndex") to find the current index of an item (why not?) and that I should do this.content.set('prop', x) rather than this.set('content.prop', x) (if I understood right -- more about getters and setters here).

Here is another fiddle that shows a working example of adding, removing, and editing items in a list similar to this.

See also: minimalisitc example of add/remove items from Ember array

Original question

While trying to learn Ember I decided to attempt to make my own version of the "Contacts" example, but I'm having trouble. Here is the jsFiddle link and here are my questions:

  • Is the way I'm trying to handle adding and deleting contacts and phone numbers OK?

  • Why does adding a phone number to a contact that doesn't have any not update the view? (When there's already at least one then new ones appear immediately / without re-selecting the contact). What seems very strange to me is that the "# phone numbers" count updates but not the {{collection}} in the detail view.

  • Why doesn't delete cause the view to update?

HTML / HandleBars

<div id="my-app">
<script type="text/x-handlebars" data-template-name="main-view">
<h1>List view</h1>
{{#collection App.ListView contentBinding="App.contactsController.content"}}
    {{#with view.content}}
        {{fullName}},
        {{phoneNumbers.length}} {{pluralize phoneNumbers "phone number" "phone numbers"}},
        {{emailAddresses.length}} {{pluralize emailAddresses "email address" "email addresses"}} 
    {{/with}}
{{/collection}}
<hr>
<h1>Detail view</h1>
{{#view contentBinding="App.selectedContactController.content"}}
    {{#with view.content}}
        <h2>Phone numbers <button {{action addPhoneNumber target="App.selectedContactController"}}>+</button></h2>
        {{#if phoneNumbers}}
            {{#collection contentBinding="phoneNumbers" tagName="ul" itemViewClass="App.PhoneNumberView"}}
                {{#with view.content}} 
                {{#if name}}{{name}}{{else}}<span class="placeholder">(label)</span>{{/if}}:
                {{#if content}}{{content}}{{else}}<span class="placeholder">(number)</span>{{/if}}
                {{/with}}
                <button {{action deletePhoneNumber context="this"}}>-</button>
            {{/collection}}
        {{/if}}
        {{#if emailAddresses}}
            <h2>Email addresses</h2>
            <ul>
            {{#each emailAddresses}}
                <li>{{name}}: {{content}}</li>
            {{/each}}
            </ul>
        {{/if}}
    {{/with}}
{{/view}}    
</script>
</div>

JavaScript / Ember

// Application
App = Ember.Application.create({
    VERSION: "1.0.0", 
    rootElement: $("#my-app"), 
});


// Model class
App.Contact = Ember.Object.extend({
    firstName: "(first)",
    lastName: "(last)",
    fullName: function() {
        var firstName = this.get('firstName');
        var lastName = this.get('lastName');
        if (firstName !== "" && lastName !== "") {
             return firstName + " " + lastName;
        }
        else if (firstName !== "") {
             return firstName;
        }
        else if (lastName !== "") {
             return "(Your title here) " + lastName;
        }
        else
             return "(mystery person)";
    }.property('firstName', 'lastName'),
    phoneNumbers: [],
    emailAddresses: [],

});


// ***************************************************    
// Controllers
App.contactsController = Ember.ArrayController.create({
    content: [],
    addContact: function(contact) {
        this.content.push(contact);
    }
});

App.selectedContactController = Ember.Object.create({
    content: null,
    addPhoneNumber: function() {
        console.log("selectedContactController::addPhoneNumber");
        this.get('content.phoneNumbers').pushObject("");
    },
});

// ***************************************************
// Views
App.ListView = Ember.CollectionView.extend({
    tagName: "ul",
    itemViewClass: Ember.View.extend({
        classNameBindings: ['isSelected'], 
        click: function(e) {
            // Select contact (maybe we should have a designated method for this...)
            App.selectedContactController.set('content', this.get('content'));
        },
        isSelected: function() {
            return (App.selectedContactController.get('content') === this.get('content') ? 'selected' : false);
        }.property('App.selectedContactController.content'),
    }),
});

App.PhoneNumberView = Ember.View.extend({
    contactBinding: "App.selectedContactController.content",
    deletePhoneNumber: function(e) {
        console.log("App.PhoneNumberView::deletePhoneNumber");
        var indexToDelete = this.get('contentIndex');
        var numbers = this.contact.phoneNumbers;
        console.log("Removed: ", numbers.splice(indexToDelete ,1));
        App.selectedContactController.content.set("phoneNumbers", numbers);
    },
});


// ***************************************************
// Handlebars helpers
Ember.Handlebars.registerHelper('pluralize', function(number, singular, plural) {
    if (typeof number !== "number")
        number = this.get(number).length;
    return (number === 1 ? singular : plural);
});

Ember.Handlebars.registerHelper('editable', function(path, options) {
    options.hash.valueBinding = path;
    return Ember.Handlebars.helpers.view.call(this, App.EditField, options);
});

// ***************************************************
// Init / dummy data setup
var alice = App.Contact.create({
    firstName: "Alice",
    lastName: "Allison",
    phoneNumbers: [
                    {name: "Mobile", content: ["+1 123-456-7890"]},
                    {name: "Work", content: ["+1 612-777-5555"]},
                    {name: "Home", content: ["+1 651-111-2222"]}
                 ],
    emailAddresses: [
                    {name: "Personal", content: ["alice@example.com"]}
                 ]
});
var bob = App.Contact.create({
    firstName: "Bob",
    lastName: "Bobson",
    phoneNumbers: [
                    {name: "Haus", content: ["+44 63 444-6758"]}
                 ],
    emailAddresses: [
                    {name: "Persönliche", content: ["bob@example.net"]},
                    {name: "Geheimnis", content: ["agent@example.gov"]}
                 ]

});
var carl= App.Contact.create({
    firstName: "Carl",
    lastName: "Carlson",
    phoneNumbers: [],
    emailAddresses: []

});
App.contactsController.addContact(alice);
App.contactsController.addContact(bob);
App.contactsController.addContact(carl);

// Render main view (alternatively, take off it's template-name or define as ApplicationView)
Ember.View.create({templateName: "main-view"}).appendTo("#my-app");
share|improve this question
I think part of my confusion is not understanding the difference between App.controller.get('content') and App.controller.content (always use the .get one, right?). – iX3 Oct 5 '12 at 21:34

1 Answer

up vote 1 down vote accepted

A few things, which may or may not get your project to work:

  • [deletia]

  • You should use the ArrayController's accessor methods for mutating your array, not directly accessing content yourself. Call pushObject on the controller, not the content.

share|improve this answer
I will try that, thanks. I think I misunderstood getPath (thought it was deprecated github.com/emberjs/ember.js/pull/410 but I think that was only at a global scope) – iX3 Oct 6 '12 at 1:17
2  
since 1.0.pre get works like getPath. You can now use get('object.thing.thang'). No need to use getPath anymore. – Ryan Oct 6 '12 at 1:54
Ah, nice. I do recall a discussion on why that hadn't been the default behaviour, and it had to due with performance concerns. I was also looking at the source while writing my response and it was still the old function. Very odd. – Christopher Swasey Oct 6 '12 at 18:47
Using .pushObject on the controller solved the "not updating on add" problem, but I am still stuck on the delete part. I will try to figure it out and update the question today. If I can't, maybe I should move the delete part to a separate question. – iX3 Oct 8 '12 at 16:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.