@grantjs/client 1.0.0 → 1.0.1

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/dist/react.cjs CHANGED
@@ -1,139 +1,249 @@
1
- "use strict";
2
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const jsxRuntime = require("react/jsx-runtime");
4
- const react = require("react");
5
- const index = require("./index.cjs");
6
- const GrantContext = react.createContext(null);
2
+ const require_grant_client = require("./grant-client-zE-9zy3m.cjs");
3
+ let react = require("react");
4
+ let react_jsx_runtime = require("react/jsx-runtime");
5
+ //#region src/react/context.tsx
6
+ /**
7
+ * Context for the Grant client
8
+ */
9
+ var GrantContext = (0, react.createContext)(null);
10
+ /**
11
+ * Provider component that makes the Grant client available to child components
12
+ *
13
+ * @example
14
+ * ```tsx
15
+ * // Option 1: Pass config (cookie-based refresh)
16
+ * <GrantProvider
17
+ * config={{
18
+ * apiUrl: 'https://api.grant.com',
19
+ * getAccessToken: () => localStorage.getItem('accessToken'),
20
+ * onRefreshWithCredentials: async () => {
21
+ * const res = await fetch('https://api.grant.com/api/auth/refresh', { method: 'POST', credentials: 'include' });
22
+ * if (!res.ok) return false;
23
+ * const { data } = await res.json();
24
+ * if (data?.accessToken) { localStorage.setItem('accessToken', data.accessToken); return true; }
25
+ * return false;
26
+ * },
27
+ * onTokenRefresh: (tokens) => { localStorage.setItem('accessToken', tokens.accessToken); },
28
+ * onUnauthorized: () => { window.location.href = '/login'; },
29
+ * }}
30
+ * >
31
+ * <App />
32
+ * </GrantProvider>
33
+ *
34
+ * // Option 2: Pass pre-configured client
35
+ * const grant = new GrantClient({ ... });
36
+ * <GrantProvider client={grant}>
37
+ * <App />
38
+ * </GrantProvider>
39
+ * ```
40
+ */
7
41
  function GrantProvider({ config, client, children }) {
8
- const grantClient = react.useMemo(() => {
9
- if (client) return client;
10
- return new index.GrantClient(config);
11
- }, [client, config]);
12
- return /* @__PURE__ */ jsxRuntime.jsx(GrantContext.Provider, { value: grantClient, children });
42
+ const grantClient = (0, react.useMemo)(() => {
43
+ if (client) return client;
44
+ return new require_grant_client.GrantClient(config);
45
+ }, [client, config]);
46
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(GrantContext.Provider, {
47
+ value: grantClient,
48
+ children
49
+ });
13
50
  }
51
+ /**
52
+ * Hook to access the Grant client from context
53
+ *
54
+ * @throws Error if used outside of GrantProvider
55
+ *
56
+ * @example
57
+ * ```tsx
58
+ * const grant = useGrantClient();
59
+ * const hasPermission = await grant.can('resource', 'action');
60
+ * ```
61
+ */
14
62
  function useGrantClient() {
15
- const client = react.useContext(GrantContext);
16
- if (!client) {
17
- throw new Error(
18
- "useGrantClient must be used within a GrantProvider. Wrap your app with <GrantProvider config={...}> to fix this error."
19
- );
20
- }
21
- return client;
63
+ const client = (0, react.useContext)(GrantContext);
64
+ if (!client) throw new Error("useGrantClient must be used within a GrantProvider. Wrap your app with <GrantProvider config={...}> to fix this error.");
65
+ return client;
22
66
  }
67
+ /**
68
+ * Hook to optionally access the Grant client
69
+ * Returns null if not in a GrantProvider context
70
+ *
71
+ * Use this when you want to gracefully handle missing provider
72
+ */
23
73
  function useGrantClientOptional() {
24
- return react.useContext(GrantContext);
74
+ return (0, react.useContext)(GrantContext);
25
75
  }
76
+ //#endregion
77
+ //#region src/react/hooks/useGrant.ts
78
+ /**
79
+ * Serialize scope for stable dependency comparison
80
+ * This prevents re-fetching when scope object reference changes but values are the same
81
+ */
26
82
  function serializeScope(scope) {
27
- if (!scope) return "";
28
- return `${scope.tenant}:${scope.id}`;
83
+ if (!scope) return "";
84
+ return `${scope.tenant}:${scope.id}`;
29
85
  }
86
+ /**
87
+ * Hook to check if a user is granted permission for a specific resource and action
88
+ *
89
+ * By default, returns a simple boolean, defaulting to false while loading.
90
+ * Set `returnLoading: true` to get an object with `isGranted` and `isLoading`.
91
+ *
92
+ * @param resource - The resource slug to check
93
+ * @param action - The action to check
94
+ * @param options - Additional options
95
+ *
96
+ * @example
97
+ * ```tsx
98
+ * // Simple boolean (default)
99
+ * const canEdit = useGrant('document', 'update');
100
+ *
101
+ * return (
102
+ * <div>
103
+ * {canEdit && <EditButton />}
104
+ * </div>
105
+ * );
106
+ *
107
+ * // With loading state
108
+ * const { isGranted, isLoading } = useGrant('document', 'update', {
109
+ * returnLoading: true,
110
+ * });
111
+ *
112
+ * if (isLoading) return <Spinner />;
113
+ * if (!isGranted) return null;
114
+ *
115
+ * return <EditButton />;
116
+ * ```
117
+ */
30
118
  function useGrant(resource, action, options = {}) {
31
- const { scope, enabled = true, useCache = true, returnLoading = false, context } = options;
32
- const client = useGrantClient();
33
- const scopeWasProvidedRef = react.useRef("scope" in options);
34
- const isEffectivelyEnabled = react.useMemo(() => {
35
- const hasValidScope = scope && typeof scope === "object" && "tenant" in scope && "id" in scope && scope.id;
36
- const shouldWaitForScope = scopeWasProvidedRef.current && !hasValidScope;
37
- return enabled && !shouldWaitForScope;
38
- }, [scope, enabled]);
39
- const [data, setData] = react.useState(null);
40
- const [isLoading, setIsLoading] = react.useState(isEffectivelyEnabled);
41
- const [prevEffectivelyEnabled, setPrevEffectivelyEnabled] = react.useState(isEffectivelyEnabled);
42
- if (isEffectivelyEnabled !== prevEffectivelyEnabled) {
43
- setPrevEffectivelyEnabled(isEffectivelyEnabled);
44
- if (isEffectivelyEnabled) {
45
- setIsLoading(true);
46
- } else {
47
- setIsLoading(false);
48
- setData(null);
49
- }
50
- }
51
- const isMounted = react.useRef(true);
52
- const scopeRef = react.useRef(scope);
53
- scopeRef.current = scope;
54
- const contextRef = react.useRef(context);
55
- contextRef.current = context;
56
- const scopeKey = serializeScope(scope);
57
- const contextKey = react.useMemo(
58
- () => context?.resource != null ? JSON.stringify(context.resource) : "",
59
- [context?.resource]
60
- );
61
- const fetchPermission = react.useCallback(async () => {
62
- if (!isEffectivelyEnabled) {
63
- setIsLoading(false);
64
- return;
65
- }
66
- setIsLoading(true);
67
- try {
68
- const result = await client.isAuthorized(resource, action, {
69
- scope: scopeRef.current ?? void 0,
70
- useCache,
71
- context: contextRef.current
72
- });
73
- if (isMounted.current) {
74
- setData(result);
75
- }
76
- } catch {
77
- if (isMounted.current) {
78
- setData(null);
79
- }
80
- } finally {
81
- if (isMounted.current) {
82
- setIsLoading(false);
83
- }
84
- }
85
- }, [client, resource, action, scopeKey, isEffectivelyEnabled, useCache, contextKey]);
86
- react.useEffect(() => {
87
- isMounted.current = true;
88
- if (!isEffectivelyEnabled && scopeWasProvidedRef.current) {
89
- setData(null);
90
- setIsLoading(false);
91
- } else {
92
- fetchPermission();
93
- }
94
- return () => {
95
- isMounted.current = false;
96
- };
97
- }, [fetchPermission, isEffectivelyEnabled]);
98
- const isGranted = data?.authorized ?? false;
99
- if (returnLoading) {
100
- return { isGranted, isLoading };
101
- }
102
- return isGranted;
119
+ const { scope, enabled = true, useCache = true, returnLoading = false, context } = options;
120
+ const client = useGrantClient();
121
+ const scopeWasProvidedRef = (0, react.useRef)("scope" in options);
122
+ const isEffectivelyEnabled = (0, react.useMemo)(() => {
123
+ const hasValidScope = scope && typeof scope === "object" && "tenant" in scope && "id" in scope && scope.id;
124
+ const shouldWaitForScope = scopeWasProvidedRef.current && !hasValidScope;
125
+ return enabled && !shouldWaitForScope;
126
+ }, [scope, enabled]);
127
+ const [data, setData] = (0, react.useState)(null);
128
+ const [isLoading, setIsLoading] = (0, react.useState)(isEffectivelyEnabled);
129
+ const [prevEffectivelyEnabled, setPrevEffectivelyEnabled] = (0, react.useState)(isEffectivelyEnabled);
130
+ if (isEffectivelyEnabled !== prevEffectivelyEnabled) {
131
+ setPrevEffectivelyEnabled(isEffectivelyEnabled);
132
+ if (isEffectivelyEnabled) setIsLoading(true);
133
+ else {
134
+ setIsLoading(false);
135
+ setData(null);
136
+ }
137
+ }
138
+ const isMounted = (0, react.useRef)(true);
139
+ const scopeRef = (0, react.useRef)(scope);
140
+ scopeRef.current = scope;
141
+ const contextRef = (0, react.useRef)(context);
142
+ contextRef.current = context;
143
+ const fetchPermission = (0, react.useCallback)(async () => {
144
+ if (!isEffectivelyEnabled) {
145
+ setIsLoading(false);
146
+ return;
147
+ }
148
+ setIsLoading(true);
149
+ try {
150
+ const result = await client.isAuthorized(resource, action, {
151
+ scope: scopeRef.current ?? void 0,
152
+ useCache,
153
+ context: contextRef.current
154
+ });
155
+ if (isMounted.current) setData(result);
156
+ } catch {
157
+ if (isMounted.current) setData(null);
158
+ } finally {
159
+ if (isMounted.current) setIsLoading(false);
160
+ }
161
+ }, [
162
+ client,
163
+ resource,
164
+ action,
165
+ serializeScope(scope),
166
+ isEffectivelyEnabled,
167
+ useCache,
168
+ (0, react.useMemo)(() => context?.resource != null ? JSON.stringify(context.resource) : "", [context?.resource])
169
+ ]);
170
+ (0, react.useEffect)(() => {
171
+ isMounted.current = true;
172
+ if (!isEffectivelyEnabled && scopeWasProvidedRef.current) {
173
+ setData(null);
174
+ setIsLoading(false);
175
+ } else fetchPermission();
176
+ return () => {
177
+ isMounted.current = false;
178
+ };
179
+ }, [fetchPermission, isEffectivelyEnabled]);
180
+ const isGranted = data?.authorized ?? false;
181
+ if (returnLoading) return {
182
+ isGranted,
183
+ isLoading
184
+ };
185
+ return isGranted;
103
186
  }
104
- function GrantGate({
105
- resource,
106
- action,
107
- scope,
108
- enabled,
109
- useCache,
110
- children,
111
- fallback = null,
112
- loading = null
113
- }) {
114
- const options = {
115
- enabled,
116
- useCache,
117
- returnLoading: loading !== null
118
- };
119
- if (scope !== void 0) {
120
- options.scope = scope;
121
- }
122
- const result = useGrant(resource, action, options);
123
- const isGranted = typeof result === "boolean" ? result : result.isGranted;
124
- const isLoading = typeof result === "boolean" ? false : result.isLoading;
125
- if (isLoading && loading !== null) {
126
- return loading;
127
- }
128
- if (isGranted) {
129
- return children;
130
- }
131
- return fallback;
187
+ //#endregion
188
+ //#region src/react/components/GrantGate.tsx
189
+ /**
190
+ * Component that conditionally renders children based on permissions
191
+ *
192
+ * @example
193
+ * ```tsx
194
+ * // Basic usage - hide element if no permission
195
+ * <GrantGate resource="document" action="update">
196
+ * <EditButton />
197
+ * </GrantGate>
198
+ *
199
+ * // With fallback for denied access
200
+ * <GrantGate
201
+ * resource="admin"
202
+ * action="access"
203
+ * fallback={<p>You don't have admin access</p>}
204
+ * >
205
+ * <AdminPanel />
206
+ * </GrantGate>
207
+ *
208
+ * // With loading state
209
+ * <GrantGate
210
+ * resource="report"
211
+ * action="view"
212
+ * loading={<Spinner />}
213
+ * fallback={<AccessDenied />}
214
+ * >
215
+ * <ReportViewer />
216
+ * </GrantGate>
217
+ *
218
+ * // With scope for multi-tenant
219
+ * <GrantGate
220
+ * resource="project"
221
+ * action="delete"
222
+ * scope={{ tenant: 'project', id: projectId }}
223
+ * >
224
+ * <DeleteProjectButton />
225
+ * </GrantGate>
226
+ * ```
227
+ */
228
+ function GrantGate({ resource, action, scope, enabled, useCache, children, fallback = null, loading = null }) {
229
+ const options = {
230
+ enabled,
231
+ useCache,
232
+ returnLoading: loading !== null
233
+ };
234
+ if (scope !== void 0) options.scope = scope;
235
+ const result = useGrant(resource, action, options);
236
+ const isGranted = typeof result === "boolean" ? result : result.isGranted;
237
+ if ((typeof result === "boolean" ? false : result.isLoading) && loading !== null) return loading;
238
+ if (isGranted) return children;
239
+ return fallback;
132
240
  }
133
- exports.GrantClient = index.GrantClient;
241
+ //#endregion
242
+ exports.GrantClient = require_grant_client.GrantClient;
134
243
  exports.GrantGate = GrantGate;
135
244
  exports.GrantProvider = GrantProvider;
136
245
  exports.useGrant = useGrant;
137
246
  exports.useGrantClient = useGrantClient;
138
247
  exports.useGrantClientOptional = useGrantClientOptional;
139
- //# sourceMappingURL=react.cjs.map
248
+
249
+ //# sourceMappingURL=react.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"react.cjs","sources":["../src/react/context.tsx","../src/react/hooks/useGrant.ts","../src/react/components/GrantGate.tsx"],"sourcesContent":["'use client';\n\nimport { createContext, useContext, useMemo, type ReactNode } from 'react';\n\nimport { GrantClient } from '../grant-client';\n\nimport type { GrantClientConfig } from '../types';\n\n/**\n * Context for the Grant client\n */\nconst GrantContext = createContext<GrantClient | null>(null);\n\n/**\n * Props for the GrantProvider component\n */\nexport interface GrantProviderProps {\n /**\n * Grant client configuration\n */\n config: GrantClientConfig;\n\n /**\n * Pre-configured GrantClient instance (alternative to config)\n * If provided, config is ignored\n */\n client?: GrantClient;\n\n /**\n * Child components\n */\n children: ReactNode;\n}\n\n/**\n * Provider component that makes the Grant client available to child components\n *\n * @example\n * ```tsx\n * // Option 1: Pass config (cookie-based refresh)\n * <GrantProvider\n * config={{\n * apiUrl: 'https://api.grant.com',\n * getAccessToken: () => localStorage.getItem('accessToken'),\n * onRefreshWithCredentials: async () => {\n * const res = await fetch('https://api.grant.com/api/auth/refresh', { method: 'POST', credentials: 'include' });\n * if (!res.ok) return false;\n * const { data } = await res.json();\n * if (data?.accessToken) { localStorage.setItem('accessToken', data.accessToken); return true; }\n * return false;\n * },\n * onTokenRefresh: (tokens) => { localStorage.setItem('accessToken', tokens.accessToken); },\n * onUnauthorized: () => { window.location.href = '/login'; },\n * }}\n * >\n * <App />\n * </GrantProvider>\n *\n * // Option 2: Pass pre-configured client\n * const grant = new GrantClient({ ... });\n * <GrantProvider client={grant}>\n * <App />\n * </GrantProvider>\n * ```\n */\nexport function GrantProvider({ config, client, children }: GrantProviderProps) {\n const grantClient = useMemo(() => {\n if (client) return client;\n return new GrantClient(config);\n }, [client, config]);\n\n return <GrantContext.Provider value={grantClient}>{children}</GrantContext.Provider>;\n}\n\n/**\n * Hook to access the Grant client from context\n *\n * @throws Error if used outside of GrantProvider\n *\n * @example\n * ```tsx\n * const grant = useGrantClient();\n * const hasPermission = await grant.can('resource', 'action');\n * ```\n */\nexport function useGrantClient(): GrantClient {\n const client = useContext(GrantContext);\n\n if (!client) {\n throw new Error(\n 'useGrantClient must be used within a GrantProvider. ' +\n 'Wrap your app with <GrantProvider config={...}> to fix this error.'\n );\n }\n\n return client;\n}\n\n/**\n * Hook to optionally access the Grant client\n * Returns null if not in a GrantProvider context\n *\n * Use this when you want to gracefully handle missing provider\n */\nexport function useGrantClientOptional(): GrantClient | null {\n return useContext(GrantContext);\n}\n","'use client';\n\nimport { useState, useEffect, useCallback, useRef, useMemo } from 'react';\n\nimport { useGrantClient } from '../context';\n\nimport type { AuthorizationResult, Scope } from '../../types';\n\n/**\n * Options for the useGrant hook\n */\nexport interface UseGrantOptions {\n /** Scope to check the permission in. If provided but null/undefined, hook waits for it to become valid. */\n scope?: Scope | null;\n /** Whether to skip the permission check */\n enabled?: boolean;\n /** Whether to use cached results (default: true) */\n useCache?: boolean;\n /** Whether to return loading state (default: false) */\n returnLoading?: boolean;\n /** Context to check permissions for */\n context?: {\n resource?: Record<string, unknown> | null;\n };\n}\n\n/**\n * Result when returnLoading is true\n */\nexport interface UseGrantResult {\n /** Whether the user is granted permission */\n isGranted: boolean;\n /** Whether the permission check is loading */\n isLoading: boolean;\n}\n\n/**\n * Serialize scope for stable dependency comparison\n * This prevents re-fetching when scope object reference changes but values are the same\n */\nfunction serializeScope(scope?: Scope | null): string {\n if (!scope) return '';\n return `${scope.tenant}:${scope.id}`;\n}\n\n/**\n * Hook to check if a user is granted permission for a specific resource and action\n *\n * By default, returns a simple boolean, defaulting to false while loading.\n * Set `returnLoading: true` to get an object with `isGranted` and `isLoading`.\n *\n * @param resource - The resource slug to check\n * @param action - The action to check\n * @param options - Additional options\n *\n * @example\n * ```tsx\n * // Simple boolean (default)\n * const canEdit = useGrant('document', 'update');\n *\n * return (\n * <div>\n * {canEdit && <EditButton />}\n * </div>\n * );\n *\n * // With loading state\n * const { isGranted, isLoading } = useGrant('document', 'update', {\n * returnLoading: true,\n * });\n *\n * if (isLoading) return <Spinner />;\n * if (!isGranted) return null;\n *\n * return <EditButton />;\n * ```\n */\nexport function useGrant(\n resource: string,\n action: string,\n options: UseGrantOptions = {}\n): boolean | UseGrantResult {\n const { scope, enabled = true, useCache = true, returnLoading = false, context } = options;\n const client = useGrantClient();\n\n // Track if scope was explicitly provided (even if null/undefined)\n // This allows us to distinguish between \"scope not provided\" (optional) vs \"scope provided but falsy\" (wait for it)\n // Check this once at the start - if scope key exists in options, it was provided\n // Note: { scope: undefined } has the key, { } does not have the key\n const scopeWasProvidedRef = useRef('scope' in options);\n\n // Determine if we should wait for scope to become valid\n // If scope was provided but is falsy or invalid, wait for it to become truthy\n // Recalculate when scope changes\n const isEffectivelyEnabled = useMemo(() => {\n const hasValidScope =\n scope && typeof scope === 'object' && 'tenant' in scope && 'id' in scope && scope.id;\n const shouldWaitForScope = scopeWasProvidedRef.current && !hasValidScope;\n return enabled && !shouldWaitForScope;\n }, [scope, enabled]);\n\n const [data, setData] = useState<AuthorizationResult | null>(null);\n const [isLoading, setIsLoading] = useState(isEffectivelyEnabled);\n\n // Synchronously correct isLoading when isEffectivelyEnabled transitions.\n // useState only uses its initializer on first render, so subsequent transitions\n // leave isLoading stale for one render cycle (the effect hasn't run yet).\n // This uses React's \"storing information from previous renders\" pattern to\n // immediately set isLoading before the render completes.\n // See: https://react.dev/reference/react/useState#storing-information-from-previous-renders\n const [prevEffectivelyEnabled, setPrevEffectivelyEnabled] = useState(isEffectivelyEnabled);\n if (isEffectivelyEnabled !== prevEffectivelyEnabled) {\n setPrevEffectivelyEnabled(isEffectivelyEnabled);\n if (isEffectivelyEnabled) {\n setIsLoading(true);\n } else {\n setIsLoading(false);\n setData(null);\n }\n }\n\n // Track mounted state to prevent state updates after unmount\n const isMounted = useRef(true);\n\n // Store scope in a ref so we always have the latest value without triggering re-renders\n const scopeRef = useRef(scope);\n scopeRef.current = scope;\n\n // Store context in a ref so the callback always sends the latest context\n const contextRef = useRef(context);\n contextRef.current = context;\n\n // Serialize scope to get a stable string for dependency comparison\n const scopeKey = serializeScope(scope);\n\n // Serialize context so we re-create the callback when context meaningfully changes\n const contextKey = useMemo(\n () => (context?.resource != null ? JSON.stringify(context.resource) : ''),\n [context?.resource]\n );\n\n const fetchPermission = useCallback(async () => {\n if (!isEffectivelyEnabled) {\n setIsLoading(false);\n return;\n }\n\n setIsLoading(true);\n\n try {\n // Use scopeRef.current and contextRef.current to get the latest values\n // Convert null to undefined for the client (which expects Scope | undefined)\n const result = await client.isAuthorized(resource, action, {\n scope: scopeRef.current ?? undefined,\n useCache,\n context: contextRef.current,\n });\n if (isMounted.current) {\n setData(result);\n }\n } catch {\n // On error, set data to null (will return false)\n if (isMounted.current) {\n setData(null);\n }\n } finally {\n if (isMounted.current) {\n setIsLoading(false);\n }\n }\n // contextKey ensures we re-run when context (e.g. resource) changes so the request gets the latest context\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [client, resource, action, scopeKey, isEffectivelyEnabled, useCache, contextKey]);\n\n useEffect(() => {\n isMounted.current = true;\n\n // Clear data when scope becomes invalid (waiting for valid scope)\n if (!isEffectivelyEnabled && scopeWasProvidedRef.current) {\n setData(null);\n setIsLoading(false);\n } else {\n fetchPermission();\n }\n\n return () => {\n isMounted.current = false;\n };\n }, [fetchPermission, isEffectivelyEnabled]);\n\n const isGranted = data?.authorized ?? false;\n\n // Return object with loading state if requested, otherwise just boolean\n if (returnLoading) {\n return { isGranted, isLoading };\n }\n\n return isGranted;\n}\n","'use client';\n\nimport type { ReactNode } from 'react';\n\nimport { useGrant, type UseGrantOptions } from '../hooks/useGrant';\n\n/**\n * Props for the GrantGate component\n */\nexport interface GrantGateProps extends UseGrantOptions {\n /** The resource slug to check permission for */\n resource: string;\n /** The action to check */\n action: string;\n /** Content to render if permission is granted */\n children: ReactNode;\n /** Content to render if permission is denied (optional) */\n fallback?: ReactNode;\n /** Content to render while loading (optional) */\n loading?: ReactNode;\n}\n\n/**\n * Component that conditionally renders children based on permissions\n *\n * @example\n * ```tsx\n * // Basic usage - hide element if no permission\n * <GrantGate resource=\"document\" action=\"update\">\n * <EditButton />\n * </GrantGate>\n *\n * // With fallback for denied access\n * <GrantGate\n * resource=\"admin\"\n * action=\"access\"\n * fallback={<p>You don't have admin access</p>}\n * >\n * <AdminPanel />\n * </GrantGate>\n *\n * // With loading state\n * <GrantGate\n * resource=\"report\"\n * action=\"view\"\n * loading={<Spinner />}\n * fallback={<AccessDenied />}\n * >\n * <ReportViewer />\n * </GrantGate>\n *\n * // With scope for multi-tenant\n * <GrantGate\n * resource=\"project\"\n * action=\"delete\"\n * scope={{ tenant: 'project', id: projectId }}\n * >\n * <DeleteProjectButton />\n * </GrantGate>\n * ```\n */\nexport function GrantGate({\n resource,\n action,\n scope,\n enabled,\n useCache,\n children,\n fallback = null,\n loading = null,\n}: GrantGateProps): ReactNode {\n // Build options object conditionally\n // Only include scope in options if it's not undefined (null is valid and means \"wait for it\")\n // This allows the hook to distinguish between \"scope not provided\" (undefined) vs \"scope provided but null\"\n const options: Parameters<typeof useGrant>[2] = {\n enabled,\n useCache,\n returnLoading: loading !== null,\n };\n\n // Only add scope to options if it's explicitly null or a valid object\n // If scope is undefined, don't include it so hook treats it as optional\n if (scope !== undefined) {\n options.scope = scope;\n }\n\n // Use loading state if loading prop is provided\n const result = useGrant(resource, action, options);\n\n const isGranted = typeof result === 'boolean' ? result : result.isGranted;\n const isLoading = typeof result === 'boolean' ? false : result.isLoading;\n\n if (isLoading && loading !== null) {\n return loading;\n }\n\n if (isGranted) {\n return children;\n }\n\n return fallback;\n}\n"],"names":["createContext","useMemo","GrantClient","useContext","useRef","useState","useCallback","useEffect"],"mappings":"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"}
1
+ {"version":3,"file":"react.cjs","names":[],"sources":["../src/react/context.tsx","../src/react/hooks/useGrant.ts","../src/react/components/GrantGate.tsx"],"sourcesContent":["'use client';\n\nimport { createContext, type ReactNode, useContext, useMemo } from 'react';\n\nimport { GrantClient } from '../grant-client';\nimport type { GrantClientConfig } from '../types';\n\n/**\n * Context for the Grant client\n */\nconst GrantContext = createContext<GrantClient | null>(null);\n\n/**\n * Props for the GrantProvider component\n */\nexport interface GrantProviderProps {\n /**\n * Grant client configuration\n */\n config: GrantClientConfig;\n\n /**\n * Pre-configured GrantClient instance (alternative to config)\n * If provided, config is ignored\n */\n client?: GrantClient;\n\n /**\n * Child components\n */\n children: ReactNode;\n}\n\n/**\n * Provider component that makes the Grant client available to child components\n *\n * @example\n * ```tsx\n * // Option 1: Pass config (cookie-based refresh)\n * <GrantProvider\n * config={{\n * apiUrl: 'https://api.grant.com',\n * getAccessToken: () => localStorage.getItem('accessToken'),\n * onRefreshWithCredentials: async () => {\n * const res = await fetch('https://api.grant.com/api/auth/refresh', { method: 'POST', credentials: 'include' });\n * if (!res.ok) return false;\n * const { data } = await res.json();\n * if (data?.accessToken) { localStorage.setItem('accessToken', data.accessToken); return true; }\n * return false;\n * },\n * onTokenRefresh: (tokens) => { localStorage.setItem('accessToken', tokens.accessToken); },\n * onUnauthorized: () => { window.location.href = '/login'; },\n * }}\n * >\n * <App />\n * </GrantProvider>\n *\n * // Option 2: Pass pre-configured client\n * const grant = new GrantClient({ ... });\n * <GrantProvider client={grant}>\n * <App />\n * </GrantProvider>\n * ```\n */\nexport function GrantProvider({ config, client, children }: GrantProviderProps) {\n const grantClient = useMemo(() => {\n if (client) return client;\n return new GrantClient(config);\n }, [client, config]);\n\n return <GrantContext.Provider value={grantClient}>{children}</GrantContext.Provider>;\n}\n\n/**\n * Hook to access the Grant client from context\n *\n * @throws Error if used outside of GrantProvider\n *\n * @example\n * ```tsx\n * const grant = useGrantClient();\n * const hasPermission = await grant.can('resource', 'action');\n * ```\n */\nexport function useGrantClient(): GrantClient {\n const client = useContext(GrantContext);\n\n if (!client) {\n throw new Error(\n 'useGrantClient must be used within a GrantProvider. ' +\n 'Wrap your app with <GrantProvider config={...}> to fix this error.'\n );\n }\n\n return client;\n}\n\n/**\n * Hook to optionally access the Grant client\n * Returns null if not in a GrantProvider context\n *\n * Use this when you want to gracefully handle missing provider\n */\nexport function useGrantClientOptional(): GrantClient | null {\n return useContext(GrantContext);\n}\n","'use client';\n\nimport { useCallback, useEffect, useMemo, useRef, useState } from 'react';\n\nimport type { AuthorizationResult, Scope } from '../../types';\nimport { useGrantClient } from '../context';\n\n/**\n * Options for the useGrant hook\n */\nexport interface UseGrantOptions {\n /** Scope to check the permission in. If provided but null/undefined, hook waits for it to become valid. */\n scope?: Scope | null;\n /** Whether to skip the permission check */\n enabled?: boolean;\n /** Whether to use cached results (default: true) */\n useCache?: boolean;\n /** Whether to return loading state (default: false) */\n returnLoading?: boolean;\n /** Context to check permissions for */\n context?: {\n resource?: Record<string, unknown> | null;\n };\n}\n\n/**\n * Result when returnLoading is true\n */\nexport interface UseGrantResult {\n /** Whether the user is granted permission */\n isGranted: boolean;\n /** Whether the permission check is loading */\n isLoading: boolean;\n}\n\n/**\n * Serialize scope for stable dependency comparison\n * This prevents re-fetching when scope object reference changes but values are the same\n */\nfunction serializeScope(scope?: Scope | null): string {\n if (!scope) return '';\n return `${scope.tenant}:${scope.id}`;\n}\n\n/**\n * Hook to check if a user is granted permission for a specific resource and action\n *\n * By default, returns a simple boolean, defaulting to false while loading.\n * Set `returnLoading: true` to get an object with `isGranted` and `isLoading`.\n *\n * @param resource - The resource slug to check\n * @param action - The action to check\n * @param options - Additional options\n *\n * @example\n * ```tsx\n * // Simple boolean (default)\n * const canEdit = useGrant('document', 'update');\n *\n * return (\n * <div>\n * {canEdit && <EditButton />}\n * </div>\n * );\n *\n * // With loading state\n * const { isGranted, isLoading } = useGrant('document', 'update', {\n * returnLoading: true,\n * });\n *\n * if (isLoading) return <Spinner />;\n * if (!isGranted) return null;\n *\n * return <EditButton />;\n * ```\n */\nexport function useGrant(\n resource: string,\n action: string,\n options: UseGrantOptions = {}\n): boolean | UseGrantResult {\n const { scope, enabled = true, useCache = true, returnLoading = false, context } = options;\n const client = useGrantClient();\n\n // Track if scope was explicitly provided (even if null/undefined)\n // This allows us to distinguish between \"scope not provided\" (optional) vs \"scope provided but falsy\" (wait for it)\n // Check this once at the start - if scope key exists in options, it was provided\n // Note: { scope: undefined } has the key, { } does not have the key\n const scopeWasProvidedRef = useRef('scope' in options);\n\n // Determine if we should wait for scope to become valid\n // If scope was provided but is falsy or invalid, wait for it to become truthy\n // Recalculate when scope changes\n const isEffectivelyEnabled = useMemo(() => {\n const hasValidScope =\n scope && typeof scope === 'object' && 'tenant' in scope && 'id' in scope && scope.id;\n const shouldWaitForScope = scopeWasProvidedRef.current && !hasValidScope;\n return enabled && !shouldWaitForScope;\n }, [scope, enabled]);\n\n const [data, setData] = useState<AuthorizationResult | null>(null);\n const [isLoading, setIsLoading] = useState(isEffectivelyEnabled);\n\n // Synchronously correct isLoading when isEffectivelyEnabled transitions.\n // useState only uses its initializer on first render, so subsequent transitions\n // leave isLoading stale for one render cycle (the effect hasn't run yet).\n // This uses React's \"storing information from previous renders\" pattern to\n // immediately set isLoading before the render completes.\n // See: https://react.dev/reference/react/useState#storing-information-from-previous-renders\n const [prevEffectivelyEnabled, setPrevEffectivelyEnabled] = useState(isEffectivelyEnabled);\n if (isEffectivelyEnabled !== prevEffectivelyEnabled) {\n setPrevEffectivelyEnabled(isEffectivelyEnabled);\n if (isEffectivelyEnabled) {\n setIsLoading(true);\n } else {\n setIsLoading(false);\n setData(null);\n }\n }\n\n // Track mounted state to prevent state updates after unmount\n const isMounted = useRef(true);\n\n // Store scope in a ref so we always have the latest value without triggering re-renders\n const scopeRef = useRef(scope);\n scopeRef.current = scope;\n\n // Store context in a ref so the callback always sends the latest context\n const contextRef = useRef(context);\n contextRef.current = context;\n\n // Serialize scope to get a stable string for dependency comparison\n const scopeKey = serializeScope(scope);\n\n // Serialize context so we re-create the callback when context meaningfully changes\n const contextKey = useMemo(\n () => (context?.resource != null ? JSON.stringify(context.resource) : ''),\n [context?.resource]\n );\n\n const fetchPermission = useCallback(async () => {\n if (!isEffectivelyEnabled) {\n setIsLoading(false);\n return;\n }\n\n setIsLoading(true);\n\n try {\n // Use scopeRef.current and contextRef.current to get the latest values\n // Convert null to undefined for the client (which expects Scope | undefined)\n const result = await client.isAuthorized(resource, action, {\n scope: scopeRef.current ?? undefined,\n useCache,\n context: contextRef.current,\n });\n if (isMounted.current) {\n setData(result);\n }\n } catch {\n // On error, set data to null (will return false)\n if (isMounted.current) {\n setData(null);\n }\n } finally {\n if (isMounted.current) {\n setIsLoading(false);\n }\n }\n // contextKey ensures we re-run when context (e.g. resource) changes so the request gets the latest context\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [client, resource, action, scopeKey, isEffectivelyEnabled, useCache, contextKey]);\n\n useEffect(() => {\n isMounted.current = true;\n\n // Clear data when scope becomes invalid (waiting for valid scope)\n if (!isEffectivelyEnabled && scopeWasProvidedRef.current) {\n setData(null);\n setIsLoading(false);\n } else {\n fetchPermission();\n }\n\n return () => {\n isMounted.current = false;\n };\n }, [fetchPermission, isEffectivelyEnabled]);\n\n const isGranted = data?.authorized ?? false;\n\n // Return object with loading state if requested, otherwise just boolean\n if (returnLoading) {\n return { isGranted, isLoading };\n }\n\n return isGranted;\n}\n","'use client';\n\nimport type { ReactNode } from 'react';\n\nimport { useGrant, type UseGrantOptions } from '../hooks/useGrant';\n\n/**\n * Props for the GrantGate component\n */\nexport interface GrantGateProps extends UseGrantOptions {\n /** The resource slug to check permission for */\n resource: string;\n /** The action to check */\n action: string;\n /** Content to render if permission is granted */\n children: ReactNode;\n /** Content to render if permission is denied (optional) */\n fallback?: ReactNode;\n /** Content to render while loading (optional) */\n loading?: ReactNode;\n}\n\n/**\n * Component that conditionally renders children based on permissions\n *\n * @example\n * ```tsx\n * // Basic usage - hide element if no permission\n * <GrantGate resource=\"document\" action=\"update\">\n * <EditButton />\n * </GrantGate>\n *\n * // With fallback for denied access\n * <GrantGate\n * resource=\"admin\"\n * action=\"access\"\n * fallback={<p>You don't have admin access</p>}\n * >\n * <AdminPanel />\n * </GrantGate>\n *\n * // With loading state\n * <GrantGate\n * resource=\"report\"\n * action=\"view\"\n * loading={<Spinner />}\n * fallback={<AccessDenied />}\n * >\n * <ReportViewer />\n * </GrantGate>\n *\n * // With scope for multi-tenant\n * <GrantGate\n * resource=\"project\"\n * action=\"delete\"\n * scope={{ tenant: 'project', id: projectId }}\n * >\n * <DeleteProjectButton />\n * </GrantGate>\n * ```\n */\nexport function GrantGate({\n resource,\n action,\n scope,\n enabled,\n useCache,\n children,\n fallback = null,\n loading = null,\n}: GrantGateProps): ReactNode {\n // Build options object conditionally\n // Only include scope in options if it's not undefined (null is valid and means \"wait for it\")\n // This allows the hook to distinguish between \"scope not provided\" (undefined) vs \"scope provided but null\"\n const options: Parameters<typeof useGrant>[2] = {\n enabled,\n useCache,\n returnLoading: loading !== null,\n };\n\n // Only add scope to options if it's explicitly null or a valid object\n // If scope is undefined, don't include it so hook treats it as optional\n if (scope !== undefined) {\n options.scope = scope;\n }\n\n // Use loading state if loading prop is provided\n const result = useGrant(resource, action, options);\n\n const isGranted = typeof result === 'boolean' ? result : result.isGranted;\n const isLoading = typeof result === 'boolean' ? false : result.isLoading;\n\n if (isLoading && loading !== null) {\n return loading;\n }\n\n if (isGranted) {\n return children;\n }\n\n return fallback;\n}\n"],"mappings":"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"}