package.dist.cjs.create-context.cjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
Responsive and accessible React UI components built with React and Emotion
The newest version!
"use strict";
"use client";
'use strict';
var React = require('react');
function getErrorMessage(hook, provider) {
return `${hook} returned \`undefined\`. Seems you forgot to wrap component within ${provider}`;
}
function createContext(options = {}) {
const {
name,
strict = true,
hookName = "useContext",
providerName = "Provider",
errorMessage,
defaultValue
} = options;
const Context = React.createContext(defaultValue);
Context.displayName = name;
function useContext() {
const context = React.useContext(Context);
if (!context && strict) {
const error = new Error(
errorMessage ?? getErrorMessage(hookName, providerName)
);
error.name = "ContextError";
Error.captureStackTrace?.(error, useContext);
throw error;
}
return context;
}
return [Context.Provider, useContext, Context];
}
exports.createContext = createContext;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy