@vutolabs/analytics
Version:
Vuto Analytics - instant, Stripe-native analytics for SaaS apps built with Next.js or React.
183 lines (174 loc) • 5.91 kB
JavaScript
;
"use client";
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name2 in all)
__defProp(target, name2, { get: all[name2], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/nextjs/index.tsx
var nextjs_exports = {};
__export(nextjs_exports, {
Analytics: () => Analytics2
});
module.exports = __toCommonJS(nextjs_exports);
var import_react2 = __toESM(require("react"));
// src/react/index.tsx
var import_react = require("react");
// package.json
var name = "@vutolabs/analytics";
var version = "0.0.0-alpha.4";
// src/queue.ts
var initQueue = () => {
if (window.va) return;
window.va = function a(...params) {
(window.vaq = window.vaq || []).push(params);
};
};
// src/utils.ts
function isBrowser() {
return typeof window !== "undefined";
}
function detectEnvironment() {
try {
const env = process.env.NODE_ENV;
if (env === "development" || env === "test") {
return "development";
}
} catch (e) {
}
return "production";
}
function setMode(mode = "auto") {
if (mode === "auto") {
window.vam = detectEnvironment();
return;
}
window.vam = mode;
}
function getMode() {
const mode = isBrowser() ? window.vam : detectEnvironment();
return mode || "production";
}
function isDevelopment() {
return getMode() === "development";
}
function computeRoute(pathname, pathParams) {
if (!pathname || !pathParams) {
return pathname;
}
let result = pathname;
try {
const entries = Object.entries(pathParams);
for (const [key, value] of entries) {
if (!Array.isArray(value)) {
const matcher = turnValueToRegExp(value);
if (matcher.test(result)) {
result = result.replace(matcher, `/[${key}]`);
}
}
}
for (const [key, value] of entries) {
if (Array.isArray(value)) {
const matcher = turnValueToRegExp(value.join("/"));
if (matcher.test(result)) {
result = result.replace(matcher, `/[...${key}]`);
}
}
}
return result;
} catch (e) {
return pathname;
}
}
function turnValueToRegExp(value) {
return new RegExp(`/${escapeRegExp(value)}(?=[/?#]|$)`);
}
function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
}
function getScriptSrc(props) {
if (isDevelopment()) {
return "http://localhost:3000/analytics/script.js";
}
return "https://vuto-backend-production.up.railway.app/analytics/script.js";
}
// src/generic.ts
function inject(props) {
if (!isBrowser()) return;
setMode(props.mode);
initQueue();
const src = getScriptSrc(props);
if (document.head.querySelector(`script[src*="${src}"]`)) return;
const script = document.createElement("script");
script.src = src;
script.defer = true;
script.dataset.sdkn = name + (props.framework ? `/${props.framework}` : "");
script.dataset.sdkv = version;
const scriptOrigin = new URL(src).origin;
script.dataset.endpoint = `${scriptOrigin}/api/analytics`;
script.dataset.projectId = props.projectId;
script.onerror = () => {
const errorMessage = isDevelopment() ? "Please check if any ad blockers are enabled and try again." : "Please check if the project is enabled in the Vuto Web Analytics dashboard.";
console.log(`[Vuto Web Analytics] Failed to load script from ${src}. ${errorMessage}`);
};
document.head.appendChild(script);
}
// src/react/index.tsx
function Analytics(props) {
const config = {
framework: props.framework || "react",
mode: props.mode,
projectId: props.projectId
};
(0, import_react.useEffect)(() => {
inject(config);
}, []);
return null;
}
// src/nextjs/utils.ts
var import_navigation = require("next/navigation");
var useRoute = () => {
const params = (0, import_navigation.useParams)();
const searchParams = (0, import_navigation.useSearchParams)();
const path = (0, import_navigation.usePathname)();
if (!params) {
return { route: null, path };
}
const finalParams = Object.keys(params).length ? params : Object.fromEntries(searchParams.entries());
return { route: computeRoute(path, finalParams), path };
};
// src/nextjs/index.tsx
function AnalyticsComponent(props) {
const { route, path } = useRoute();
return /* @__PURE__ */ import_react2.default.createElement(Analytics, { path, route, ...props, framework: "next" });
}
function Analytics2(props) {
return /* @__PURE__ */ import_react2.default.createElement(import_react2.Suspense, { fallback: null }, /* @__PURE__ */ import_react2.default.createElement(AnalyticsComponent, { ...props }));
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Analytics
});
//# sourceMappingURL=index.js.map