@azure/msal-react 1.3.2 → 1.4.2

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.
@@ -85,7 +85,7 @@ function getAccountByIdentifiers(allAccounts, accountIdentifiers) {
85
85
 
86
86
  /* eslint-disable header/header */
87
87
  const name = "@azure/msal-react";
88
- const version = "1.3.2";
88
+ const version = "1.4.2";
89
89
 
90
90
  /*
91
91
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -109,7 +109,6 @@ const reducer = (previousState, action) => {
109
109
  type,
110
110
  payload
111
111
  } = action;
112
- let newAccounts = previousState.accounts;
113
112
  let newInProgress = previousState.inProgress;
114
113
 
115
114
  switch (type) {
@@ -138,17 +137,26 @@ const reducer = (previousState, action) => {
138
137
 
139
138
  const currentAccounts = payload.instance.getAllAccounts();
140
139
 
141
- if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {
142
- payload.logger.info("MsalProvider - updating account state");
143
- newAccounts = currentAccounts;
140
+ if (newInProgress !== previousState.inProgress && !accountArraysAreEqual(currentAccounts, previousState.accounts)) {
141
+ // Both inProgress and accounts changed
142
+ return { ...previousState,
143
+ inProgress: newInProgress,
144
+ accounts: currentAccounts
145
+ };
146
+ } else if (newInProgress !== previousState.inProgress) {
147
+ // Only only inProgress changed
148
+ return { ...previousState,
149
+ inProgress: newInProgress
150
+ };
151
+ } else if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {
152
+ // Only accounts changed
153
+ return { ...previousState,
154
+ accounts: currentAccounts
155
+ };
144
156
  } else {
145
- payload.logger.verbose("MsalProvider - no account changes");
157
+ // Nothing changed
158
+ return previousState;
146
159
  }
147
-
148
- return { ...previousState,
149
- inProgress: newInProgress,
150
- accounts: newAccounts
151
- };
152
160
  };
153
161
  /**
154
162
  * MSAL context provider component. This must be rendered above any other components that use MSAL.
@@ -186,20 +194,22 @@ function MsalProvider(_ref) {
186
194
  });
187
195
  });
188
196
  logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);
189
- instance.handleRedirectPromise().catch(() => {
190
- // Errors should be handled by listening to the LOGIN_FAILURE event
191
- return;
192
- }).finally(() => {
193
- /*
194
- * If handleRedirectPromise returns a cached promise the necessary events may not be fired
195
- * This is a fallback to prevent inProgress from getting stuck in 'startup'
196
- */
197
- updateState({
198
- payload: {
199
- instance,
200
- logger
201
- },
202
- type: MsalProviderActionType.UNBLOCK_INPROGRESS
197
+ instance.initialize().then(() => {
198
+ instance.handleRedirectPromise().catch(() => {
199
+ // Errors should be handled by listening to the LOGIN_FAILURE event
200
+ return;
201
+ }).finally(() => {
202
+ /*
203
+ * If handleRedirectPromise returns a cached promise the necessary events may not be fired
204
+ * This is a fallback to prevent inProgress from getting stuck in 'startup'
205
+ */
206
+ updateState({
207
+ payload: {
208
+ instance,
209
+ logger
210
+ },
211
+ type: MsalProviderActionType.UNBLOCK_INPROGRESS
212
+ });
203
213
  });
204
214
  });
205
215
  return () => {
@@ -1 +1 @@
1
- {"version":3,"file":"msal-react.cjs.development.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/packageMetadata.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/UnauthenticatedTemplate.tsx","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/MsalAuthenticationTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.3.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newAccounts = previousState.accounts;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n\n const currentAccounts = payload.instance.getAllAccounts();\n if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n payload.logger.info(\"MsalProvider - updating account state\");\n newAccounts = currentAccounts;\n } else {\n payload.logger.verbose(\"MsalProvider - no account changes\");\n }\n\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: newAccounts\n };\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["defaultMsalContext","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalContext","React","MsalConsumer","Consumer","getChildrenOrFunction","children","args","accountArraysAreEqual","arrayA","arrayB","length","comparisonArray","every","elementA","elementB","shift","homeAccountId","localAccountId","username","getAccountByIdentifiers","allAccounts","accountIdentifiers","matchedAccounts","filter","accountObj","toLowerCase","name","version","MsalProviderActionType","reducer","previousState","action","type","payload","newAccounts","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","verbose","MsalProvider","useEffect","initializeWrapperLibrary","WrapperSKU","useMemo","getLogger","clone","SKU","state","updateState","useReducer","undefined","callbackId","addEventCallback","handleRedirectPromise","catch","finally","removeEventCallback","contextValue","Provider","value","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","AuthenticatedTemplate","context","accountIdentifier","Fragment","UnauthenticatedTemplate","HandleRedirect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthErrorMessage","invalidInteractionType","code","desc","unableToFallbackToInteraction","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","prototype","createInvalidInteractionTypeError","createUnableToFallbackToInteractionError","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","callbackInteractionType","callbackRequest","loginType","loginRequest","InteractionType","Popup","loginPopup","Redirect","loginRedirect","then","Silent","ssoSilent","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","getToken","acquireTokenSilent","e","InteractionRequiredAuthError","response","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","MsalAuthenticationTemplate","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","msalAuthResult","withMsal","Component","ComponentWithMsal","props","msal","msalContext","componentName","displayName"],"mappings":"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"}
1
+ {"version":3,"file":"msal-react.cjs.development.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/packageMetadata.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/UnauthenticatedTemplate.tsx","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/MsalAuthenticationTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.4.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n \n const currentAccounts = payload.instance.getAllAccounts();\n if (newInProgress !== previousState.inProgress && \n !accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Both inProgress and accounts changed\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: currentAccounts\n };\n } else if (newInProgress !== previousState.inProgress) {\n // Only only inProgress changed\n return {\n ...previousState,\n inProgress: newInProgress\n };\n } else if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Only accounts changed\n return {\n ...previousState,\n accounts: currentAccounts\n };\n } else {\n // Nothing changed\n return previousState;\n }\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.initialize().then(() => {\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["defaultMsalContext","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalContext","React","MsalConsumer","Consumer","getChildrenOrFunction","children","args","accountArraysAreEqual","arrayA","arrayB","length","comparisonArray","every","elementA","elementB","shift","homeAccountId","localAccountId","username","getAccountByIdentifiers","allAccounts","accountIdentifiers","matchedAccounts","filter","accountObj","toLowerCase","name","version","MsalProviderActionType","reducer","previousState","action","type","payload","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","MsalProvider","useEffect","initializeWrapperLibrary","WrapperSKU","useMemo","getLogger","clone","SKU","state","updateState","useReducer","undefined","callbackId","addEventCallback","verbose","initialize","then","handleRedirectPromise","catch","finally","removeEventCallback","contextValue","Provider","value","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","AuthenticatedTemplate","context","accountIdentifier","Fragment","UnauthenticatedTemplate","HandleRedirect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthErrorMessage","invalidInteractionType","code","desc","unableToFallbackToInteraction","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","prototype","createInvalidInteractionTypeError","createUnableToFallbackToInteractionError","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","callbackInteractionType","callbackRequest","loginType","loginRequest","InteractionType","Popup","loginPopup","Redirect","loginRedirect","Silent","ssoSilent","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","getToken","acquireTokenSilent","e","InteractionRequiredAuthError","response","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","MsalAuthenticationTemplate","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","msalAuthResult","withMsal","Component","ComponentWithMsal","props","msal","msalContext","componentName","displayName"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e,t=require("react"),n=(e=t)&&"object"==typeof e&&"default"in e?e.default:e,r=require("@azure/msal-browser");const o=t.createContext({instance:r.stubbedPublicClientApplication,inProgress:r.InteractionStatus.None,accounts:[],logger:new r.Logger({})}),c=o.Consumer;function a(e,t){return"function"==typeof e?e(t):e}function s(e,t){return e.length>0&&(t.homeAccountId||t.localAccountId||t.username)&&e.filter(e=>!(t.username&&t.username.toLowerCase()!==e.username.toLowerCase()||t.homeAccountId&&t.homeAccountId.toLowerCase()!==e.homeAccountId.toLowerCase()||t.localAccountId&&t.localAccountId.toLowerCase()!==e.localAccountId.toLowerCase()))[0]||null}var i;!function(e){e.UNBLOCK_INPROGRESS="UNBLOCK_INPROGRESS",e.EVENT="EVENT"}(i||(i={}));const u=(e,t)=>{const{type:n,payload:o}=t;let c=e.accounts,a=e.inProgress;switch(n){case i.UNBLOCK_INPROGRESS:e.inProgress===r.InteractionStatus.Startup&&(a=r.InteractionStatus.None,o.logger.info("MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'"));break;case i.EVENT:const t=o.message,c=r.EventMessageUtils.getInteractionStatusFromEvent(t,e.inProgress);c&&(o.logger.info(`MsalProvider - ${t.eventType} results in setting inProgress from ${e.inProgress} to ${c}`),a=c);break;default:throw new Error("Unknown action type: "+n)}const s=o.instance.getAllAccounts();return function(e,t){if(e.length!==t.length)return!1;const n=[...t];return e.every(e=>{const t=n.shift();return!(!e||!t)&&e.homeAccountId===t.homeAccountId&&e.localAccountId===t.localAccountId&&e.username===t.username})}(s,e.accounts)?o.logger.verbose("MsalProvider - no account changes"):(o.logger.info("MsalProvider - updating account state"),c=s),{...e,inProgress:a,accounts:c}},l=()=>t.useContext(o);function d(e,t){return t&&(t.username||t.homeAccountId||t.localAccountId)?!!s(e,t):e.length>0}function g(e){const{accounts:n}=l(),[r,o]=t.useState(()=>d(n,e));return t.useEffect(()=>{o(d(n,e))},[n,e]),r}function p(e,t){return t&&(t.homeAccountId||t.localAccountId||t.username)?s(e.getAllAccounts(),t):e.getActiveAccount()}function h(e){const{instance:n,inProgress:o,logger:c}=l(),[a,s]=t.useState(()=>p(n,e));return t.useEffect(()=>{s(t=>{const o=p(n,e);return r.AccountEntity.accountInfoIsEqual(t,o,!0)?t:(c.info("useAccount - Updating account"),o)})},[o,e,n,c]),a}class m extends r.AuthError{constructor(e,t){super(e,t),Object.setPrototypeOf(this,m.prototype),this.name="ReactAuthError"}static createInvalidInteractionTypeError(){return new m("invalid_interaction_type","The provided interaction type is invalid.")}static createUnableToFallbackToInteractionError(){return new m("unable_to_fallback_to_interaction","Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.")}}function I(e,n,o){const{instance:c,inProgress:a,logger:s}=l(),i=g(o),u=h(o),[[d,p],I]=t.useState([null,null]),A=t.useRef(a!==r.InteractionStatus.None);t.useEffect(()=>{A.current=a!==r.InteractionStatus.None},[a]);const f=t.useRef(!0);t.useEffect(()=>{(p||d)&&(f.current=!1)},[p,d]);const E=t.useCallback(async(t,o)=>{const a=o||n;switch(t||e){case r.InteractionType.Popup:return s.verbose("useMsalAuthentication - Calling loginPopup"),c.loginPopup(a);case r.InteractionType.Redirect:return s.verbose("useMsalAuthentication - Calling loginRedirect"),c.loginRedirect(a).then(null);case r.InteractionType.Silent:return s.verbose("useMsalAuthentication - Calling ssoSilent"),c.ssoSilent(a);default:throw m.createInvalidInteractionTypeError()}},[c,e,n,s]),v=t.useCallback(async(t,o)=>{const a=t||e;let i;return o?(s.trace("useMsalAuthentication - acquireToken - Using request provided in the callback"),i={...o}):n?(s.trace("useMsalAuthentication - acquireToken - Using request provided in the hook"),i={...n,scopes:n.scopes||r.OIDC_DEFAULT_SCOPES}):(s.trace("useMsalAuthentication - acquireToken - No request object provided, using default request."),i={scopes:r.OIDC_DEFAULT_SCOPES}),!i.account&&u&&(s.trace("useMsalAuthentication - acquireToken - Attaching account to request"),i.account=u),(async()=>(s.verbose("useMsalAuthentication - Calling acquireTokenSilent"),c.acquireTokenSilent(i).catch(async e=>{if(e instanceof r.InteractionRequiredAuthError){if(A.current)throw s.error("useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes."),m.createUnableToFallbackToInteractionError();return s.error("useMsalAuthentication - Interaction required, falling back to interaction"),E(a,i)}throw e})))().then(e=>(I([e,null]),e)).catch(e=>{throw I([null,e]),e})},[c,e,n,s,u,E]);return t.useEffect(()=>{const e=c.addEventCallback(e=>{switch(e.eventType){case r.EventType.LOGIN_SUCCESS:case r.EventType.SSO_SILENT_SUCCESS:e.payload&&I([e.payload,null]);break;case r.EventType.LOGIN_FAILURE:case r.EventType.SSO_SILENT_FAILURE:e.error&&I([null,e.error])}});return s.verbose("useMsalAuthentication - Registered event callback with id: "+e),()=>{e&&(s.verbose("useMsalAuthentication - Removing event callback "+e),c.removeEventCallback(e))}},[c,s]),t.useEffect(()=>{f.current&&a===r.InteractionStatus.None&&(f.current=!1,i?u&&(s.info("useMsalAuthentication - User is authenticated, attempting to acquire token"),v().catch(()=>{})):(s.info("useMsalAuthentication - No user is authenticated, attempting to login"),E().catch(()=>{})))},[i,u,a,E,v,s]),{login:E,acquireToken:v,result:d,error:p}}exports.AuthenticatedTemplate=function(e){let{username:o,homeAccountId:c,localAccountId:s,children:i}=e;const u=l();return g(t.useMemo(()=>({username:o,homeAccountId:c,localAccountId:s}),[o,c,s]))&&u.inProgress!==r.InteractionStatus.Startup?n.createElement(n.Fragment,null,a(i,u)):null},exports.MsalAuthenticationTemplate=function(e){let{interactionType:o,username:c,homeAccountId:s,localAccountId:i,authenticationRequest:u,loadingComponent:d,errorComponent:p,children:h}=e;const m=t.useMemo(()=>({username:c,homeAccountId:s,localAccountId:i}),[c,s,i]),A=l(),f=I(o,u,m),E=g(m);if(f.error&&A.inProgress===r.InteractionStatus.None){if(p)return n.createElement(p,Object.assign({},f));throw f.error}return E?n.createElement(n.Fragment,null,a(h,f)):d&&A.inProgress!==r.InteractionStatus.None?n.createElement(d,Object.assign({},A)):null},exports.MsalConsumer=c,exports.MsalContext=o,exports.MsalProvider=function(e){let{instance:c,children:a}=e;t.useEffect(()=>{c.initializeWrapperLibrary(r.WrapperSKU.React,"1.3.2")},[c]);const s=t.useMemo(()=>c.getLogger().clone("@azure/msal-react","1.3.2"),[c]),[l,d]=t.useReducer(u,void 0,()=>({inProgress:r.InteractionStatus.Startup,accounts:c.getAllAccounts()}));return t.useEffect(()=>{const e=c.addEventCallback(e=>{d({payload:{instance:c,logger:s,message:e},type:i.EVENT})});return s.verbose("MsalProvider - Registered event callback with id: "+e),c.handleRedirectPromise().catch(()=>{}).finally(()=>{d({payload:{instance:c,logger:s},type:i.UNBLOCK_INPROGRESS})}),()=>{e&&(s.verbose("MsalProvider - Removing event callback "+e),c.removeEventCallback(e))}},[c,s]),n.createElement(o.Provider,{value:{instance:c,inProgress:l.inProgress,accounts:l.accounts,logger:s}},a)},exports.UnauthenticatedTemplate=function(e){let{username:o,homeAccountId:c,localAccountId:s,children:i}=e;const u=l();return g(t.useMemo(()=>({username:o,homeAccountId:c,localAccountId:s}),[o,c,s]))||u.inProgress===r.InteractionStatus.Startup||u.inProgress===r.InteractionStatus.HandleRedirect?null:n.createElement(n.Fragment,null,a(i,u))},exports.useAccount=h,exports.useIsAuthenticated=g,exports.useMsal=l,exports.useMsalAuthentication=I,exports.version="1.3.2",exports.withMsal=e=>{const t=t=>{const r=l();return n.createElement(e,Object.assign({},t,{msalContext:r}))};return t.displayName=`withMsal(${e.displayName||e.name||"Component"})`,t};
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e,t=require("react"),n=(e=t)&&"object"==typeof e&&"default"in e?e.default:e,r=require("@azure/msal-browser");const o=t.createContext({instance:r.stubbedPublicClientApplication,inProgress:r.InteractionStatus.None,accounts:[],logger:new r.Logger({})}),c=o.Consumer;function a(e,t){return"function"==typeof e?e(t):e}function s(e,t){if(e.length!==t.length)return!1;const n=[...t];return e.every(e=>{const t=n.shift();return!(!e||!t)&&e.homeAccountId===t.homeAccountId&&e.localAccountId===t.localAccountId&&e.username===t.username})}function i(e,t){return e.length>0&&(t.homeAccountId||t.localAccountId||t.username)&&e.filter(e=>!(t.username&&t.username.toLowerCase()!==e.username.toLowerCase()||t.homeAccountId&&t.homeAccountId.toLowerCase()!==e.homeAccountId.toLowerCase()||t.localAccountId&&t.localAccountId.toLowerCase()!==e.localAccountId.toLowerCase()))[0]||null}var u;!function(e){e.UNBLOCK_INPROGRESS="UNBLOCK_INPROGRESS",e.EVENT="EVENT"}(u||(u={}));const l=(e,t)=>{const{type:n,payload:o}=t;let c=e.inProgress;switch(n){case u.UNBLOCK_INPROGRESS:e.inProgress===r.InteractionStatus.Startup&&(c=r.InteractionStatus.None,o.logger.info("MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'"));break;case u.EVENT:const t=o.message,a=r.EventMessageUtils.getInteractionStatusFromEvent(t,e.inProgress);a&&(o.logger.info(`MsalProvider - ${t.eventType} results in setting inProgress from ${e.inProgress} to ${a}`),c=a);break;default:throw new Error("Unknown action type: "+n)}const a=o.instance.getAllAccounts();return c===e.inProgress||s(a,e.accounts)?c!==e.inProgress?{...e,inProgress:c}:s(a,e.accounts)?e:{...e,accounts:a}:{...e,inProgress:c,accounts:a}},d=()=>t.useContext(o);function g(e,t){return t&&(t.username||t.homeAccountId||t.localAccountId)?!!i(e,t):e.length>0}function h(e){const{accounts:n}=d(),[r,o]=t.useState(()=>g(n,e));return t.useEffect(()=>{o(g(n,e))},[n,e]),r}function p(e,t){return t&&(t.homeAccountId||t.localAccountId||t.username)?i(e.getAllAccounts(),t):e.getActiveAccount()}function m(e){const{instance:n,inProgress:o,logger:c}=d(),[a,s]=t.useState(()=>p(n,e));return t.useEffect(()=>{s(t=>{const o=p(n,e);return r.AccountEntity.accountInfoIsEqual(t,o,!0)?t:(c.info("useAccount - Updating account"),o)})},[o,e,n,c]),a}class I extends r.AuthError{constructor(e,t){super(e,t),Object.setPrototypeOf(this,I.prototype),this.name="ReactAuthError"}static createInvalidInteractionTypeError(){return new I("invalid_interaction_type","The provided interaction type is invalid.")}static createUnableToFallbackToInteractionError(){return new I("unable_to_fallback_to_interaction","Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.")}}function A(e,n,o){const{instance:c,inProgress:a,logger:s}=d(),i=h(o),u=m(o),[[l,g],p]=t.useState([null,null]),A=t.useRef(a!==r.InteractionStatus.None);t.useEffect(()=>{A.current=a!==r.InteractionStatus.None},[a]);const f=t.useRef(!0);t.useEffect(()=>{(g||l)&&(f.current=!1)},[g,l]);const E=t.useCallback(async(t,o)=>{const a=o||n;switch(t||e){case r.InteractionType.Popup:return s.verbose("useMsalAuthentication - Calling loginPopup"),c.loginPopup(a);case r.InteractionType.Redirect:return s.verbose("useMsalAuthentication - Calling loginRedirect"),c.loginRedirect(a).then(null);case r.InteractionType.Silent:return s.verbose("useMsalAuthentication - Calling ssoSilent"),c.ssoSilent(a);default:throw I.createInvalidInteractionTypeError()}},[c,e,n,s]),v=t.useCallback(async(t,o)=>{const a=t||e;let i;return o?(s.trace("useMsalAuthentication - acquireToken - Using request provided in the callback"),i={...o}):n?(s.trace("useMsalAuthentication - acquireToken - Using request provided in the hook"),i={...n,scopes:n.scopes||r.OIDC_DEFAULT_SCOPES}):(s.trace("useMsalAuthentication - acquireToken - No request object provided, using default request."),i={scopes:r.OIDC_DEFAULT_SCOPES}),!i.account&&u&&(s.trace("useMsalAuthentication - acquireToken - Attaching account to request"),i.account=u),(async()=>(s.verbose("useMsalAuthentication - Calling acquireTokenSilent"),c.acquireTokenSilent(i).catch(async e=>{if(e instanceof r.InteractionRequiredAuthError){if(A.current)throw s.error("useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes."),I.createUnableToFallbackToInteractionError();return s.error("useMsalAuthentication - Interaction required, falling back to interaction"),E(a,i)}throw e})))().then(e=>(p([e,null]),e)).catch(e=>{throw p([null,e]),e})},[c,e,n,s,u,E]);return t.useEffect(()=>{const e=c.addEventCallback(e=>{switch(e.eventType){case r.EventType.LOGIN_SUCCESS:case r.EventType.SSO_SILENT_SUCCESS:e.payload&&p([e.payload,null]);break;case r.EventType.LOGIN_FAILURE:case r.EventType.SSO_SILENT_FAILURE:e.error&&p([null,e.error])}});return s.verbose("useMsalAuthentication - Registered event callback with id: "+e),()=>{e&&(s.verbose("useMsalAuthentication - Removing event callback "+e),c.removeEventCallback(e))}},[c,s]),t.useEffect(()=>{f.current&&a===r.InteractionStatus.None&&(f.current=!1,i?u&&(s.info("useMsalAuthentication - User is authenticated, attempting to acquire token"),v().catch(()=>{})):(s.info("useMsalAuthentication - No user is authenticated, attempting to login"),E().catch(()=>{})))},[i,u,a,E,v,s]),{login:E,acquireToken:v,result:l,error:g}}exports.AuthenticatedTemplate=function(e){let{username:o,homeAccountId:c,localAccountId:s,children:i}=e;const u=d();return h(t.useMemo(()=>({username:o,homeAccountId:c,localAccountId:s}),[o,c,s]))&&u.inProgress!==r.InteractionStatus.Startup?n.createElement(n.Fragment,null,a(i,u)):null},exports.MsalAuthenticationTemplate=function(e){let{interactionType:o,username:c,homeAccountId:s,localAccountId:i,authenticationRequest:u,loadingComponent:l,errorComponent:g,children:p}=e;const m=t.useMemo(()=>({username:c,homeAccountId:s,localAccountId:i}),[c,s,i]),I=d(),f=A(o,u,m),E=h(m);if(f.error&&I.inProgress===r.InteractionStatus.None){if(g)return n.createElement(g,Object.assign({},f));throw f.error}return E?n.createElement(n.Fragment,null,a(p,f)):l&&I.inProgress!==r.InteractionStatus.None?n.createElement(l,Object.assign({},I)):null},exports.MsalConsumer=c,exports.MsalContext=o,exports.MsalProvider=function(e){let{instance:c,children:a}=e;t.useEffect(()=>{c.initializeWrapperLibrary(r.WrapperSKU.React,"1.4.2")},[c]);const s=t.useMemo(()=>c.getLogger().clone("@azure/msal-react","1.4.2"),[c]),[i,d]=t.useReducer(l,void 0,()=>({inProgress:r.InteractionStatus.Startup,accounts:c.getAllAccounts()}));return t.useEffect(()=>{const e=c.addEventCallback(e=>{d({payload:{instance:c,logger:s,message:e},type:u.EVENT})});return s.verbose("MsalProvider - Registered event callback with id: "+e),c.initialize().then(()=>{c.handleRedirectPromise().catch(()=>{}).finally(()=>{d({payload:{instance:c,logger:s},type:u.UNBLOCK_INPROGRESS})})}),()=>{e&&(s.verbose("MsalProvider - Removing event callback "+e),c.removeEventCallback(e))}},[c,s]),n.createElement(o.Provider,{value:{instance:c,inProgress:i.inProgress,accounts:i.accounts,logger:s}},a)},exports.UnauthenticatedTemplate=function(e){let{username:o,homeAccountId:c,localAccountId:s,children:i}=e;const u=d();return h(t.useMemo(()=>({username:o,homeAccountId:c,localAccountId:s}),[o,c,s]))||u.inProgress===r.InteractionStatus.Startup||u.inProgress===r.InteractionStatus.HandleRedirect?null:n.createElement(n.Fragment,null,a(i,u))},exports.useAccount=m,exports.useIsAuthenticated=h,exports.useMsal=d,exports.useMsalAuthentication=A,exports.version="1.4.2",exports.withMsal=e=>{const t=t=>{const r=d();return n.createElement(e,Object.assign({},t,{msalContext:r}))};return t.displayName=`withMsal(${e.displayName||e.name||"Component"})`,t};
2
2
  //# sourceMappingURL=msal-react.cjs.production.min.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"msal-react.cjs.production.min.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/MsalAuthenticationTemplate.tsx","../src/packageMetadata.ts","../src/components/UnauthenticatedTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newAccounts = previousState.accounts;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n\n const currentAccounts = payload.instance.getAllAccounts();\n if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n payload.logger.info(\"MsalProvider - updating account state\");\n newAccounts = currentAccounts;\n } else {\n payload.logger.verbose(\"MsalProvider - no account changes\");\n }\n\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: newAccounts\n };\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.3.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["MsalContext","React","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalConsumer","Consumer","getChildrenOrFunction","children","args","getAccountByIdentifiers","allAccounts","accountIdentifiers","length","homeAccountId","localAccountId","username","filter","accountObj","toLowerCase","MsalProviderActionType","reducer","previousState","action","type","payload","newAccounts","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","arrayA","arrayB","comparisonArray","every","elementA","elementB","shift","accountArraysAreEqual","verbose","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","useEffect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","this","prototype","name","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","async","callbackInteractionType","callbackRequest","loginRequest","InteractionType","Popup","loginPopup","Redirect","loginRedirect","then","Silent","ssoSilent","createInvalidInteractionTypeError","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","acquireTokenSilent","catch","e","InteractionRequiredAuthError","createUnableToFallbackToInteractionError","getToken","response","callbackId","addEventCallback","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","removeEventCallback","context","useMemo","Fragment","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","accountIdentifier","msalAuthResult","initializeWrapperLibrary","WrapperSKU","getLogger","clone","state","updateState","useReducer","undefined","handleRedirectPromise","finally","Provider","value","HandleRedirect","Component","ComponentWithMsal","props","msal","msalContext","displayName"],"mappings":"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"}
1
+ {"version":3,"file":"msal-react.cjs.production.min.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/MsalAuthenticationTemplate.tsx","../src/packageMetadata.ts","../src/components/UnauthenticatedTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n \n const currentAccounts = payload.instance.getAllAccounts();\n if (newInProgress !== previousState.inProgress && \n !accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Both inProgress and accounts changed\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: currentAccounts\n };\n } else if (newInProgress !== previousState.inProgress) {\n // Only only inProgress changed\n return {\n ...previousState,\n inProgress: newInProgress\n };\n } else if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Only accounts changed\n return {\n ...previousState,\n accounts: currentAccounts\n };\n } else {\n // Nothing changed\n return previousState;\n }\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.initialize().then(() => {\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.4.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["MsalContext","React","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalConsumer","Consumer","getChildrenOrFunction","children","args","accountArraysAreEqual","arrayA","arrayB","length","comparisonArray","every","elementA","elementB","shift","homeAccountId","localAccountId","username","getAccountByIdentifiers","allAccounts","accountIdentifiers","filter","accountObj","toLowerCase","MsalProviderActionType","reducer","previousState","action","type","payload","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","useEffect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","this","prototype","name","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","async","callbackInteractionType","callbackRequest","loginRequest","InteractionType","Popup","verbose","loginPopup","Redirect","loginRedirect","then","Silent","ssoSilent","createInvalidInteractionTypeError","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","acquireTokenSilent","catch","e","InteractionRequiredAuthError","createUnableToFallbackToInteractionError","getToken","response","callbackId","addEventCallback","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","removeEventCallback","context","useMemo","Fragment","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","accountIdentifier","msalAuthResult","initializeWrapperLibrary","WrapperSKU","getLogger","clone","state","updateState","useReducer","undefined","initialize","handleRedirectPromise","finally","Provider","value","HandleRedirect","Component","ComponentWithMsal","props","msal","msalContext","displayName"],"mappings":"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"}
@@ -78,7 +78,7 @@ function getAccountByIdentifiers(allAccounts, accountIdentifiers) {
78
78
 
79
79
  /* eslint-disable header/header */
80
80
  const name = "@azure/msal-react";
81
- const version = "1.3.2";
81
+ const version = "1.4.2";
82
82
 
83
83
  /*
84
84
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -102,7 +102,6 @@ const reducer = (previousState, action) => {
102
102
  type,
103
103
  payload
104
104
  } = action;
105
- let newAccounts = previousState.accounts;
106
105
  let newInProgress = previousState.inProgress;
107
106
 
108
107
  switch (type) {
@@ -131,17 +130,26 @@ const reducer = (previousState, action) => {
131
130
 
132
131
  const currentAccounts = payload.instance.getAllAccounts();
133
132
 
134
- if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {
135
- payload.logger.info("MsalProvider - updating account state");
136
- newAccounts = currentAccounts;
133
+ if (newInProgress !== previousState.inProgress && !accountArraysAreEqual(currentAccounts, previousState.accounts)) {
134
+ // Both inProgress and accounts changed
135
+ return { ...previousState,
136
+ inProgress: newInProgress,
137
+ accounts: currentAccounts
138
+ };
139
+ } else if (newInProgress !== previousState.inProgress) {
140
+ // Only only inProgress changed
141
+ return { ...previousState,
142
+ inProgress: newInProgress
143
+ };
144
+ } else if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {
145
+ // Only accounts changed
146
+ return { ...previousState,
147
+ accounts: currentAccounts
148
+ };
137
149
  } else {
138
- payload.logger.verbose("MsalProvider - no account changes");
150
+ // Nothing changed
151
+ return previousState;
139
152
  }
140
-
141
- return { ...previousState,
142
- inProgress: newInProgress,
143
- accounts: newAccounts
144
- };
145
153
  };
146
154
  /**
147
155
  * MSAL context provider component. This must be rendered above any other components that use MSAL.
@@ -179,20 +187,22 @@ function MsalProvider(_ref) {
179
187
  });
180
188
  });
181
189
  logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);
182
- instance.handleRedirectPromise().catch(() => {
183
- // Errors should be handled by listening to the LOGIN_FAILURE event
184
- return;
185
- }).finally(() => {
186
- /*
187
- * If handleRedirectPromise returns a cached promise the necessary events may not be fired
188
- * This is a fallback to prevent inProgress from getting stuck in 'startup'
189
- */
190
- updateState({
191
- payload: {
192
- instance,
193
- logger
194
- },
195
- type: MsalProviderActionType.UNBLOCK_INPROGRESS
190
+ instance.initialize().then(() => {
191
+ instance.handleRedirectPromise().catch(() => {
192
+ // Errors should be handled by listening to the LOGIN_FAILURE event
193
+ return;
194
+ }).finally(() => {
195
+ /*
196
+ * If handleRedirectPromise returns a cached promise the necessary events may not be fired
197
+ * This is a fallback to prevent inProgress from getting stuck in 'startup'
198
+ */
199
+ updateState({
200
+ payload: {
201
+ instance,
202
+ logger
203
+ },
204
+ type: MsalProviderActionType.UNBLOCK_INPROGRESS
205
+ });
196
206
  });
197
207
  });
198
208
  return () => {
@@ -1 +1 @@
1
- {"version":3,"file":"msal-react.esm.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/packageMetadata.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/UnauthenticatedTemplate.tsx","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/MsalAuthenticationTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.3.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newAccounts = previousState.accounts;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n\n const currentAccounts = payload.instance.getAllAccounts();\n if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n payload.logger.info(\"MsalProvider - updating account state\");\n newAccounts = currentAccounts;\n } else {\n payload.logger.verbose(\"MsalProvider - no account changes\");\n }\n\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: newAccounts\n };\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["defaultMsalContext","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalContext","React","MsalConsumer","Consumer","getChildrenOrFunction","children","args","accountArraysAreEqual","arrayA","arrayB","length","comparisonArray","every","elementA","elementB","shift","homeAccountId","localAccountId","username","getAccountByIdentifiers","allAccounts","accountIdentifiers","matchedAccounts","filter","accountObj","toLowerCase","name","version","MsalProviderActionType","reducer","previousState","action","type","payload","newAccounts","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","verbose","MsalProvider","useEffect","initializeWrapperLibrary","WrapperSKU","useMemo","getLogger","clone","SKU","state","updateState","useReducer","undefined","callbackId","addEventCallback","handleRedirectPromise","catch","finally","removeEventCallback","contextValue","Provider","value","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","AuthenticatedTemplate","context","accountIdentifier","Fragment","UnauthenticatedTemplate","HandleRedirect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthErrorMessage","invalidInteractionType","code","desc","unableToFallbackToInteraction","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","prototype","createInvalidInteractionTypeError","createUnableToFallbackToInteractionError","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","callbackInteractionType","callbackRequest","loginType","loginRequest","InteractionType","Popup","loginPopup","Redirect","loginRedirect","then","Silent","ssoSilent","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","getToken","acquireTokenSilent","e","InteractionRequiredAuthError","response","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","MsalAuthenticationTemplate","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","msalAuthResult","withMsal","Component","ComponentWithMsal","props","msal","msalContext","componentName","displayName"],"mappings":"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"}
1
+ {"version":3,"file":"msal-react.esm.js","sources":["../src/MsalContext.ts","../src/utils/utilities.ts","../src/packageMetadata.ts","../src/MsalProvider.tsx","../src/hooks/useMsal.ts","../src/hooks/useIsAuthenticated.ts","../src/components/AuthenticatedTemplate.tsx","../src/components/UnauthenticatedTemplate.tsx","../src/hooks/useAccount.ts","../src/error/ReactAuthError.ts","../src/hooks/useMsalAuthentication.ts","../src/components/MsalAuthenticationTemplate.tsx","../src/components/withMsal.tsx"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as React from \"react\";\nimport { IPublicClientApplication, stubbedPublicClientApplication, Logger, InteractionStatus, AccountInfo } from \"@azure/msal-browser\";\n\nexport interface IMsalContext {\n instance: IPublicClientApplication;\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n logger: Logger;\n}\n\n/*\n * Stubbed context implementation\n * Only used when there is no provider, which is an unsupported scenario\n */\nconst defaultMsalContext: IMsalContext = {\n instance: stubbedPublicClientApplication,\n inProgress: InteractionStatus.None,\n accounts: [],\n logger: new Logger({})\n};\n\nexport const MsalContext = React.createContext<IMsalContext>(\n defaultMsalContext\n);\nexport const MsalConsumer = MsalContext.Consumer;\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\n\ntype FaaCFunction = <T>(args: T) => React.ReactNode;\n\nexport function getChildrenOrFunction<T>(\n children: React.ReactNode | FaaCFunction,\n args: T\n): React.ReactNode {\n if (typeof children === \"function\") {\n return children(args);\n }\n return children;\n}\n\n/*\n * Utility types\n * Reference: https://github.com/piotrwitek/utility-types\n */\ntype SetDifference<A, B> = A extends B ? never : A;\ntype SetComplement<A, A1 extends A> = SetDifference<A, A1>;\nexport type Subtract<T extends T1, T1 extends object> = Pick<T,SetComplement<keyof T, keyof T1>>;\n\n/**\n * Helper function to determine whether 2 arrays are equal\n * Used to avoid unnecessary state updates\n * @param arrayA \n * @param arrayB \n */\nexport function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean {\n if (arrayA.length !== arrayB.length) {\n return false;\n }\n\n const comparisonArray = [...arrayB];\n\n return arrayA.every((elementA) => {\n const elementB = comparisonArray.shift();\n if (!elementA || !elementB) {\n return false;\n }\n\n return (elementA.homeAccountId === elementB.homeAccountId) && \n (elementA.localAccountId === elementB.localAccountId) &&\n (elementA.username === elementB.username);\n });\n}\n\nexport function getAccountByIdentifiers(allAccounts: AccountInfo[], accountIdentifiers: AccountIdentifiers): AccountInfo | null {\n if (allAccounts.length > 0 && (accountIdentifiers.homeAccountId || accountIdentifiers.localAccountId || accountIdentifiers.username)) {\n const matchedAccounts = allAccounts.filter(accountObj => {\n if (accountIdentifiers.username && accountIdentifiers.username.toLowerCase() !== accountObj.username.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.homeAccountId && accountIdentifiers.homeAccountId.toLowerCase() !== accountObj.homeAccountId.toLowerCase()) {\n return false;\n }\n if (accountIdentifiers.localAccountId && accountIdentifiers.localAccountId.toLowerCase() !== accountObj.localAccountId.toLowerCase()) {\n return false;\n }\n\n return true;\n });\n\n return matchedAccounts[0] || null;\n } else {\n return null;\n }\n}\n","/* eslint-disable header/header */\nexport const name = \"@azure/msal-react\";\nexport const version = \"1.4.2\";\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { useEffect, useReducer, PropsWithChildren, useMemo} from \"react\";\nimport {\n IPublicClientApplication,\n EventMessage,\n EventMessageUtils,\n InteractionStatus,\n Logger,\n WrapperSKU,\n AccountInfo\n} from \"@azure/msal-browser\";\nimport { MsalContext, IMsalContext } from \"./MsalContext\";\nimport { accountArraysAreEqual } from \"./utils/utilities\";\nimport { name as SKU, version } from \"./packageMetadata\";\n\nexport type MsalProviderProps = PropsWithChildren<{\n instance: IPublicClientApplication;\n}>;\n\ntype MsalState = {\n inProgress: InteractionStatus;\n accounts: AccountInfo[];\n};\n\nenum MsalProviderActionType {\n UNBLOCK_INPROGRESS = \"UNBLOCK_INPROGRESS\",\n EVENT = \"EVENT\"\n}\n\ntype MsalProviderReducerAction = {\n type: MsalProviderActionType,\n payload: {\n logger: Logger;\n instance: IPublicClientApplication;\n message?: EventMessage;\n };\n};\n\n/**\n * Returns the next inProgress and accounts state based on event message\n * @param previousState \n * @param action \n */\nconst reducer = (previousState: MsalState, action: MsalProviderReducerAction): MsalState => {\n const { type, payload } = action;\n let newInProgress = previousState.inProgress;\n\n switch (type) {\n case MsalProviderActionType.UNBLOCK_INPROGRESS:\n if (previousState.inProgress === InteractionStatus.Startup){\n newInProgress = InteractionStatus.None;\n payload.logger.info(\"MsalProvider - handleRedirectPromise resolved, setting inProgress to 'none'\");\n }\n break;\n case MsalProviderActionType.EVENT:\n const message = payload.message as EventMessage;\n const status = EventMessageUtils.getInteractionStatusFromEvent(message, previousState.inProgress);\n if (status) {\n payload.logger.info(`MsalProvider - ${message.eventType} results in setting inProgress from ${previousState.inProgress} to ${status}`);\n newInProgress = status;\n }\n break;\n default:\n throw new Error(`Unknown action type: ${type}`);\n }\n \n const currentAccounts = payload.instance.getAllAccounts();\n if (newInProgress !== previousState.inProgress && \n !accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Both inProgress and accounts changed\n return {\n ...previousState,\n inProgress: newInProgress,\n accounts: currentAccounts\n };\n } else if (newInProgress !== previousState.inProgress) {\n // Only only inProgress changed\n return {\n ...previousState,\n inProgress: newInProgress\n };\n } else if (!accountArraysAreEqual(currentAccounts, previousState.accounts)) {\n // Only accounts changed\n return {\n ...previousState,\n accounts: currentAccounts\n };\n } else {\n // Nothing changed\n return previousState;\n }\n};\n\n/**\n * MSAL context provider component. This must be rendered above any other components that use MSAL.\n */\nexport function MsalProvider({instance, children}: MsalProviderProps): React.ReactElement {\n useEffect(() => {\n instance.initializeWrapperLibrary(WrapperSKU.React, version);\n }, [instance]);\n // Create a logger instance for msal-react with the same options as PublicClientApplication\n const logger = useMemo(() => {\n return instance.getLogger().clone(SKU, version);\n }, [instance]);\n\n const [state, updateState] = useReducer(reducer, undefined, () => {\n // Lazy initialization of the initial state\n return {\n inProgress: InteractionStatus.Startup,\n accounts: instance.getAllAccounts()\n };\n });\n \n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n updateState({\n payload: {\n instance,\n logger,\n message\n }, \n type: MsalProviderActionType.EVENT\n });\n });\n logger.verbose(`MsalProvider - Registered event callback with id: ${callbackId}`);\n\n instance.initialize().then(() => {\n instance.handleRedirectPromise().catch(() => {\n // Errors should be handled by listening to the LOGIN_FAILURE event\n return;\n }).finally(() => {\n /*\n * If handleRedirectPromise returns a cached promise the necessary events may not be fired\n * This is a fallback to prevent inProgress from getting stuck in 'startup'\n */\n updateState({\n payload: {\n instance,\n logger\n },\n type: MsalProviderActionType.UNBLOCK_INPROGRESS \n });\n });\n });\n\n return () => {\n // Remove callback when component unmounts or accounts change\n if (callbackId) {\n logger.verbose(`MsalProvider - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n const contextValue: IMsalContext = {\n instance,\n inProgress: state.inProgress,\n accounts: state.accounts,\n logger\n };\n\n return (\n <MsalContext.Provider value={contextValue}>\n {children}\n </MsalContext.Provider>\n );\n}\n\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useContext } from \"react\";\nimport { IMsalContext, MsalContext } from \"../MsalContext\";\n\n/**\n * Returns Msal Context values\n */\nexport const useMsal = (): IMsalContext => useContext(MsalContext);\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { AccountInfo } from \"@azure/msal-browser\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction isAuthenticated(allAccounts: AccountInfo[], matchAccount?: AccountIdentifiers): boolean {\n if(matchAccount && (matchAccount.username || matchAccount.homeAccountId || matchAccount.localAccountId)) {\n return !!getAccountByIdentifiers(allAccounts, matchAccount);\n } \n\n return allAccounts.length > 0;\n}\n\n/**\n * Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in\n * @param matchAccount \n */\nexport function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean {\n const { accounts: allAccounts } = useMsal();\n\n const [hasAuthenticated, setHasAuthenticated] = useState<boolean>(() => isAuthenticated(allAccounts, matchAccount));\n\n useEffect(() => {\n setHasAuthenticated(isAuthenticated(allAccounts, matchAccount));\n }, [allAccounts, matchAccount]);\n\n return hasAuthenticated;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type AuthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is authenticated\n * @param props \n */\nexport function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children }: AuthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (isAuthenticated && context.inProgress !== InteractionStatus.Startup) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { InteractionStatus } from \"@azure/msal-browser\";\n\nexport type UnauthenticatedTemplateProps = PropsWithChildren<AccountIdentifiers>;\n\n/**\n * Renders child components if user is unauthenticated\n * @param props \n */\nexport function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children }: UnauthenticatedTemplateProps): React.ReactElement|null {\n const context = useMsal();\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (!isAuthenticated && context.inProgress !== InteractionStatus.Startup && context.inProgress !== InteractionStatus.HandleRedirect) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, context)}\n </React.Fragment>\n );\n }\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useState, useEffect } from \"react\";\nimport { AccountInfo, IPublicClientApplication, AccountEntity } from \"@azure/msal-browser\";\nimport { useMsal } from \"./useMsal\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getAccountByIdentifiers } from \"../utils/utilities\";\n\nfunction getAccount(instance: IPublicClientApplication, accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n if (!accountIdentifiers || (!accountIdentifiers.homeAccountId && !accountIdentifiers.localAccountId && !accountIdentifiers.username)) {\n // If no account identifiers are provided, return active account\n return instance.getActiveAccount();\n }\n\n return getAccountByIdentifiers(instance.getAllAccounts(), accountIdentifiers);\n}\n\n/**\n * Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in\n * @param accountIdentifiers \n */\nexport function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null {\n const { instance, inProgress, logger } = useMsal();\n\n const [account, setAccount] = useState<AccountInfo|null>(() => getAccount(instance, accountIdentifiers));\n\n useEffect(() => {\n setAccount((currentAccount: AccountInfo | null) => {\n const nextAccount = getAccount(instance, accountIdentifiers);\n if (!AccountEntity.accountInfoIsEqual(currentAccount, nextAccount, true)) {\n logger.info(\"useAccount - Updating account\");\n return nextAccount;\n }\n\n return currentAccount;\n });\n }, [inProgress, accountIdentifiers, instance, logger]);\n\n return account;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { AuthError } from \"@azure/msal-browser\";\n\nexport const ReactAuthErrorMessage = {\n invalidInteractionType: {\n code: \"invalid_interaction_type\",\n desc: \"The provided interaction type is invalid.\"\n },\n unableToFallbackToInteraction: {\n code: \"unable_to_fallback_to_interaction\",\n desc: \"Interaction is required but another interaction is already in progress. Please try again when the current interaction is complete.\"\n }\n};\n\nexport class ReactAuthError extends AuthError {\n constructor(errorCode: string, errorMessage?: string) {\n super(errorCode, errorMessage);\n\n Object.setPrototypeOf(this, ReactAuthError.prototype);\n this.name = \"ReactAuthError\";\n }\n\n static createInvalidInteractionTypeError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.invalidInteractionType.code, ReactAuthErrorMessage.invalidInteractionType.desc);\n }\n\n static createUnableToFallbackToInteractionError(): ReactAuthError {\n return new ReactAuthError(ReactAuthErrorMessage.unableToFallbackToInteraction.code, ReactAuthErrorMessage.unableToFallbackToInteraction.desc);\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { useCallback, useEffect, useState, useRef } from \"react\";\nimport { PopupRequest, RedirectRequest, SsoSilentRequest, InteractionType, AuthenticationResult, AuthError, EventMessage, EventType, InteractionStatus, SilentRequest, InteractionRequiredAuthError, OIDC_DEFAULT_SCOPES } from \"@azure/msal-browser\";\nimport { useIsAuthenticated } from \"./useIsAuthenticated\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { useMsal } from \"./useMsal\";\nimport { useAccount } from \"./useAccount\";\nimport { ReactAuthError } from \"../error/ReactAuthError\";\n\nexport type MsalAuthenticationResult = {\n login: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: PopupRequest | RedirectRequest | SilentRequest) => Promise<AuthenticationResult | null>; \n acquireToken: (callbackInteractionType?: InteractionType | undefined, callbackRequest?: SilentRequest | undefined) => Promise<AuthenticationResult | null>;\n result: AuthenticationResult|null;\n error: AuthError|null;\n};\n\n/**\n * If a user is not currently signed in this hook invokes a login. Failed logins can be retried using the login callback returned.\n * If a user is currently signed in this hook attempts to acquire a token. Subsequent token requests can use the acquireToken callback returned.\n * Optionally provide a request object to be used in the login/acquireToken call.\n * Optionally provide a specific user that should be logged in.\n * @param interactionType \n * @param authenticationRequest \n * @param accountIdentifiers \n */\nexport function useMsalAuthentication(\n interactionType: InteractionType, \n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest, \n accountIdentifiers?: AccountIdentifiers\n): MsalAuthenticationResult {\n const { instance, inProgress, logger } = useMsal();\n const isAuthenticated = useIsAuthenticated(accountIdentifiers);\n const account = useAccount(accountIdentifiers);\n const [[result, error], setResponse] = useState<[AuthenticationResult|null, AuthError|null]>([null, null]);\n\n // Boolean used to check if interaction is in progress in acquireTokenSilent fallback. Use Ref instead of state to prevent acquireToken function from being regenerated on each change to interactionInProgress value\n const interactionInProgress = useRef(inProgress !== InteractionStatus.None);\n useEffect(() => {\n interactionInProgress.current = inProgress !== InteractionStatus.None;\n }, [inProgress]);\n\n // Flag used to control when the hook calls login/acquireToken\n const shouldAcquireToken = useRef(true);\n useEffect(() => {\n if (!!error) {\n // Errors should be handled by consuming component\n shouldAcquireToken.current = false;\n return;\n }\n\n if (!!result) {\n // Token has already been acquired, consuming component/application is responsible for renewing\n shouldAcquireToken.current = false;\n return;\n }\n }, [error, result]);\n\n const login = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: PopupRequest|RedirectRequest|SsoSilentRequest): Promise<AuthenticationResult|null> => {\n const loginType = callbackInteractionType || interactionType;\n const loginRequest = callbackRequest || authenticationRequest;\n switch (loginType) {\n case InteractionType.Popup:\n logger.verbose(\"useMsalAuthentication - Calling loginPopup\");\n return instance.loginPopup(loginRequest as PopupRequest);\n case InteractionType.Redirect:\n // This promise is not expected to resolve due to full frame redirect\n logger.verbose(\"useMsalAuthentication - Calling loginRedirect\");\n return instance.loginRedirect(loginRequest as RedirectRequest).then(null);\n case InteractionType.Silent:\n logger.verbose(\"useMsalAuthentication - Calling ssoSilent\");\n return instance.ssoSilent(loginRequest as SsoSilentRequest);\n default:\n throw ReactAuthError.createInvalidInteractionTypeError();\n }\n }, [instance, interactionType, authenticationRequest, logger]);\n\n const acquireToken = useCallback(async (callbackInteractionType?: InteractionType, callbackRequest?: SilentRequest): Promise<AuthenticationResult|null> => {\n const fallbackInteractionType = callbackInteractionType || interactionType;\n\n let tokenRequest: SilentRequest;\n\n if (callbackRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the callback\");\n tokenRequest = {\n ...callbackRequest\n };\n } else if (authenticationRequest) {\n logger.trace(\"useMsalAuthentication - acquireToken - Using request provided in the hook\");\n tokenRequest = {\n ...authenticationRequest,\n scopes: authenticationRequest.scopes || OIDC_DEFAULT_SCOPES\n };\n } else {\n logger.trace(\"useMsalAuthentication - acquireToken - No request object provided, using default request.\");\n tokenRequest = {\n scopes: OIDC_DEFAULT_SCOPES\n };\n }\n \n if (!tokenRequest.account && account) {\n logger.trace(\"useMsalAuthentication - acquireToken - Attaching account to request\");\n tokenRequest.account = account;\n }\n\n const getToken = async (): Promise<AuthenticationResult|null> => {\n logger.verbose(\"useMsalAuthentication - Calling acquireTokenSilent\");\n return instance.acquireTokenSilent(tokenRequest).catch(async (e: AuthError) => {\n if (e instanceof InteractionRequiredAuthError) {\n if (!interactionInProgress.current) {\n logger.error(\"useMsalAuthentication - Interaction required, falling back to interaction\");\n return login(fallbackInteractionType, tokenRequest);\n } else {\n logger.error(\"useMsalAuthentication - Interaction required but is already in progress. Please try again, if needed, after interaction completes.\");\n throw ReactAuthError.createUnableToFallbackToInteractionError();\n }\n }\n\n throw e;\n });\n };\n\n return getToken().then((response: AuthenticationResult|null) => {\n setResponse([response, null]);\n return response;\n }).catch((e: AuthError) => {\n setResponse([null, e]);\n throw e;\n });\n }, [instance, interactionType, authenticationRequest, logger, account, login]);\n\n useEffect(() => {\n const callbackId = instance.addEventCallback((message: EventMessage) => {\n switch(message.eventType) {\n case EventType.LOGIN_SUCCESS:\n case EventType.SSO_SILENT_SUCCESS:\n if (message.payload) {\n setResponse([message.payload as AuthenticationResult, null]);\n }\n break;\n case EventType.LOGIN_FAILURE:\n case EventType.SSO_SILENT_FAILURE:\n if (message.error) {\n setResponse([null, message.error as AuthError]);\n }\n break;\n }\n });\n logger.verbose(`useMsalAuthentication - Registered event callback with id: ${callbackId}`);\n\n return () => {\n if (callbackId) {\n logger.verbose(`useMsalAuthentication - Removing event callback ${callbackId}`);\n instance.removeEventCallback(callbackId);\n }\n };\n }, [instance, logger]);\n\n useEffect(() => {\n if (shouldAcquireToken.current && inProgress === InteractionStatus.None) {\n shouldAcquireToken.current = false;\n if (!isAuthenticated) {\n logger.info(\"useMsalAuthentication - No user is authenticated, attempting to login\");\n login().catch(() => {\n // Errors are saved in state above\n return;\n });\n } else if (account) {\n logger.info(\"useMsalAuthentication - User is authenticated, attempting to acquire token\");\n acquireToken().catch(() => {\n // Errors are saved in state above\n return;\n });\n }\n }\n }, [isAuthenticated, account, inProgress, login, acquireToken, logger]);\n\n return { \n login, \n acquireToken, \n result, \n error\n };\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React, { PropsWithChildren, useMemo } from \"react\";\nimport { AccountIdentifiers } from \"../types/AccountIdentifiers\";\nimport { getChildrenOrFunction } from \"../utils/utilities\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { MsalAuthenticationResult, useMsalAuthentication } from \"../hooks/useMsalAuthentication\";\nimport { useIsAuthenticated } from \"../hooks/useIsAuthenticated\";\nimport { InteractionType, PopupRequest, RedirectRequest, SsoSilentRequest, InteractionStatus } from \"@azure/msal-browser\";\nimport { IMsalContext } from \"../MsalContext\";\n\nexport type MsalAuthenticationProps = PropsWithChildren<AccountIdentifiers & {\n interactionType: InteractionType;\n authenticationRequest?: PopupRequest|RedirectRequest|SsoSilentRequest;\n loadingComponent?: React.ElementType<IMsalContext>;\n errorComponent?: React.ElementType<MsalAuthenticationResult>;\n}>;\n\n/**\n * Attempts to authenticate user if not already authenticated, then renders child components\n * @param props\n */\nexport function MsalAuthenticationTemplate({ \n interactionType, \n username, \n homeAccountId, \n localAccountId,\n authenticationRequest, \n loadingComponent: LoadingComponent,\n errorComponent: ErrorComponent,\n children \n}: MsalAuthenticationProps): React.ReactElement|null {\n const accountIdentifier: AccountIdentifiers = useMemo(() => {\n return {\n username,\n homeAccountId,\n localAccountId\n };\n }, [username, homeAccountId, localAccountId]);\n const context = useMsal();\n const msalAuthResult = useMsalAuthentication(interactionType, authenticationRequest, accountIdentifier);\n const isAuthenticated = useIsAuthenticated(accountIdentifier);\n\n if (msalAuthResult.error && context.inProgress === InteractionStatus.None) {\n if (!!ErrorComponent) {\n return <ErrorComponent {...msalAuthResult} />;\n }\n\n throw msalAuthResult.error;\n }\n \n if (isAuthenticated) {\n return (\n <React.Fragment>\n {getChildrenOrFunction(children, msalAuthResult)}\n </React.Fragment>\n );\n } \n \n if (!!LoadingComponent && context.inProgress !== InteractionStatus.None) {\n return <LoadingComponent {...context} />;\n }\n\n return null;\n}\n","/*\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport React from \"react\";\nimport { IMsalContext } from \"../MsalContext\";\nimport { useMsal } from \"../hooks/useMsal\";\nimport { Subtract } from \"../utils/utilities\";\n\nexport type WithMsalProps = {\n msalContext: IMsalContext;\n};\n\n/**\n * Higher order component wraps provided component with msal by injecting msal context values into the component's props \n * @param Component \n */\nexport const withMsal = <P extends WithMsalProps>(Component: React.ComponentType<P>): React.FunctionComponent<Subtract<P,WithMsalProps>> => {\n const ComponentWithMsal: React.FunctionComponent<Subtract<P,WithMsalProps>> = props => {\n const msal = useMsal();\n return <Component {...(props as P)} msalContext={msal} />;\n };\n\n const componentName =\n Component.displayName || Component.name || \"Component\";\n ComponentWithMsal.displayName = `withMsal(${componentName})`;\n\n return ComponentWithMsal;\n};\n"],"names":["defaultMsalContext","instance","stubbedPublicClientApplication","inProgress","InteractionStatus","None","accounts","logger","Logger","MsalContext","React","MsalConsumer","Consumer","getChildrenOrFunction","children","args","accountArraysAreEqual","arrayA","arrayB","length","comparisonArray","every","elementA","elementB","shift","homeAccountId","localAccountId","username","getAccountByIdentifiers","allAccounts","accountIdentifiers","matchedAccounts","filter","accountObj","toLowerCase","name","version","MsalProviderActionType","reducer","previousState","action","type","payload","newInProgress","UNBLOCK_INPROGRESS","Startup","info","EVENT","message","status","EventMessageUtils","getInteractionStatusFromEvent","eventType","Error","currentAccounts","getAllAccounts","MsalProvider","useEffect","initializeWrapperLibrary","WrapperSKU","useMemo","getLogger","clone","SKU","state","updateState","useReducer","undefined","callbackId","addEventCallback","verbose","initialize","then","handleRedirectPromise","catch","finally","removeEventCallback","contextValue","Provider","value","useMsal","useContext","isAuthenticated","matchAccount","useIsAuthenticated","hasAuthenticated","setHasAuthenticated","useState","AuthenticatedTemplate","context","accountIdentifier","Fragment","UnauthenticatedTemplate","HandleRedirect","getAccount","getActiveAccount","useAccount","account","setAccount","currentAccount","nextAccount","AccountEntity","accountInfoIsEqual","ReactAuthErrorMessage","invalidInteractionType","code","desc","unableToFallbackToInteraction","ReactAuthError","AuthError","constructor","errorCode","errorMessage","Object","setPrototypeOf","prototype","createInvalidInteractionTypeError","createUnableToFallbackToInteractionError","useMsalAuthentication","interactionType","authenticationRequest","result","error","setResponse","interactionInProgress","useRef","current","shouldAcquireToken","login","useCallback","callbackInteractionType","callbackRequest","loginType","loginRequest","InteractionType","Popup","loginPopup","Redirect","loginRedirect","Silent","ssoSilent","acquireToken","fallbackInteractionType","tokenRequest","trace","scopes","OIDC_DEFAULT_SCOPES","getToken","acquireTokenSilent","e","InteractionRequiredAuthError","response","EventType","LOGIN_SUCCESS","SSO_SILENT_SUCCESS","LOGIN_FAILURE","SSO_SILENT_FAILURE","MsalAuthenticationTemplate","loadingComponent","LoadingComponent","errorComponent","ErrorComponent","msalAuthResult","withMsal","Component","ComponentWithMsal","props","msal","msalContext","componentName","displayName"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
1
  export declare const name = "@azure/msal-react";
2
- export declare const version = "1.3.2";
2
+ export declare const version = "1.4.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/msal-react",
3
- "version": "1.3.2",
3
+ "version": "1.4.2",
4
4
  "author": {
5
5
  "name": "Microsoft",
6
6
  "email": "nugetaad@microsoft.com",
@@ -41,12 +41,12 @@
41
41
  "prepack": "npm run build:all"
42
42
  },
43
43
  "peerDependencies": {
44
- "@azure/msal-browser": "^2.23.0",
44
+ "@azure/msal-browser": "^2.26.0",
45
45
  "react": "^16.8.0 || ^17 || ^18"
46
46
  },
47
47
  "module": "dist/msal-react.esm.js",
48
48
  "devDependencies": {
49
- "@azure/msal-browser": "^2.23.0",
49
+ "@azure/msal-browser": "^2.26.0",
50
50
  "@testing-library/jest-dom": "^5.11.5",
51
51
  "@testing-library/react": "^11.2.3",
52
52
  "@types/jest": "^27.0.0",