-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstore.js
83 lines (69 loc) · 1.59 KB
/
store.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
export default {
player: {
// Currency inventory
currencies: {
gold: 1000,
gem: 0
},
// Chests inventory
chests: {
chest1: 1
},
// Items inventory
items: {
},
options: {
audioEnabled: true
}
},
/**
* Dispatch rewards list to player inventories
* @param {Array} rewards
*/
pushRewards(rewards) {
for (let reward of rewards) {
updateInventories(this.player[reward.type], reward.id, reward.amount)
this.persist()
}
},
updateCurrency(id, amount) {
updateInventories(this.player.currencies, id, amount)
this.persist()
},
updateChest(id, amount) {
updateInventories(this.player.chests, id, amount, true)
this.persist()
},
/**
* Mount player save from browser localStorage
*/
mount() {
if(localStorage.getItem('player')) {
this.player = JSON.parse(localStorage.getItem('player'))
}
},
/**
* Persist user data in browser localStorage
*/
persist() {
const playerData = JSON.stringify(this.player);
localStorage.setItem('player', playerData);
}
}
/**
* Update user inventory with given object
* @param {Object} list inventory to update
* @param {String} id object id
* @param {Number} amount quantity to update. Can be negative or positive
* @param {Boolean} removeAttr Remove attribute if amount is equal to 0
*/
function updateInventories(list, id, amount, removeAttr = false) {
if (list[id] == undefined) {
list[id] = amount
} else {
list[id] = list[id] + amount
}
if (removeAttr && list[id] == 0) {
delete list[id]
}
}