This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modules/projectHistory.ts

52 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-10-17 11:14:07 +00:00
export interface ListHistory {
id: number;
}
export function getHistory(): ListHistory[] {
2021-07-06 20:22:57 +00:00
const savedHistory = localStorage.getItem('listHistory')
if (savedHistory === null) {
return []
}
return JSON.parse(savedHistory)
}
function saveHistory(history: ListHistory[]) {
if (history.length === 0) {
localStorage.removeItem('listHistory')
return
}
localStorage.setItem('listHistory', JSON.stringify(history))
}
2021-07-06 20:22:57 +00:00
export function saveListToHistory(list: ListHistory) {
const history: ListHistory[] = getHistory()
2021-07-06 20:22:57 +00:00
// Remove the element if it already exists in history, preventing duplicates and essentially moving it to the beginning
history.forEach((l, i) => {
if (l.id === list.id) {
2021-07-06 20:22:57 +00:00
history.splice(i, 1)
}
})
2021-07-06 20:22:57 +00:00
// Add the new list to the beginning of the list
2021-07-06 20:22:57 +00:00
history.unshift(list)
if (history.length > 5) {
history.pop()
}
saveHistory(history)
}
export function removeListFromHistory(list: ListHistory) {
const history: ListHistory[] = getHistory()
history.forEach((l, i) => {
if (l.id === list.id) {
history.splice(i, 1)
}
})
saveHistory(history)
2021-07-06 20:22:57 +00:00
}