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).
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");