Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 1x 1x 1x 1x 1x 1x 2x 2x 3x 3x 34x 3x 3x 3x 3x 3x 3x 2x 1x 5x 5x 5x 4x 19x 4x 3x 4x 1x 3x 3x 1x 3x 3x 4x 4x 3x 2x 2x 4x 4x | import { ref, computed } from 'vue';
import type { LucideIcon } from 'lucide-vue-next';
import {
LayoutGrid,
Users,
UserCheck,
Package,
Warehouse,
ArrowUpDown,
ShoppingCart,
ClipboardList,
FileText,
Receipt,
Clock,
Settings,
} from 'lucide-vue-next';
export interface RecentlyViewedItem {
url: string;
title: string;
icon?: LucideIcon;
timestamp: number;
}
const STORAGE_KEY = 'recently_viewed_items';
const MAX_ITEMS = 10;
const recentlyViewed = ref<RecentlyViewedItem[]>([]);
// Route patterns to friendly names and icons
const routePatterns: Array<{
pattern: RegExp;
title: (url: string) => string;
icon: LucideIcon;
}> = [
{
pattern: /^\/dashboard/,
title: () => 'Dashboard',
icon: LayoutGrid,
},
{
pattern: /^\/customers\/\d+$/,
title: (url) => {
const match = url.match(/\/customers\/(\d+)/);
return match ? `Customer #${match[1]}` : 'Customer';
},
icon: Users,
},
{
pattern: /^\/customers/,
title: () => 'Customers',
icon: Users,
},
{
pattern: /^\/contacts\/\d+$/,
title: (url) => {
const match = url.match(/\/contacts\/(\d+)/);
return match ? `Contact #${match[1]}` : 'Contact';
},
icon: UserCheck,
},
{
pattern: /^\/contacts/,
title: () => 'Contacts',
icon: UserCheck,
},
{
pattern: /^\/products\/\d+$/,
title: (url) => {
const match = url.match(/\/products\/(\d+)/);
return match ? `Product #${match[1]}` : 'Product';
},
icon: Package,
},
{
pattern: /^\/products/,
title: () => 'Products & Services',
icon: Package,
},
{
pattern: /^\/suppliers\/\d+$/,
title: (url) => {
const match = url.match(/\/suppliers\/(\d+)/);
return match ? `Supplier #${match[1]}` : 'Supplier';
},
icon: Warehouse,
},
{
pattern: /^\/suppliers/,
title: () => 'Suppliers',
icon: Warehouse,
},
{
pattern: /^\/stock-movements\/\d+$/,
title: (url) => {
const match = url.match(/\/stock-movements\/(\d+)/);
return match ? `Stock Movement #${match[1]}` : 'Stock Movement';
},
icon: ArrowUpDown,
},
{
pattern: /^\/stock-movements/,
title: () => 'Stock Movements',
icon: ArrowUpDown,
},
{
pattern: /^\/purchase-orders\/\d+$/,
title: (url) => {
const match = url.match(/\/purchase-orders\/(\d+)/);
return match ? `Purchase Order #${match[1]}` : 'Purchase Order';
},
icon: ShoppingCart,
},
{
pattern: /^\/purchase-orders/,
title: () => 'Purchase Orders',
icon: ShoppingCart,
},
{
pattern: /^\/jobcards\/\d+$/,
title: (url) => {
const match = url.match(/\/jobcards\/(\d+)/);
return match ? `Jobcard #${match[1]}` : 'Jobcard';
},
icon: ClipboardList,
},
{
pattern: /^\/jobcards/,
title: () => 'Jobcards',
icon: ClipboardList,
},
{
pattern: /^\/quotes\/\d+$/,
title: (url) => {
const match = url.match(/\/quotes\/(\d+)/);
return match ? `Quote #${match[1]}` : 'Quote';
},
icon: FileText,
},
{
pattern: /^\/quotes/,
title: () => 'Quotes',
icon: FileText,
},
{
pattern: /^\/invoices\/\d+$/,
title: (url) => {
const match = url.match(/\/invoices\/(\d+)/);
return match ? `Invoice #${match[1]}` : 'Invoice';
},
icon: Receipt,
},
{
pattern: /^\/invoices/,
title: () => 'Invoices',
icon: Receipt,
},
{
pattern: /^\/time-entries/,
title: () => 'Timesheet',
icon: Clock,
},
{
pattern: /^\/administration/,
title: () => 'Administration',
icon: Settings,
},
];
function getRouteInfo(url: string): { title: string; icon?: LucideIcon } {
// Remove query parameters and hash
const cleanUrl = url.split('?')[0].split('#')[0];
for (const route of routePatterns) {
if (route.pattern.test(cleanUrl)) {
return {
title: route.title(cleanUrl),
icon: route.icon,
};
}
}
// Fallback: use URL path
const pathParts = cleanUrl.split('/').filter(Boolean);
const lastPart = pathParts[pathParts.length - 1] || 'Home';
return {
title: lastPart.charAt(0).toUpperCase() + lastPart.slice(1).replace(/-/g, ' '),
};
}
function loadFromStorage(): RecentlyViewedItem[] {
Iif (typeof window === 'undefined') {
return [];
}
try {
const stored = localStorage.getItem(STORAGE_KEY);
if (stored) {
return JSON.parse(stored);
}
} catch (error) {
console.error('Failed to load recently viewed items:', error);
}
return [];
}
function saveToStorage(items: RecentlyViewedItem[]) {
Iif (typeof window === 'undefined') {
return;
}
try {
localStorage.setItem(STORAGE_KEY, JSON.stringify(items));
} catch (error) {
console.error('Failed to save recently viewed items:', error);
}
}
function shouldTrackUrl(url: string): boolean {
// Don't track certain routes
const excludedPatterns = [
/^\/login/,
/^\/logout/,
/^\/password/,
/^\/two-factor/,
/^\/verification/,
/^\/install/,
];
return !excludedPatterns.some(pattern => pattern.test(url));
}
export function useRecentlyViewed() {
// Initialize from storage
if (recentlyViewed.value.length === 0) {
recentlyViewed.value = loadFromStorage();
}
function addItem(url: string, customTitle?: string) {
if (!shouldTrackUrl(url)) {
return;
}
// Remove query parameters for tracking (but keep them in the stored URL)
const cleanUrl = url.split('?')[0].split('#')[0];
// Remove existing item with same URL
recentlyViewed.value = recentlyViewed.value.filter(
item => item.url.split('?')[0].split('#')[0] !== cleanUrl
);
// Get route info
const routeInfo = getRouteInfo(cleanUrl);
// Add new item at the beginning
const newItem: RecentlyViewedItem = {
url: url, // Keep full URL with query params
title: customTitle || routeInfo.title,
icon: routeInfo.icon,
timestamp: Date.now(),
};
recentlyViewed.value.unshift(newItem);
// Keep only the most recent items
Iif (recentlyViewed.value.length > MAX_ITEMS) {
recentlyViewed.value = recentlyViewed.value.slice(0, MAX_ITEMS);
}
// Save to storage
saveToStorage(recentlyViewed.value);
}
function removeItem(url: string) {
recentlyViewed.value = recentlyViewed.value.filter(
item => item.url !== url
);
saveToStorage(recentlyViewed.value);
}
function clearAll() {
recentlyViewed.value = [];
saveToStorage([]);
}
const items = computed(() => recentlyViewed.value);
return {
items,
addItem,
removeItem,
clearAll,
};
}
|