@sentry/wizard
Version:
Sentry wizard helping you to configure your project
183 lines • 11.1 kB
JavaScript
;
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-argument */
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (g && (g = 0, op[0] && (_ = 0)), _) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.instrumentRootRouteV2 = void 0;
var recast = __importStar(require("recast"));
var path = __importStar(require("path"));
// @ts-expect-error - magicast is ESM and TS complains about that. It works though
var magicast_1 = require("magicast");
var templates_1 = require("../templates");
var utils_1 = require("../utils");
var root_common_1 = require("./root-common");
function instrumentRootRouteV2(rootFileName) {
return __awaiter(this, void 0, void 0, function () {
var rootRouteAst, exportsAst, namedExports, foundErrorBoundary;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, magicast_1.loadFile)(path.join(process.cwd(), 'app', rootFileName))];
case 1:
rootRouteAst = _a.sent();
exportsAst = rootRouteAst.exports.$ast;
namedExports = exportsAst.body.filter(function (node) { return node.type === 'ExportNamedDeclaration'; });
foundErrorBoundary = false;
namedExports.forEach(function (namedExport) {
var _a;
var declaration = namedExport.declaration;
if (!declaration) {
return;
}
if (declaration.type === 'FunctionDeclaration') {
if (((_a = declaration.id) === null || _a === void 0 ? void 0 : _a.name) === 'ErrorBoundary') {
foundErrorBoundary = true;
}
}
else if (declaration.type === 'VariableDeclaration') {
var declarations = declaration.declarations;
declarations.forEach(function (declaration) {
var _a;
// @ts-expect-error - id should always have a name in this case
if (((_a = declaration.id) === null || _a === void 0 ? void 0 : _a.name) === 'ErrorBoundary') {
foundErrorBoundary = true;
}
});
}
});
if (!foundErrorBoundary) {
rootRouteAst.imports.$add({
from: '@sentry/remix',
imported: 'captureRemixErrorBoundaryError',
local: 'captureRemixErrorBoundaryError',
});
rootRouteAst.imports.$add({
from: '@remix-run/react',
imported: 'useRouteError',
local: 'useRouteError',
});
recast.visit(rootRouteAst.$ast, {
visitExportDefaultDeclaration: function (path) {
var implementation = recast.parse(templates_1.ERROR_BOUNDARY_TEMPLATE_V2).program
.body[0];
path.insertBefore(recast.types.builders.exportDeclaration(false, implementation));
this.traverse(path);
},
});
// If there is already a ErrorBoundary export, and it doesn't have Sentry content
}
else if (!(0, utils_1.hasSentryContent)(rootFileName, rootRouteAst.$code)) {
rootRouteAst.imports.$add({
from: '@sentry/remix',
imported: 'captureRemixErrorBoundaryError',
local: 'captureRemixErrorBoundaryError',
});
(0, root_common_1.wrapAppWithSentry)(rootRouteAst, rootFileName);
recast.visit(rootRouteAst.$ast, {
visitExportNamedDeclaration: function (path) {
var _a, _b;
// Find ErrorBoundary export
if (((_b = (_a = path.value.declaration) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.name) === 'ErrorBoundary') {
var errorBoundaryExport = path.value.declaration;
var errorIdentifier_1;
// check if useRouteError is called
recast.visit(errorBoundaryExport, {
visitVariableDeclaration: function (path) {
var variableDeclaration = path.value.declarations[0];
var initializer = variableDeclaration.init;
if (initializer.type === 'CallExpression' &&
initializer.callee.name === 'useRouteError') {
errorIdentifier_1 = variableDeclaration.id.name;
}
this.traverse(path);
},
});
// We don't have an errorIdentifier, which means useRouteError is not called / imported
// We need to add it and capture the error
if (!errorIdentifier_1) {
rootRouteAst.imports.$add({
from: '@remix-run/react',
imported: 'useRouteError',
local: 'useRouteError',
});
var useRouteErrorCall = recast.parse("const error = useRouteError();").program.body[0];
// Insert at the top of ErrorBoundary body
errorBoundaryExport.body.body.splice(0, 0, useRouteErrorCall);
}
var captureErrorCall = recast.parse("captureRemixErrorBoundaryError(error);").program.body[0];
// Insert just before the the fallback page is returned
errorBoundaryExport.body.body.splice(errorBoundaryExport.body.body.length - 1, 0, captureErrorCall);
}
this.traverse(path);
},
});
}
return [4 /*yield*/, (0, magicast_1.writeFile)(rootRouteAst.$ast, path.join(process.cwd(), 'app', rootFileName))];
case 2:
_a.sent();
return [2 /*return*/];
}
});
});
}
exports.instrumentRootRouteV2 = instrumentRootRouteV2;
//# sourceMappingURL=root-v2.js.map