import type { Player } from "@/api"; export const SaveLastVisitedToLocalStorage = (data: Player): void => { const a = JSON.parse(localStorage.getItem("recent-visited") || "") || []; if (a.length === 0) { a.unshift(data); } else if (a.length === 9) { if (a.find((p: Player) => p.steamid64 === data.steamid64)) { a.shift(); a.splice( a.findIndex((p: Player) => p.steamid64 === data.steamid64), 1 ); a.unshift(data); } else if (!a.find((p: Player) => p.steamid64 === data.steamid64)) { a.shift(); a.unshift(data); } } else if (a.length > 0 && a.length < 9) { if (a.find((p: Player) => p.steamid64 === data.steamid64)) { a.splice( a.findIndex((p: Player) => p.steamid64 === data.steamid64), 1 ); a.unshift(data); } else if (!a.find((p: Player) => p.steamid64 === data.steamid64)) { a.unshift(data); } } localStorage.setItem("recent-visited", JSON.stringify(a)); };