-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
67 lines (56 loc) · 1.73 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// La clase ProductManager administra los productos que van a ser visualizados.
class ProductManager {
constructor() {
this.products = [];
}
addProducts(product) {
const prod = this.products.find(prod => prod.code === prod.code)
if(prod){
console.log("Producto ya encontrado")
} else {
this.products.push(product)
}
}
getProducts() {
console.log(this.products)
}
getProductById(id) {
const prod = this.products.find (prod => prod.id === id)
if(prod) {
console.log(prod)
} else {
console.log("Producto no encontrado")
}
}
}
// Creo clase Product para tener un control individual de los productos.
class Product {
constructor (title, description, price, thumbnail, code, stock) {
this.title = title
this.description = description
this.price = price
this.thumbnail = thumbnail
this.code = code
this.stock = stock
this.id = Product.incrementarId() // Mi Id es el resultado de lo que devuelva este metodo.
}
// Defino un metodo de CLASE
static incrementarId () {
//Si existe esta propiedad, la auemento en 1 o la creo.
if(this.idIncrement) {
this.idIncrement++
} else {
this.idIncrement = 1
}
return this.idIncrement
}
}
const producto1 = new Product("Arroz", "Rico", 300, "AA123LE", 20, [])
const producto2 = new Product("Lentejas", "Rico", 300, "AA123LE", 20, [])
const producto3 = new Product("Garbanzos", "Rico", 300, "AA123LE", 20, [])
const productManager = new ProductManager()
productManager.addProducts(producto1)
productManager.addProducts(producto2)
productManager.addProducts(producto3)
productManager.getProducts()
productManager.getProductById(2)