@dr.pogodin/react-global-state 0.10.0-alpha.4 → 0.10.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/common/index.js +5 -2
- package/build/common/index.js.map +1 -1
- package/build/module/index.js +4 -1
- package/build/module/index.js.map +1 -1
- package/build/types/index.d.ts +2 -3
- package/package.json +4 -4
- package/src/index.ts +10 -3
package/build/common/index.js
CHANGED
|
@@ -22,7 +22,6 @@ Object.defineProperty(exports, "SsrContext", {
|
|
|
22
22
|
return _SsrContext.default;
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
|
-
exports.default = void 0;
|
|
26
25
|
Object.defineProperty(exports, "getGlobalState", {
|
|
27
26
|
enumerable: true,
|
|
28
27
|
get: function () {
|
|
@@ -59,6 +58,7 @@ Object.defineProperty(exports, "useGlobalState", {
|
|
|
59
58
|
return _useGlobalState.default;
|
|
60
59
|
}
|
|
61
60
|
});
|
|
61
|
+
exports.withGlobalStateType = withGlobalStateType;
|
|
62
62
|
var _GlobalState = _interopRequireDefault(require("./GlobalState"));
|
|
63
63
|
var _GlobalStateProvider = _interopRequireWildcard(require("./GlobalStateProvider"));
|
|
64
64
|
var _SsrContext = _interopRequireDefault(require("./SsrContext"));
|
|
@@ -67,7 +67,7 @@ var _useAsyncData = _interopRequireWildcard(require("./useAsyncData"));
|
|
|
67
67
|
var _useGlobalState = _interopRequireDefault(require("./useGlobalState"));
|
|
68
68
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
69
69
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
70
|
-
|
|
70
|
+
const api = {
|
|
71
71
|
getGlobalState: _GlobalStateProvider.getGlobalState,
|
|
72
72
|
getSsrContext: _GlobalStateProvider.getSsrContext,
|
|
73
73
|
GlobalState: _GlobalState.default,
|
|
@@ -78,4 +78,7 @@ var _default = exports.default = {
|
|
|
78
78
|
useAsyncData: _useAsyncData.default,
|
|
79
79
|
useGlobalState: _useGlobalState.default
|
|
80
80
|
};
|
|
81
|
+
function withGlobalStateType() {
|
|
82
|
+
return api;
|
|
83
|
+
}
|
|
81
84
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_GlobalState","_interopRequireDefault","require","_GlobalStateProvider","_interopRequireWildcard","_SsrContext","_useAsyncCollection","_useAsyncData","_useGlobalState","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","
|
|
1
|
+
{"version":3,"file":"index.js","names":["_GlobalState","_interopRequireDefault","require","_GlobalStateProvider","_interopRequireWildcard","_SsrContext","_useAsyncCollection","_useAsyncData","_useGlobalState","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","api","getGlobalState","getSsrContext","GlobalState","GlobalStateProvider","newAsyncDataEnvelope","SsrContext","useAsyncCollection","useAsyncData","useGlobalState","withGlobalStateType"],"sources":["../../src/index.ts"],"sourcesContent":["import GlobalState from './GlobalState';\n\nimport GlobalStateProvider, {\n getGlobalState,\n getSsrContext,\n} from './GlobalStateProvider';\n\nimport SsrContext from './SsrContext';\n\nimport useAsyncCollection, {\n type UseAsyncCollectionI,\n} from './useAsyncCollection';\n\nimport useAsyncData, {\n type UseAsyncDataI,\n newAsyncDataEnvelope,\n} from './useAsyncData';\n\nimport useGlobalState, { type UseGlobalStateI } from './useGlobalState';\n\nexport type { AsyncCollectionLoaderT } from './useAsyncCollection';\n\nexport type {\n AsyncDataEnvelopeT,\n AsyncDataLoaderT,\n UseAsyncDataOptionsT,\n UseAsyncDataResT,\n} from './useAsyncData';\n\nexport type { SetterT, UseGlobalStateResT } from './useGlobalState';\n\nexport type { ForceT, ValueOrInitializerT } from './utils';\n\nexport {\n getGlobalState,\n getSsrContext,\n GlobalState,\n GlobalStateProvider,\n newAsyncDataEnvelope,\n SsrContext,\n useAsyncCollection,\n useAsyncData,\n useGlobalState,\n};\n\ninterface API<\n StateT,\n SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,\n> {\n getGlobalState: typeof getGlobalState<StateT, SsrContextT>;\n getSsrContext: typeof getSsrContext<SsrContextT>,\n GlobalState: typeof GlobalState<StateT, SsrContextT>,\n GlobalStateProvider: typeof GlobalStateProvider<StateT, SsrContextT>,\n newAsyncDataEnvelope: typeof newAsyncDataEnvelope,\n SsrContext: typeof SsrContext<StateT>,\n useAsyncCollection: UseAsyncCollectionI<StateT>,\n useAsyncData: UseAsyncDataI<StateT>,\n useGlobalState: UseGlobalStateI<StateT>,\n}\n\nconst api = {\n getGlobalState,\n getSsrContext,\n GlobalState,\n GlobalStateProvider,\n newAsyncDataEnvelope,\n SsrContext,\n useAsyncCollection,\n useAsyncData,\n useGlobalState,\n};\n\nexport function withGlobalStateType<\n StateT,\n SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,\n>() {\n return api as API<StateT, SsrContextT>;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,oBAAA,GAAAC,uBAAA,CAAAF,OAAA;AAKA,IAAAG,WAAA,GAAAJ,sBAAA,CAAAC,OAAA;AAEA,IAAAI,mBAAA,GAAAL,sBAAA,CAAAC,OAAA;AAIA,IAAAK,aAAA,GAAAH,uBAAA,CAAAF,OAAA;AAKA,IAAAM,eAAA,GAAAP,sBAAA,CAAAC,OAAA;AAAwE,SAAAO,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAN,wBAAAM,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAjB,CAAA,EAAAc,CAAA,SAAAI,CAAA,GAAAR,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAI,CAAA,KAAAA,CAAA,CAAAX,GAAA,IAAAW,CAAA,CAAAC,GAAA,IAAAR,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAI,CAAA,IAAAV,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAgB,GAAA,CAAAnB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AA0CxE,MAAMY,GAAG,GAAG;EACVC,cAAc,EAAdA,mCAAc;EACdC,aAAa,EAAbA,kCAAa;EACbC,WAAW,EAAXA,oBAAW;EACXC,mBAAmB,EAAnBA,4BAAmB;EACnBC,oBAAoB,EAApBA,kCAAoB;EACpBC,UAAU,EAAVA,mBAAU;EACVC,kBAAkB,EAAlBA,2BAAkB;EAClBC,YAAY,EAAZA,qBAAY;EACZC,cAAc,EAAdA;AACF,CAAC;AAEM,SAASC,mBAAmBA,CAAA,EAG/B;EACF,OAAOV,GAAG;AACZ"}
|
package/build/module/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import useAsyncCollection from "./useAsyncCollection";
|
|
|
5
5
|
import useAsyncData, { newAsyncDataEnvelope } from "./useAsyncData";
|
|
6
6
|
import useGlobalState from "./useGlobalState";
|
|
7
7
|
export { getGlobalState, getSsrContext, GlobalState, GlobalStateProvider, newAsyncDataEnvelope, SsrContext, useAsyncCollection, useAsyncData, useGlobalState };
|
|
8
|
-
|
|
8
|
+
const api = {
|
|
9
9
|
getGlobalState,
|
|
10
10
|
getSsrContext,
|
|
11
11
|
GlobalState,
|
|
@@ -16,4 +16,7 @@ export default {
|
|
|
16
16
|
useAsyncData,
|
|
17
17
|
useGlobalState
|
|
18
18
|
};
|
|
19
|
+
export function withGlobalStateType() {
|
|
20
|
+
return api;
|
|
21
|
+
}
|
|
19
22
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["GlobalState","GlobalStateProvider","getGlobalState","getSsrContext","SsrContext","useAsyncCollection","useAsyncData","newAsyncDataEnvelope","useGlobalState"],"sources":["../../src/index.ts"],"sourcesContent":["import GlobalState from './GlobalState';\n\nimport GlobalStateProvider, {\n getGlobalState,\n getSsrContext,\n} from './GlobalStateProvider';\n\nimport SsrContext from './SsrContext';\n\nimport useAsyncCollection, {\n type UseAsyncCollectionI,\n} from './useAsyncCollection';\n\nimport useAsyncData, {\n type UseAsyncDataI,\n newAsyncDataEnvelope,\n} from './useAsyncData';\n\nimport useGlobalState, { type UseGlobalStateI } from './useGlobalState';\n\nexport type { AsyncCollectionLoaderT } from './useAsyncCollection';\n\nexport type {\n AsyncDataEnvelopeT,\n AsyncDataLoaderT,\n UseAsyncDataOptionsT,\n UseAsyncDataResT,\n} from './useAsyncData';\n\nexport type { SetterT, UseGlobalStateResT } from './useGlobalState';\n\nexport type { ForceT, ValueOrInitializerT } from './utils';\n\nexport {\n getGlobalState,\n getSsrContext,\n GlobalState,\n GlobalStateProvider,\n newAsyncDataEnvelope,\n SsrContext,\n useAsyncCollection,\n useAsyncData,\n useGlobalState,\n};\n\
|
|
1
|
+
{"version":3,"file":"index.js","names":["GlobalState","GlobalStateProvider","getGlobalState","getSsrContext","SsrContext","useAsyncCollection","useAsyncData","newAsyncDataEnvelope","useGlobalState","api","withGlobalStateType"],"sources":["../../src/index.ts"],"sourcesContent":["import GlobalState from './GlobalState';\n\nimport GlobalStateProvider, {\n getGlobalState,\n getSsrContext,\n} from './GlobalStateProvider';\n\nimport SsrContext from './SsrContext';\n\nimport useAsyncCollection, {\n type UseAsyncCollectionI,\n} from './useAsyncCollection';\n\nimport useAsyncData, {\n type UseAsyncDataI,\n newAsyncDataEnvelope,\n} from './useAsyncData';\n\nimport useGlobalState, { type UseGlobalStateI } from './useGlobalState';\n\nexport type { AsyncCollectionLoaderT } from './useAsyncCollection';\n\nexport type {\n AsyncDataEnvelopeT,\n AsyncDataLoaderT,\n UseAsyncDataOptionsT,\n UseAsyncDataResT,\n} from './useAsyncData';\n\nexport type { SetterT, UseGlobalStateResT } from './useGlobalState';\n\nexport type { ForceT, ValueOrInitializerT } from './utils';\n\nexport {\n getGlobalState,\n getSsrContext,\n GlobalState,\n GlobalStateProvider,\n newAsyncDataEnvelope,\n SsrContext,\n useAsyncCollection,\n useAsyncData,\n useGlobalState,\n};\n\ninterface API<\n StateT,\n SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,\n> {\n getGlobalState: typeof getGlobalState<StateT, SsrContextT>;\n getSsrContext: typeof getSsrContext<SsrContextT>,\n GlobalState: typeof GlobalState<StateT, SsrContextT>,\n GlobalStateProvider: typeof GlobalStateProvider<StateT, SsrContextT>,\n newAsyncDataEnvelope: typeof newAsyncDataEnvelope,\n SsrContext: typeof SsrContext<StateT>,\n useAsyncCollection: UseAsyncCollectionI<StateT>,\n useAsyncData: UseAsyncDataI<StateT>,\n useGlobalState: UseGlobalStateI<StateT>,\n}\n\nconst api = {\n getGlobalState,\n getSsrContext,\n GlobalState,\n GlobalStateProvider,\n newAsyncDataEnvelope,\n SsrContext,\n useAsyncCollection,\n useAsyncData,\n useGlobalState,\n};\n\nexport function withGlobalStateType<\n StateT,\n SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,\n>() {\n return api as API<StateT, SsrContextT>;\n}\n"],"mappings":"AAAA,OAAOA,WAAW;AAElB,OAAOC,mBAAmB,IACxBC,cAAc,EACdC,aAAa;AAGf,OAAOC,UAAU;AAEjB,OAAOC,kBAAkB;AAIzB,OAAOC,YAAY,IAEjBC,oBAAoB;AAGtB,OAAOC,cAAc;AAerB,SACEN,cAAc,EACdC,aAAa,EACbH,WAAW,EACXC,mBAAmB,EACnBM,oBAAoB,EACpBH,UAAU,EACVC,kBAAkB,EAClBC,YAAY,EACZE,cAAc;AAkBhB,MAAMC,GAAG,GAAG;EACVP,cAAc;EACdC,aAAa;EACbH,WAAW;EACXC,mBAAmB;EACnBM,oBAAoB;EACpBH,UAAU;EACVC,kBAAkB;EAClBC,YAAY;EACZE;AACF,CAAC;AAED,OAAO,SAASE,mBAAmBA,CAAA,EAG/B;EACF,OAAOD,GAAG;AACZ"}
|
package/build/types/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type { AsyncDataEnvelopeT, AsyncDataLoaderT, UseAsyncDataOptionsT, UseAsy
|
|
|
9
9
|
export type { SetterT, UseGlobalStateResT } from './useGlobalState';
|
|
10
10
|
export type { ForceT, ValueOrInitializerT } from './utils';
|
|
11
11
|
export { getGlobalState, getSsrContext, GlobalState, GlobalStateProvider, newAsyncDataEnvelope, SsrContext, useAsyncCollection, useAsyncData, useGlobalState, };
|
|
12
|
-
|
|
12
|
+
interface API<StateT, SsrContextT extends SsrContext<StateT> = SsrContext<StateT>> {
|
|
13
13
|
getGlobalState: typeof getGlobalState<StateT, SsrContextT>;
|
|
14
14
|
getSsrContext: typeof getSsrContext<SsrContextT>;
|
|
15
15
|
GlobalState: typeof GlobalState<StateT, SsrContextT>;
|
|
@@ -20,5 +20,4 @@ export interface API<StateT, SsrContextT extends SsrContext<StateT> = SsrContext
|
|
|
20
20
|
useAsyncData: UseAsyncDataI<StateT>;
|
|
21
21
|
useGlobalState: UseGlobalStateI<StateT>;
|
|
22
22
|
}
|
|
23
|
-
declare
|
|
24
|
-
export default _default;
|
|
23
|
+
export declare function withGlobalStateType<StateT, SsrContextT extends SsrContext<StateT> = SsrContext<StateT>>(): API<StateT, SsrContextT>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dr.pogodin/react-global-state",
|
|
3
|
-
"version": "0.10.0-alpha.
|
|
3
|
+
"version": "0.10.0-alpha.5",
|
|
4
4
|
"description": "Hook-based global state for React",
|
|
5
5
|
"main": "./build/common/index.js",
|
|
6
6
|
"react-native": "src/index.ts",
|
|
@@ -66,15 +66,15 @@
|
|
|
66
66
|
"@types/react": "^18.2.31",
|
|
67
67
|
"@types/react-dom": "^18.2.14",
|
|
68
68
|
"@types/uuid": "^9.0.6",
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
70
|
-
"@typescript-eslint/parser": "^6.
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
70
|
+
"@typescript-eslint/parser": "^6.9.0",
|
|
71
71
|
"babel-jest": "^29.7.0",
|
|
72
72
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
73
73
|
"eslint": "^8.52.0",
|
|
74
74
|
"eslint-config-airbnb": "^19.0.4",
|
|
75
75
|
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
76
76
|
"eslint-import-resolver-babel-module": "^5.3.2",
|
|
77
|
-
"eslint-plugin-import": "^2.
|
|
77
|
+
"eslint-plugin-import": "^2.29.0",
|
|
78
78
|
"eslint-plugin-jest": "^27.4.3",
|
|
79
79
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
80
80
|
"eslint-plugin-react": "^7.33.2",
|
package/src/index.ts
CHANGED
|
@@ -43,7 +43,7 @@ export {
|
|
|
43
43
|
useGlobalState,
|
|
44
44
|
};
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
interface API<
|
|
47
47
|
StateT,
|
|
48
48
|
SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,
|
|
49
49
|
> {
|
|
@@ -58,7 +58,7 @@ export interface API<
|
|
|
58
58
|
useGlobalState: UseGlobalStateI<StateT>,
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
const api = {
|
|
62
62
|
getGlobalState,
|
|
63
63
|
getSsrContext,
|
|
64
64
|
GlobalState,
|
|
@@ -68,4 +68,11 @@ export default {
|
|
|
68
68
|
useAsyncCollection,
|
|
69
69
|
useAsyncData,
|
|
70
70
|
useGlobalState,
|
|
71
|
-
}
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export function withGlobalStateType<
|
|
74
|
+
StateT,
|
|
75
|
+
SsrContextT extends SsrContext<StateT> = SsrContext<StateT>,
|
|
76
|
+
>() {
|
|
77
|
+
return api as API<StateT, SsrContextT>;
|
|
78
|
+
}
|