Skip to main content
Glama
index.js11.8 kB
import posthogJs from 'posthog-js'; import React, { createContext, useState, useMemo, useContext, useEffect, useRef, useCallback, Children } from 'react'; var PostHogContext = createContext({ client: posthogJs }); function isDeepEqual(obj1, obj2, visited) { if (visited === void 0) { visited = new WeakMap(); } if (obj1 === obj2) { return true; } if (typeof obj1 !== 'object' || obj1 === null || typeof obj2 !== 'object' || obj2 === null) { return false; } if (visited.has(obj1) && visited.get(obj1) === obj2) { return true; } visited.set(obj1, obj2); var keys1 = Object.keys(obj1); var keys2 = Object.keys(obj2); if (keys1.length !== keys2.length) { return false; } for (var _i = 0, keys1_1 = keys1; _i < keys1_1.length; _i++) { var key = keys1_1[_i]; if (!keys2.includes(key)) { return false; } if (!isDeepEqual(obj1[key], obj2[key], visited)) { return false; } } return true; } function PostHogProvider(_a) { var children = _a.children, client = _a.client, apiKey = _a.apiKey, options = _a.options; var _b = useState(false), alreadyInitialized = _b[0], setAlreadyInitialized = _b[1]; var posthog = useMemo(function () { if (client) { if (apiKey) { console.warn('[PostHog.js] You have provided both `client` and `apiKey` to `PostHogProvider`. `apiKey` will be ignored in favour of `client`.'); } if (options) { console.warn('[PostHog.js] You have provided both `client` and `options` to `PostHogProvider`. `options` will be ignored in favour of `client`.'); } return client; } if (apiKey) { if (alreadyInitialized !== false) { if (apiKey !== alreadyInitialized.previousAPIKey) { console.warn("[PostHog.js] You have provided a different `apiKey` to `PostHogProvider` than the one that was already initialized. This is not supported by our provider and we'll keep using the previous key. If you need to toggle between API Keys you need to control the `client` yourself and pass it in as a prop rather than an `apiKey` prop."); } if (options && !isDeepEqual(options, alreadyInitialized.previousOptions)) { posthogJs.set_config(options); } setAlreadyInitialized({ previousAPIKey: apiKey, previousOptions: options !== null && options !== void 0 ? options : {}, }); return posthogJs; } if (posthogJs.__loaded) { console.warn('[PostHog.js] `posthog` was already loaded elsewhere. This may cause issues.'); } posthogJs.init(apiKey, options); setAlreadyInitialized({ previousAPIKey: apiKey, previousOptions: options !== null && options !== void 0 ? options : {}, }); return posthogJs; } console.warn('[PostHog.js] No `apiKey` or `client` were provided to `PostHogProvider`. Using default global `window.posthog` instance. You must initialize it manually. This is not recommended behavior.'); return posthogJs; }, [client, apiKey, JSON.stringify(options)]); return React.createElement(PostHogContext.Provider, { value: { client: posthog } }, children); } var usePostHog = function () { var client = useContext(PostHogContext).client; return client; }; function useFeatureFlagEnabled(flag) { var client = usePostHog(); var _a = useState(function () { return client.isFeatureEnabled(flag); }), featureEnabled = _a[0], setFeatureEnabled = _a[1]; useEffect(function () { return client.onFeatureFlags(function () { setFeatureEnabled(client.isFeatureEnabled(flag)); }); }, [client, flag]); return featureEnabled; } function useFeatureFlagPayload(flag) { var client = usePostHog(); var _a = useState(function () { return client.getFeatureFlagPayload(flag); }), featureFlagPayload = _a[0], setFeatureFlagPayload = _a[1]; useEffect(function () { return client.onFeatureFlags(function () { setFeatureFlagPayload(client.getFeatureFlagPayload(flag)); }); }, [client, flag]); return featureFlagPayload; } function useActiveFeatureFlags() { var client = usePostHog(); var _a = useState(function () { return client.featureFlags.getFlags(); }), featureFlags = _a[0], setFeatureFlags = _a[1]; useEffect(function () { return client.onFeatureFlags(function (flags) { setFeatureFlags(flags); }); }, [client]); return featureFlags; } function useFeatureFlagVariantKey(flag) { var client = usePostHog(); var _a = useState(function () { return client.getFeatureFlag(flag); }), featureFlagVariantKey = _a[0], setFeatureFlagVariantKey = _a[1]; useEffect(function () { return client.onFeatureFlags(function () { setFeatureFlagVariantKey(client.getFeatureFlag(flag)); }); }, [client, flag]); return featureFlagVariantKey; } /****************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ var __assign = function() { __assign = Object.assign || function __assign(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; function __rest(s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; } var isFunction = function (f) { return typeof f === 'function'; }; var isUndefined = function (x) { return x === void 0; }; var isNull = function (x) { return x === null; }; function PostHogFeature(_a) { var flag = _a.flag, match = _a.match, children = _a.children, fallback = _a.fallback, visibilityObserverOptions = _a.visibilityObserverOptions, trackInteraction = _a.trackInteraction, trackView = _a.trackView, props = __rest(_a, ["flag", "match", "children", "fallback", "visibilityObserverOptions", "trackInteraction", "trackView"]); var payload = useFeatureFlagPayload(flag); var variant = useFeatureFlagVariantKey(flag); var shouldTrackInteraction = trackInteraction !== null && trackInteraction !== void 0 ? trackInteraction : true; var shouldTrackView = trackView !== null && trackView !== void 0 ? trackView : true; if (isUndefined(match) || variant === match) { var childNode = isFunction(children) ? children(payload) : children; return (React.createElement(VisibilityAndClickTrackers, __assign({ flag: flag, options: visibilityObserverOptions, trackInteraction: shouldTrackInteraction, trackView: shouldTrackView }, props), childNode)); } return React.createElement(React.Fragment, null, fallback); } function captureFeatureInteraction(_a) { var _b; var flag = _a.flag, posthog = _a.posthog, flagVariant = _a.flagVariant; var properties = { feature_flag: flag, $set: (_b = {}, _b["$feature_interaction/".concat(flag)] = flagVariant !== null && flagVariant !== void 0 ? flagVariant : true, _b), }; if (typeof flagVariant === 'string') { properties.feature_flag_variant = flagVariant; } posthog.capture('$feature_interaction', properties); } function captureFeatureView(_a) { var _b; var flag = _a.flag, posthog = _a.posthog, flagVariant = _a.flagVariant; var properties = { feature_flag: flag, $set: (_b = {}, _b["$feature_view/".concat(flag)] = flagVariant !== null && flagVariant !== void 0 ? flagVariant : true, _b), }; if (typeof flagVariant === 'string') { properties.feature_flag_variant = flagVariant; } posthog.capture('$feature_view', properties); } function VisibilityAndClickTracker(_a) { var flag = _a.flag, children = _a.children, onIntersect = _a.onIntersect, onClick = _a.onClick, trackView = _a.trackView, options = _a.options, props = __rest(_a, ["flag", "children", "onIntersect", "onClick", "trackView", "options"]); var ref = useRef(null); var posthog = usePostHog(); useEffect(function () { if (isNull(ref.current) || !trackView) return; var observer = new IntersectionObserver(function (_a) { var entry = _a[0]; return onIntersect(entry); }, __assign({ threshold: 0.1 }, options)); observer.observe(ref.current); return function () { return observer.disconnect(); }; }, [flag, options, posthog, ref, trackView, onIntersect]); return (React.createElement("div", __assign({ ref: ref }, props, { onClick: onClick }), children)); } function VisibilityAndClickTrackers(_a) { var flag = _a.flag, children = _a.children, trackInteraction = _a.trackInteraction, trackView = _a.trackView, options = _a.options, props = __rest(_a, ["flag", "children", "trackInteraction", "trackView", "options"]); var clickTrackedRef = useRef(false); var visibilityTrackedRef = useRef(false); var posthog = usePostHog(); var variant = useFeatureFlagVariantKey(flag); var cachedOnClick = useCallback(function () { if (!clickTrackedRef.current && trackInteraction) { captureFeatureInteraction({ flag: flag, posthog: posthog, flagVariant: variant }); clickTrackedRef.current = true; } }, [flag, posthog, trackInteraction, variant]); var onIntersect = function (entry) { if (!visibilityTrackedRef.current && entry.isIntersecting) { captureFeatureView({ flag: flag, posthog: posthog, flagVariant: variant }); visibilityTrackedRef.current = true; } }; var trackedChildren = Children.map(children, function (child) { return (React.createElement(VisibilityAndClickTracker, __assign({ flag: flag, onClick: cachedOnClick, onIntersect: onIntersect, trackView: trackView, options: options }, props), child)); }); return React.createElement(React.Fragment, null, trackedChildren); } export { PostHogContext, PostHogFeature, PostHogProvider, useActiveFeatureFlags, useFeatureFlagEnabled, useFeatureFlagPayload, useFeatureFlagVariantKey, usePostHog };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sadiuysal/mem0-mcp-server-ts'

If you have feedback or need assistance with the MCP directory API, please join our Discord server