58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
Template.containerDialog.helpers({
|
|
container: function(){
|
|
return Containers.findOne(this.containerId);
|
|
}
|
|
});
|
|
|
|
Template.containerDialog.events({
|
|
"color-change": function(event, instance){
|
|
Containers.update(instance.data.containerId, {$set: {color: event.color}});
|
|
},
|
|
"tap #deleteButton": function(event, instance){
|
|
Containers.softRemoveNode(instance.data.containerId);
|
|
GlobalUI.deletedToast(
|
|
instance.data.containerId,
|
|
"Containers", "Container and contents"
|
|
);
|
|
popDialogStack();
|
|
},
|
|
});
|
|
|
|
Template.containerEdit.events({
|
|
//TODO validate input (integer, non-negative, etc) for these inputs and give validation errors
|
|
"input #containerNameInput": function(event){
|
|
var name = Template.instance().find("#containerNameInput").value;
|
|
Containers.update(this._id, {
|
|
$set: {name: name}
|
|
}, {
|
|
removeEmptyStrings: false,
|
|
trimStrings: false,
|
|
});
|
|
},
|
|
"change #weightInput, input #weightInput": function(event){
|
|
var weight = +Template.instance().find("#weightInput").value;
|
|
Containers.update(this._id, {
|
|
$set: {weight: weight}
|
|
}, {
|
|
removeEmptyStrings: false,
|
|
});
|
|
},
|
|
"change #valueInput, input #valueInput": function(event){
|
|
var value = +Template.instance().find("#valueInput").value;
|
|
Containers.update(this._id, {
|
|
$set: {value: value}
|
|
}, {
|
|
removeEmptyStrings: false,
|
|
});
|
|
},
|
|
"input #containerDescriptionInput": function(event, instance){
|
|
var description = instance.find("#containerDescriptionInput").value;
|
|
Containers.update(this._id, {
|
|
$set: {description: description}
|
|
}, {
|
|
removeEmptyStrings: false,
|
|
trimStrings: false,
|
|
});
|
|
},
|
|
});
|