|
Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT SERVER-PC 10.0 build 26200 (Windows 11) AMD64 User : ServerPC ( 0) PHP Version : 8.2.12 Disable Function : NONE Directory : C:/Windows/SystemApps/MicrosoftWindows.Client.OOBE_cw5n1h2txyewy/js/ |
Upload File : |
//
// Copyright (C) Microsoft. All rights reserved.
//
/// <disable>JS2085.EnableStrictMode</disable>
"use strict";
var CloudExperienceHost;
(function (CloudExperienceHost) {
//
// Value for CloudExperienceHost.done event
//
class AppResult {
static doesResultAllowExit(result) {
// Allow AppResult.success to exit CXH, enabling re-use of online pages as the last node of the CXH flow - such as retail demo setup with a manual MSA
return (result == AppResult.exitCxhFailure) || (result == AppResult.exitCxhSuccess) || (result == AppResult.success) || (result == AppResult.cancel);
}
static getExternalAppResult(result) {
switch (result) {
case AppResult.exitCxhFailure:
return AppResult.fail;
case AppResult.exitCxhSuccess:
return AppResult.success;
default:
return result;
}
}
}
AppResult.success = "success";
AppResult.fail = "fail";
AppResult.cancel = "cancel";
AppResult.abort = "abort";
AppResult.offline = "offline";
AppResult.preloadSkip = "preloadSkip";
AppResult.action1 = "action1";
AppResult.action2 = "action2";
AppResult.action3 = "action3";
// Special results enabling exit of the application, only allowed if blockEarlyExit is set in the navmesh and the node has 'canExitCxh' set
AppResult.exitCxhFailure = "exitCxhFailure";
AppResult.exitCxhSuccess = "exitCxhSuccess";
// The error event type is to be used only for inclusive flows
AppResult.error = "error";
CloudExperienceHost.AppResult = AppResult;
//
// Internal AppResults not intended to be manually fired by webapps using CloudExperienceHost.done
// If a webapp fires one of these events, the behavior will be the same as if an unrecognized AppResult was fired (we'll navigate to failID)
//
class InternalAppResult {
}
InternalAppResult.back = "back";
InternalAppResult.navigateWithBackstack = "navigateWithBackstack";
CloudExperienceHost.InternalAppResult = InternalAppResult;
//
// Value for CloudExperienceHost.loadIdentityProvider event
//
class SignInIdentityProviders {
}
SignInIdentityProviders.Local = "CXH.IDPS.Local";
SignInIdentityProviders.MSA = "CXH.IDPS.MSA";
SignInIdentityProviders.AAD = "CXH.IDPS.AAD";
CloudExperienceHost.SignInIdentityProviders = SignInIdentityProviders;
class Events {
}
Events.navigate = "CloudExperienceHost.navigate";
Events.visible = "CloudExperienceHost.visible";
Events.goBack = "CloudExperienceHost.goBack";
Events.retryApp = "CloudExperienceHost.retryApp";
Events.skipApp = "CloudExperienceHost.skipApp";
Events.done = "CloudExperienceHost.done";
Events.showEaseOfAccessControl = "CloudExperienceHost.showEaseOfAccessControl";
Events.languageChange = "CloudExperienceHost.languageChange";
Events.resetFooterFocus = "CloudExperienceHost.resetFooterFocus";
Events.inputSwitchIndicatorChange = "CloudExperienceHost.inputSwitchIndicatorChange";
Events.loadIdentityProvider = "CloudExperienceHost.loadIdentityProvider";
Events.postTicketToReturnUrl = "CloudExperienceHost.postTicketToReturnUrl";
Events.postDeviceTicketToUrl = "CloudExperienceHost.postDeviceTicketToUrl";
Events.postSharedAccountRegistrationTicketsToUrl = "CloudExperienceHost.postSharedAccountRegistrationsTicketsToUrl";
Events.registerNGCForUser = "CloudExperienceHost.registerNgcForUser";
Events.resetNGCForUser = "CloudExperienceHost.resetNgcForUser";
Events.backButtonClicked = "CloudExperienceHost.backButtonClicked";
Events.showProgressWhenPageIsBusy = "CloudExperienceHost.showProgressWhenPageIsBusy";
Events.unhandledException = "CloudExperienceHost.unhandledException";
Events.reportTargetedContentInteraction = "CloudExperienceHost.reportTargetedContentInteraction";
CloudExperienceHost.Events = Events;
})(CloudExperienceHost || (CloudExperienceHost = {}));
// Expose events and appresult to be loaded by requirejs
if ((typeof define === "function") && define.amd) {
define(function () {
return { Events: CloudExperienceHost.Events, AppResult: CloudExperienceHost.AppResult };
});
}
//# sourceMappingURL=events.js.map