forked from nnupoor-zz/js_designpatterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflyweight.js
41 lines (39 loc) · 1 KB
/
flyweight.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
//only common data here is model and brand,
//and created a flyweight object, that saves memory
var Car = function(model, brand) {
this.model = model;
this.brand = brand;
}
//carFactory using the common car model/method
var carFactory = (function() {
var existingCars = {}, existingCar;
return {
createCar: function(model, brand) {
existingCar = existingCars[model];
if (!!existingCar) {
return existingCar;
}
var car = new Car(model, brand);
existingCars[model] = car;
return car;
}
}
})();
//carProductionManager using the common car model/method
var carProductionManager = (function() {
var carDb = {};
return {
addCar: function(carId, model, brand, color, carType){
var car = carFactory.createCar(model, brand);
carDb[carId] = {
color: color,
type: carType,
car: car
}
},
repaintCar: function(carId, newColor) {
var carData = carDb[carId];
carData.color = newColor
}
}
})();