@azure/msal-browser
Version:
Microsoft Authentication Library for js
62 lines (59 loc) • 2.51 kB
JavaScript
/*! @azure/msal-browser v5.6.3 2026-04-01 */
;
import { EventType } from './EventType.mjs';
import { InteractionType, InteractionStatus } from '../utils/BrowserConstants.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
class EventMessageUtils {
/**
* Gets interaction status from event message
* @param message
* @param currentStatus
*/
static getInteractionStatusFromEvent(message, currentStatus) {
switch (message.eventType) {
case EventType.ACQUIRE_TOKEN_START:
if (message.interactionType === InteractionType.Redirect ||
message.interactionType === InteractionType.Popup) {
return InteractionStatus.AcquireToken;
}
break;
case EventType.HANDLE_REDIRECT_START:
return InteractionStatus.HandleRedirect;
case EventType.LOGOUT_START:
return InteractionStatus.Logout;
case EventType.LOGOUT_END:
if (currentStatus &&
currentStatus !== InteractionStatus.Logout) {
// Prevent this event from clearing any status other than logout
break;
}
return InteractionStatus.None;
case EventType.HANDLE_REDIRECT_END:
if (currentStatus &&
currentStatus !== InteractionStatus.HandleRedirect) {
// Prevent this event from clearing any status other than handleRedirect
break;
}
return InteractionStatus.None;
case EventType.ACQUIRE_TOKEN_SUCCESS:
case EventType.ACQUIRE_TOKEN_FAILURE:
case EventType.RESTORE_FROM_BFCACHE:
if (message.interactionType === InteractionType.Redirect ||
message.interactionType === InteractionType.Popup) {
if (currentStatus &&
currentStatus !== InteractionStatus.AcquireToken) {
// Prevent this event from clearing any status other than acquireToken
break;
}
return InteractionStatus.None;
}
break;
}
return null;
}
}
export { EventMessageUtils };
//# sourceMappingURL=EventMessage.mjs.map