New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@clerk/clerk-react

Package Overview
Dependencies
Maintainers
9
Versions
3039
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clerk/clerk-react - npm Package Compare versions

Comparing version

to
3.3.0

dist/contexts/OrganizationContext.d.ts

16

dist/hooks/useOrganization.d.ts

@@ -1,7 +0,15 @@

import { CreateOrganizationInvitationParams, OrganizationResource } from '@clerk/types';
declare type UseOrganization = {
inviteMember: (params: CreateOrganizationInvitationParams) => Promise<OrganizationResource>;
import { ClerkPaginationParams, OrganizationResource } from '@clerk/types';
declare type UseOrganizationParams = {
invitations?: ClerkPaginationParams;
};
export declare function useOrganization(organizationId: string): UseOrganization;
declare type UseOrganizationReturn = {
isLoaded: false;
organization: undefined;
} | {
isLoaded: true;
organization: OrganizationResource | null | undefined;
};
declare type UseOrganization = (params: UseOrganizationParams) => UseOrganizationReturn;
export declare const useOrganization: UseOrganization;
export {};
//# sourceMappingURL=useOrganization.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.useOrganization = void 0;
const react_1 = require("react");
const contexts_1 = require("../contexts");
const assertHelpers_1 = require("../contexts/assertHelpers");
const StructureContext_1 = require("../contexts/StructureContext");
function useOrganization(organizationId) {
const structureCtx = (0, react_1.useContext)(StructureContext_1.StructureContext);
(0, assertHelpers_1.assertWrappedByClerkProvider)(structureCtx);
const clerk = (0, contexts_1.useClerk)();
const UserContext_1 = require("src/contexts/UserContext");
const IsomorphicClerkContext_1 = require("../contexts/IsomorphicClerkContext");
const OrganizationContext_1 = require("../contexts/OrganizationContext");
const useOrganization = ({ invitations }) => {
const organization = (0, OrganizationContext_1.useOrganizationContext)();
const user = (0, UserContext_1.useUserContext)();
const isomorphicClerk = (0, IsomorphicClerkContext_1.useIsomorphicClerkContext)();
// TODO re-iterate on SSR based on value of `organization` and user
if (!isomorphicClerk.loaded || !user) {
return {
isLoaded: false,
organization: undefined,
};
}
if (invitations) {
// query invitations for the org
// if the org changes query the invitations again
// caching is in swr
}
const clerk = isomorphicClerk;
return {
inviteMember: async (params) =>
// @ts-expect-error
await clerk.__unstable_inviteMember(organizationId, params),
isLoaded: true,
organization,
membershipList: user.organizationMemberships,
membership: getCurrentOrganizationMembership(user.organizationMemberships, organization === null || organization === void 0 ? void 0 : organization.id), // your membership in the current org
// invitationList, // expanded cause you need them
};
};
exports.useOrganization = useOrganization;
function getCurrentOrganizationMembership(organizationMemberships, activeOrganizationId) {
return organizationMemberships.find(organizationMembership => organizationMembership.organization.id === activeOrganizationId);
}
exports.useOrganization = useOrganization;
// Peter suggestion Final
// const {
// membershipList, // expanded cause you need them
// membership, // your membership in the current org
// invitationList, // expanded cause you need them
// organization, // your organization,
// isLoaded, // controlled by ClerkLoaded + All Org related XHRs combined,
// } = useOrganization({ // The hook is more like 'The organization feature set'
// membershipList: { limit, offset }, // key means expansion
// invitationsList: { limit, offset }
// });
//# sourceMappingURL=useOrganization.js.map
/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
export declare const LIB_VERSION = "3.3.0-staging.4";
export declare const LIB_VERSION = "3.3.0";
export declare const LIB_NAME = "@clerk/clerk-react";
//# sourceMappingURL=info.d.ts.map

@@ -5,4 +5,4 @@ "use strict";

/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
exports.LIB_VERSION = '3.3.0-staging.4';
exports.LIB_VERSION = '3.3.0';
exports.LIB_NAME = '@clerk/clerk-react';
//# sourceMappingURL=info.js.map
{
"name": "@clerk/clerk-react",
"version": "3.3.0-staging.4",
"version": "3.3.0",
"license": "MIT",

@@ -31,3 +31,3 @@ "description": "Clerk.dev React library",

"dependencies": {
"@clerk/types": "^2.15.0-staging.3",
"@clerk/types": "^2.15.0",
"tslib": "^2.3.1"

@@ -71,3 +71,3 @@ },

"homepage": "https://clerk.dev/",
"gitHead": "030d55c1ad451a0c99a014b68b5a2aa26020ea05"
"gitHead": "bb1d6cc0accbe9d9df6b5b557a41c42c657f6830"
}
/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
export const LIB_VERSION = '3.3.0-staging.4';
export const LIB_VERSION = '3.3.0';
export const LIB_NAME = '@clerk/clerk-react';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet