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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import debounce from 'lodash/debounce.js';
import Vuex from 'vuex';
import Vue from 'vue';
import weightUtils from './utils/weight.js';
import dataTypes from './dataTypes.js';
const Library = dataTypes.Library;
const List = dataTypes.List;
const Category = dataTypes.Category;
const Item = dataTypes.Item;
const saveInterval = 10000;
Vue.use(Vuex);
const store = new Vuex.Store({
state: {
library: false,
isSaving: false,
syncToken: false,
lastSaveData: null,
loggedIn: false,
directiveInstances: {},
globalAlerts: [],
},
getters: {
activeList(state) {
return state.library.getListById(state.library.defaultListId);
},
},
mutations: {
setSyncToken(state, syncToken) {
state.syncToken = syncToken;
},
setLastSaveData(state, lastSaveData) {
state.lastSaveData = lastSaveData;
},
setIsSaving(state, isSaving) {
state.isSaving = isSaving;
},
logout(state) {
document.cookie = 'lp=; path=/; domain='+window.location.hostname+'; Max-Age=-99999999; SameSite=none; Secure=true;'; ;
state.library = false; // duplicate logic
state.loggedIn = false; // duplicate logic
},
setLoggedIn(state, loggedIn) {
state.loggedIn = loggedIn;
},
loadLibraryData(state, libraryData) {
const library = new Library();
try {
libraryData = JSON.parse(libraryData);
library.load(libraryData);
state.library = library;
} catch (err) {
state.globalAlerts.push({ message: 'An error occurred while loading your data.' });
}
state.lastSaveData = JSON.stringify(library.save());
},
clearLibraryData(state) {
state.library = false;
},
toggleSidebar(state) {
state.library.showSidebar = !state.library.showSidebar;
},
setDefaultList(state, list) {
state.library.defaultListId = list.id;
state.library.getListById(state.library.defaultListId).calculateTotals();
},
setTotalUnit(state, unit) {
state.library.totalUnit = unit;
},
toggleOptionalField(state, optionalField) {
state.library.optionalFields[optionalField] = !state.library.optionalFields[optionalField];
state.library.getListById(state.library.defaultListId).calculateTotals();
},
updateCurrencySymbol(state, currencySymbol) {
state.library.currencySymbol = currencySymbol;
},
newItem(state, { category, _isNew }) {
state.library.newItem({ category, _isNew });
state.library.getListById(state.library.defaultListId).calculateTotals();
},
newCategory(state, list) {
const category = state.library.newCategory({ list, _isNew: true });
state.library.getListById(state.library.defaultListId).calculateTotals();
},
newList(state) {
const list = state.library.newList();
const category = state.library.newCategory({ list });
list.calculateTotals();
state.library.defaultListId = list.id;
},
removeItem(state, item) {
state.library.removeItem(item.id);
state.library.getListById(state.library.defaultListId).calculateTotals();
},
removeCategory(state, category) {
state.library.removeCategory(category.id);
},
removeList(state, list) {
state.library.removeList(list.id);
},
reorderList(state, args) {
state.library.lists = arrayMove(state.library.lists, args.before, args.after);
},
reorderCategory(state, args) {
const list = state.library.getListById(args.list.id);
list.categoryIds = arrayMove(list.categoryIds, args.before, args.after);
state.library.getListById(state.library.defaultListId).calculateTotals();
},
reorderItem(state, args) {
const item = state.library.getItemById(args.itemId);
const dropCategory = state.library.getCategoryById(args.categoryId);
const list = state.library.getListById(args.list.id);
const originalCategory = state.library.findCategoryWithItemById(item.id, list.id);
const oldCategoryItem = originalCategory.getCategoryItemById(item.id);
const oldIndex = originalCategory.categoryItems.indexOf(oldCategoryItem);
if (originalCategory === dropCategory) {
dropCategory.categoryItems = arrayMove(dropCategory.categoryItems, oldIndex, args.dropIndex);
} else {
originalCategory.categoryItems.splice(oldIndex, 1);
dropCategory.categoryItems.splice(args.dropIndex, 0, oldCategoryItem);
}
state.library.getListById(state.library.defaultListId).calculateTotals();
},
addItemToCategory(state, args) {
const item = state.library.getItemById(args.itemId);
const dropCategory = state.library.getCategoryById(args.categoryId);
if (item && dropCategory) {
dropCategory.addItem({ itemId: item.id });
const categoryItem = dropCategory.getCategoryItemById(item.id);
const categoryItemIndex = dropCategory.categoryItems.indexOf(categoryItem);
if (categoryItem && categoryItemIndex !== -1) {
dropCategory.categoryItems = arrayMove(dropCategory.categoryItems, categoryItemIndex, args.dropIndex);
}
state.library.getListById(state.library.defaultListId).calculateTotals();
}
},
updateListName(state, updatedList) {
const list = state.library.getListById(updatedList.id);
list.name = updatedList.name;
},
updateListDescription(state, updatedList) {
const list = state.library.getListById(updatedList.id);
list.description = updatedList.description;
},
setExternalId(state, args) {
const list = state.library.getListById(args.list.id);
list.externalId = args.externalId;
},
updateCategoryName(state, updatedCategory) {
const category = state.library.getCategoryById(updatedCategory.id);
category.name = updatedCategory.name;
state.library.getListById(state.library.defaultListId).calculateTotals();
},
updateCategoryColor(state, updatedCategory) {
const category = state.library.getCategoryById(updatedCategory.id);
category.color = updatedCategory.color;
},
updateItem(state, item) {
state.library.updateItem(item);
state.library.getListById(state.library.defaultListId).calculateTotals();
},
updateItemLink(state, args) {
const item = state.library.getItemById(args.item.id);
item.url = args.url;
},
updateItemImageUrl(state, args) {
const item = state.library.getItemById(args.item.id);
item.imageUrl = args.imageUrl;
state.library.optionalFields.images = true;
bus.$emit('optionalFieldChanged');
},
updateItemImage(state, args) {
const item = state.library.getItemById(args.item.id);
item.image = args.image;
state.library.optionalFields.images = true;
bus.$emit('optionalFieldChanged');
},
updateItemUnit(state, unit) {
state.library.itemUnit = unit;
},
removeItemImage(state, updateItem) {
const item = state.library.getItemById(updateItem.id);
item.image = '';
},
updateCategoryItem(state, args) {
args.category.updateCategoryItem(args.categoryItem);
state.library.getListById(state.library.defaultListId).calculateTotals();
},
removeItemFromCategory(state, args) {
args.category.removeItem(args.itemId);
state.library.getListById(state.library.defaultListId).calculateTotals();
},
copyList(state, listId) {
const copiedList = state.library.copyList(listId);
state.library.defaultListId = copiedList.id;
},
importCSV(state, importData) {
const list = state.library.newList({});
let category;
const newCategories = {};
let item;
let categoryItem;
let row;
let i;
list.name = importData.name;
for (i in importData.data) {
row = importData.data[i];
if (newCategories[row.category]) {
category = newCategories[row.category];
} else {
category = state.library.newCategory({ list });
newCategories[row.category] = category;
}
item = state.library.newItem({ category, _isNew: false });
categoryItem = category.getCategoryItemById(item.id);
item.name = row.name;
item.description = row.description;
categoryItem.qty = parseFloat(row.qty);
item.weight = weightUtils.WeightToMg(parseFloat(row.weight), row.unit);
item.authorUnit = row.unit;
category.name = row.category;
}
list.calculateTotals();
state.library.defaultListId = list.id;
},
save() {
// no-op
},
addDirectiveInstance(state, { key, value }) {
state.directiveInstances[key] = value;
},
removeDirectiveInstance(state, key) {
delete state.directiveInstances[key];
},
},
actions: {
init(context) {
if (readCookie('lp')) {
return context.dispatch('loadRemote');
}
return new Promise((resolve, reject) => {
context.commit('setLoggedIn', false);
context.commit('clearLibraryData');
resolve();
});
},
loadRemote(context) {
return fetchJson('/getLibrary', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
credentials: 'same-origin',
})
.then((response) => {
context.commit('setSyncToken', response.syncToken);
if (response.library !== "") {
context.commit('loadLibraryData', response.library);
} else {
let freshLibrary = JSON.stringify(new Library().save());
context.commit('loadLibraryData', freshLibrary);
}
})
.catch((response) => {
if (response.status == 401) {
bus.$emit('unauthorized');
} else {
return new Promise((resolve, reject) => {
reject('An error occurred while fetching your data, please try again later.');
});
}
});
},
},
plugins: [
function save(store) {
store.subscribe(debounce((mutation, state) => {
const ignore = [
'setIsSaving',
'setSyncToken',
'setLastSaveData',
'logout',
'setLoggedIn',
'loadLibraryData',
'clearLibraryData',
];
if (!state.library || ignore.indexOf(mutation.type) > -1) {
return;
}
const saveData = JSON.stringify(state.library.save());
if (saveData == state.lastSaveData) {
return;
}
if (state.isSaving) {
setTimeout(() => { store.commit('save', true); }, saveInterval + 1);
return;
}
if (!saveData) {
saveData = JSON.stringify(state.library.save());
}
store.commit('setIsSaving', true);
store.commit('setLastSaveData', saveData);
return fetchJson('/saveLibrary', {
method: 'POST',
body: JSON.stringify({ syncToken: state.syncToken, library: saveData }),
headers: {
'Content-Type': 'application/json',
},
credentials: 'same-origin',
})
.then((response) => {
bus.$emit('lastSyncDate', new Date().toLocaleString());
store.commit('setSyncToken', response.syncToken);
store.commit('setIsSaving', false);
})
.catch((response) => {
store.commit('setIsSaving', false);
let error = 'An error occurred while attempting to save your data.';
if (response.json && response.json.status) {
error = response.json.status;
}
if (response.status == 401) {
bus.$emit('unauthorized', error);
} else {
alert(error); // TODO
}
});
}, saveInterval, { maxWait: saveInterval * 3 }));
},
],
});
export default store;