@sentry/browser
Version:
Official Sentry SDK for browsers
67 lines (55 loc) • 1.81 kB
JavaScript
import { logger, getCurrentScope, getClient, lastEventId, getReportDialogEndpoint } from '@sentry/core';
import { DEBUG_BUILD } from './debug-build.js';
import { WINDOW } from './helpers.js';
/**
* Present the user with a report dialog.
*
* @param options Everything is optional, we try to fetch all info need from the current scope.
*/
function showReportDialog(options = {}) {
const optionalDocument = WINDOW.document ;
const injectionPoint = optionalDocument?.head || optionalDocument?.body;
// doesn't work without a document (React Native)
if (!injectionPoint) {
DEBUG_BUILD && logger.error('[showReportDialog] Global document not defined');
return;
}
const scope = getCurrentScope();
const client = getClient();
const dsn = client?.getDsn();
if (!dsn) {
DEBUG_BUILD && logger.error('[showReportDialog] DSN not configured');
return;
}
const mergedOptions = {
...options,
user: {
...scope.getUser(),
...options.user,
},
eventId: options.eventId || lastEventId(),
};
const script = WINDOW.document.createElement('script');
script.async = true;
script.crossOrigin = 'anonymous';
script.src = getReportDialogEndpoint(dsn, mergedOptions);
const { onLoad, onClose } = mergedOptions;
if (onLoad) {
script.onload = onLoad;
}
if (onClose) {
const reportDialogClosedMessageHandler = (event) => {
if (event.data === '__sentry_reportdialog_closed__') {
try {
onClose();
} finally {
WINDOW.removeEventListener('message', reportDialogClosedMessageHandler);
}
}
};
WINDOW.addEventListener('message', reportDialogClosedMessageHandler);
}
injectionPoint.appendChild(script);
}
export { showReportDialog };
//# sourceMappingURL=report-dialog.js.map