2021-05-27 13:57:20 +10:00
|
|
|
"use strict";
|
2021-05-27 14:22:28 +10:00
|
|
|
var vm = (function () {
|
|
|
|
var catalog = ko.observableArray([
|
|
|
|
Product(1, "T-Shirt", 10.0, 20),
|
|
|
|
Product(2, "Trousers", 20.0, 10),
|
|
|
|
Product(3, "Shirt", 15.0, 20),
|
|
|
|
Product(4, "Shorts", 5.0, 10),
|
|
|
|
]);
|
|
|
|
|
|
|
|
var newProduct = Product("", "", "", "");
|
|
|
|
var clearNewProduct = function () {
|
|
|
|
newProduct.name("");
|
|
|
|
newProduct.price("");
|
|
|
|
newProduct.stock("");
|
|
|
|
};
|
|
|
|
|
|
|
|
var addProduct = function (context) {
|
|
|
|
var id = new Date().valueOf(); // random id from time
|
|
|
|
|
|
|
|
var product = Product(
|
|
|
|
id,
|
|
|
|
context.name(),
|
|
|
|
context.price(),
|
|
|
|
context.stock()
|
|
|
|
);
|
|
|
|
catalog.push(product);
|
|
|
|
clearNewProduct();
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
catalog: catalog,
|
|
|
|
newProduct: newProduct,
|
|
|
|
addProduct: addProduct,
|
|
|
|
};
|
2021-05-27 12:46:22 +10:00
|
|
|
})();
|
2021-05-27 14:22:28 +10:00
|
|
|
ko.applyBindings(vm);
|