fix error messaging.

This commit is contained in:
Francis Cao
2026-05-26 15:57:00 -07:00
parent 7d4c68cebe
commit a63c769ab6
2 changed files with 6 additions and 4 deletions
@@ -5,6 +5,7 @@ import { LoadingPanel } from '@/components/common/LoadingPanel';
import { useResultQuery } from '@/components/hooks';
import { getClientAuthToken } from '@/lib/client';
import { formatLongNumber } from '@/lib/format';
import { SNAPSHOT_UNAVAILABLE_ERROR } from '@/queries/sql/heatmap/ensureHeatmapSnapshot';
import type { HeatmapMode, HeatmapPoint, HeatmapResult, HeatmapSnapshot } from '@/queries/sql';
import styles from './Heatmap.module.css';
@@ -299,7 +300,7 @@ function ClickHeatmapView({
{showPage && snapshot?.status === 'failed' && (
<Text color="muted" className={styles.snapshotMessage}>
{snapshot.error || 'Page screenshot unavailable.'}
{SNAPSHOT_UNAVAILABLE_ERROR}
</Text>
)}
@@ -447,7 +448,7 @@ function ScrollHeatmapView({
{showPage && snapshot?.status === 'failed' && (
<Text color="muted" className={styles.snapshotMessage}>
{snapshot.error || 'Page screenshot unavailable.'}
{SNAPSHOT_UNAVAILABLE_ERROR}
</Text>
)}
@@ -13,6 +13,7 @@ const SNAPSHOT_STATUS = {
const SNAPSHOT_RETRY_DELAY_MS = 15 * 60 * 1000;
const SNAPSHOT_PENDING_WINDOW_MS = 30 * 1000;
const SNAPSHOT_DEVICE_SCALE_FACTOR = 1;
export const SNAPSHOT_UNAVAILABLE_ERROR = 'Page screenshot unavailable.';
export type HeatmapSnapshotStatus = (typeof SNAPSHOT_STATUS)[keyof typeof SNAPSHOT_STATUS];
export interface HeatmapSnapshotImage {
@@ -682,7 +683,7 @@ export async function ensureHeatmapSnapshot({
status: SNAPSHOT_STATUS.failed,
mimeType: null,
imageData: null,
error: 'Website domain is not configured for screenshot capture.',
error: SNAPSHOT_UNAVAILABLE_ERROR,
});
const failed = await findSnapshot(websiteId, urlPath, viewportW, viewportH);
@@ -741,7 +742,7 @@ export async function ensureHeatmapSnapshot({
status: SNAPSHOT_STATUS.failed,
mimeType: null,
imageData: null,
error: error instanceof Error ? error.message.slice(0, 500) : 'Screenshot capture failed.',
error: SNAPSHOT_UNAVAILABLE_ERROR,
});
}