mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.4 KiB
64 lines
2.4 KiB
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('react'), require('zustand/traditional')) :
|
|
typeof define === 'function' && define.amd ? define(['react', 'zustand/traditional'], factory) :
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.zustandContext = factory(global.React, global.traditional));
|
|
})(this, (function (ReactExports, traditional) { 'use strict';
|
|
|
|
function _extends() {
|
|
return _extends = Object.assign ? Object.assign.bind() : function (n) {
|
|
for (var e = 1; e < arguments.length; e++) {
|
|
var t = arguments[e];
|
|
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
}
|
|
return n;
|
|
}, _extends.apply(null, arguments);
|
|
}
|
|
|
|
var createElement = ReactExports.createElement,
|
|
reactCreateContext = ReactExports.createContext,
|
|
useContext = ReactExports.useContext,
|
|
useMemo = ReactExports.useMemo,
|
|
useRef = ReactExports.useRef;
|
|
function createContext() {
|
|
{
|
|
console.warn("[DEPRECATED] `context` will be removed in a future version. Instead use `import { createStore, useStore } from 'zustand'`. See: https://github.com/pmndrs/zustand/discussions/1180.");
|
|
}
|
|
var ZustandContext = reactCreateContext(undefined);
|
|
var Provider = function Provider(_ref) {
|
|
var createStore = _ref.createStore,
|
|
children = _ref.children;
|
|
var storeRef = useRef();
|
|
if (!storeRef.current) {
|
|
storeRef.current = createStore();
|
|
}
|
|
return createElement(ZustandContext.Provider, {
|
|
value: storeRef.current
|
|
}, children);
|
|
};
|
|
var useContextStore = function useContextStore(selector, equalityFn) {
|
|
var store = useContext(ZustandContext);
|
|
if (!store) {
|
|
throw new Error('Seems like you have not used zustand provider as an ancestor.');
|
|
}
|
|
return traditional.useStoreWithEqualityFn(store, selector, equalityFn);
|
|
};
|
|
var useStoreApi = function useStoreApi() {
|
|
var store = useContext(ZustandContext);
|
|
if (!store) {
|
|
throw new Error('Seems like you have not used zustand provider as an ancestor.');
|
|
}
|
|
return useMemo(function () {
|
|
return _extends({}, store);
|
|
}, [store]);
|
|
};
|
|
return {
|
|
Provider: Provider,
|
|
useStore: useContextStore,
|
|
useStoreApi: useStoreApi
|
|
};
|
|
}
|
|
|
|
return createContext;
|
|
|
|
}));
|