UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

71 lines 3.2 kB
"use strict"; 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 () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.Root = void 0; exports.Forbidden = CompositionWarningForbidden; /** * Give warnings based on component composition (which slot/parent a child is rendered in). * * Used when child components need to know which slot/parent they are rendered in * (e.g. `FormSummary.Header` vs `FormSummary.Footer`) and should warn or error in development * if placed in a discouraged or forbidden slot. * * Usage: * - Wrap slot components with <CompositionWarning.Root name="FormSummary.Header">...</CompositionWarning.Root> * - In child: `<CompositionWarning.Forbidden name="FormSummary.Header" />` to forbid slot. * * This is guidance only: warnings are logged to the console in development, never enforced at runtime. */ const react_1 = __importStar(require("react")); const Slot_1 = require("../../slot/Slot"); const create_context_1 = require("../create-context"); const isDev = process.env.NODE_ENV !== "production"; const [CompositionWarning, useCompositionWarning] = (0, create_context_1.createContext)({ errorMessage: "useCompositionWarning() must be used within <CompositionWarning />", }); exports.Root = CompositionWarning; function CompositionWarningForbidden({ children, name, message, }) { var _a; const compositionName = (_a = useCompositionWarning(false)) === null || _a === void 0 ? void 0 : _a.name; const elementRef = (0, react_1.useRef)(null); (0, react_1.useEffect)(() => { if (!isDev || !compositionName || name !== compositionName) { return; } console.warn(`[Aksel] ${message}\nElement: `, elementRef.current); }, [compositionName, name, message]); return react_1.default.createElement(Slot_1.Slot, { ref: elementRef }, children); } //# sourceMappingURL=CompositionWarning.js.map