Add stock status history tracking and timeline visualization

- Create stock_status_history table to track status changes over time
- Add stockStatusHistoryQueries with getByProductId, recordChange, getStats
- Update scheduler to record status changes
- Update product creation and manual refresh to record initial/changed status
- Add GET /products/:id/stock-history API endpoint
- Create StockTimeline component with:
  - Visual timeline bar showing in-stock (green) vs out-of-stock (red)
  - Availability percentage
  - Outage count and duration stats
- Integrate timeline into ProductDetail page

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
clucraft 2026-01-22 14:23:55 -05:00
parent 4928d6b9d3
commit 6c2aece1e8
8 changed files with 528 additions and 6 deletions

View file

@ -597,3 +597,144 @@ export const priceHistoryQueries = {
return result.rows[0] || null;
},
};
// Stock Status History types and queries
export interface StockStatusHistory {
id: number;
product_id: number;
status: StockStatus;
changed_at: Date;
}
export interface StockStatusStats {
availability_percent: number;
outage_count: number;
avg_outage_days: number | null;
longest_outage_days: number | null;
current_status: StockStatus;
days_in_current_status: number;
}
export const stockStatusHistoryQueries = {
// Get all status changes for a product
getByProductId: async (productId: number, days?: number): Promise<StockStatusHistory[]> => {
let query = `
SELECT * FROM stock_status_history
WHERE product_id = $1
`;
const values: (number | string)[] = [productId];
if (days) {
query += ` AND changed_at >= CURRENT_TIMESTAMP - ($2 || ' days')::interval`;
values.push(days.toString());
}
query += ' ORDER BY changed_at ASC';
const result = await pool.query(query, values);
return result.rows;
},
// Get the most recent status for a product
getLatest: async (productId: number): Promise<StockStatusHistory | null> => {
const result = await pool.query(
`SELECT * FROM stock_status_history
WHERE product_id = $1
ORDER BY changed_at DESC
LIMIT 1`,
[productId]
);
return result.rows[0] || null;
},
// Record a status change (only if status actually changed)
recordChange: async (productId: number, status: StockStatus): Promise<StockStatusHistory | null> => {
// First check if this is actually a change
const latest = await stockStatusHistoryQueries.getLatest(productId);
// If status is the same as the last recorded status, don't create a new record
if (latest && latest.status === status) {
return null;
}
const result = await pool.query(
`INSERT INTO stock_status_history (product_id, status)
VALUES ($1, $2)
RETURNING *`,
[productId, status]
);
return result.rows[0];
},
// Calculate availability statistics
getStats: async (productId: number, days: number = 30): Promise<StockStatusStats | null> => {
// Get all status changes within the period
const history = await stockStatusHistoryQueries.getByProductId(productId);
if (history.length === 0) {
return null;
}
const now = new Date();
const periodStart = new Date(now.getTime() - days * 24 * 60 * 60 * 1000);
// Calculate time spent in each status
let inStockMs = 0;
let outOfStockMs = 0;
const outages: number[] = []; // Duration of each outage in ms
let currentOutageStart: Date | null = null;
for (let i = 0; i < history.length; i++) {
const entry = history[i];
const entryTime = new Date(entry.changed_at);
const nextEntry = history[i + 1];
const nextTime = nextEntry ? new Date(nextEntry.changed_at) : now;
// Only count time within our period
const segmentStart = entryTime < periodStart ? periodStart : entryTime;
const segmentEnd = nextTime;
if (segmentEnd <= periodStart) continue; // This segment is before our period
const duration = segmentEnd.getTime() - segmentStart.getTime();
if (entry.status === 'in_stock') {
inStockMs += duration;
if (currentOutageStart) {
// Outage ended
outages.push(entryTime.getTime() - currentOutageStart.getTime());
currentOutageStart = null;
}
} else if (entry.status === 'out_of_stock') {
outOfStockMs += duration;
if (!currentOutageStart) {
currentOutageStart = entryTime;
}
}
}
const totalMs = inStockMs + outOfStockMs;
const availabilityPercent = totalMs > 0 ? Math.round((inStockMs / totalMs) * 100) : 0;
const avgOutageDays = outages.length > 0
? outages.reduce((a, b) => a + b, 0) / outages.length / (24 * 60 * 60 * 1000)
: null;
const longestOutageDays = outages.length > 0
? Math.max(...outages) / (24 * 60 * 60 * 1000)
: null;
const currentStatus = history[history.length - 1].status;
const lastChangeTime = new Date(history[history.length - 1].changed_at);
const daysInCurrentStatus = Math.floor((now.getTime() - lastChangeTime.getTime()) / (24 * 60 * 60 * 1000));
return {
availability_percent: availabilityPercent,
outage_count: outages.length,
avg_outage_days: avgOutageDays ? Math.round(avgOutageDays * 10) / 10 : null,
longest_outage_days: longestOutageDays ? Math.round(longestOutageDays * 10) / 10 : null,
current_status: currentStatus,
days_in_current_status: daysInCurrentStatus,
};
},
};