2022-11-10 21:22:32 +00:00
|
|
|
//
|
|
|
|
//module.exports = {getReviewsFromStorage, saveReviewsToStorage};
|
2022-11-10 01:35:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {Array<Object>} An array of reviews found in localStorage
|
|
|
|
*/
|
2022-11-10 21:22:32 +00:00
|
|
|
export function getReviewsFromStorage() {
|
2022-11-10 01:35:41 +00:00
|
|
|
let result = JSON.parse(localStorage.getItem('reviews'))
|
|
|
|
if (result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return new Array(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes in an array of reviews, converts it to a string, and then
|
|
|
|
* saves that string to 'reviews' in localStorage
|
|
|
|
* @param {Array<Object>} reviews An array of reviews
|
|
|
|
*/
|
2022-11-10 21:22:32 +00:00
|
|
|
export function saveReviewsToStorage(reviews) {
|
2022-11-10 01:35:41 +00:00
|
|
|
localStorage.setItem('reviews', JSON.stringify(reviews));
|
|
|
|
}
|