n8n-editor-ui
Version:
Workflow Editor UI for n8n
165 lines (164 loc) • 8.75 kB
JavaScript
;
(function () {
System.register(["./vue.runtime.esm-bundler-legacy--Sn1h8On.js", "./_MapCache-legacy-DlYNX_X1.js", "./src-legacy-uZTNWMC0.js", "./en-legacy-DJK4SpPN.js", "./preload-helper-legacy-CXRjoQ0T.js", "./_plugin-vue_export-helper-legacy-DZMI5HPp.js", "./truncate-legacy-BGje52Or.js", "./icon-legacy-CqVXaCIS.js", "./empty-legacy-CA9D6itE.js", "./useTelemetry-legacy-B3pzzkAE.js", "./useToast-legacy-C4Vu5mt9.js", "./sanitize-html-legacy-DLqXJu-U.js", "./CalendarDate-legacy-BUvNgcoo.js", "./path-browserify-legacy-C6ml8BkF.js", "./constants-legacy-TKxWCqvM.js", "./merge-legacy-8xjIc_ts.js", "./_baseOrderBy-legacy-CB2Dh5d_.js", "./dateformat-legacy-C4HUJTCr.js", "./useDebounce-legacy-CqZ-fJEm.js", "./useExternalHooks-legacy-8pg6K3ln.js", "./useStyles-legacy-E8NPEyeD.js", "./sso.store-legacy-Bv88fDKQ.js", "./AuthView-legacy-rTobIDGz.js"], function (_export, _context) {
"use strict";
var createCommentVNode, ref, defineComponent, createBlock, onMounted, openBlock, useI18n, useRouter, useUsersStore, useToast, VIEWS, MFA_AUTHENTICATION_CODE_INPUT_MAX_LENGTH, AuthView_default, ChangePasswordView_vue_vue_type_script_setup_true_lang_default, ChangePasswordView_default;
return {
setters: [function (_vueRuntimeEsmBundlerLegacy003Js) {
createCommentVNode = _vueRuntimeEsmBundlerLegacy003Js.E;
ref = _vueRuntimeEsmBundlerLegacy003Js.It;
defineComponent = _vueRuntimeEsmBundlerLegacy003Js.P;
createBlock = _vueRuntimeEsmBundlerLegacy003Js.T;
onMounted = _vueRuntimeEsmBundlerLegacy003Js.Z;
openBlock = _vueRuntimeEsmBundlerLegacy003Js.et;
}, function (_MapCacheLegacy005Js) {
useI18n = _MapCacheLegacy005Js.gt;
}, function (_srcLegacy007Js) {}, function (_enLegacy00bJs) {}, function (_preloadHelperLegacy00dJs) {}, function (_pluginVue_exportHelperLegacy00fJs) {}, function (_truncateLegacy00hJs) {
useRouter = _truncateLegacy00hJs.y;
}, function (_iconLegacy00nJs) {}, function (_emptyLegacy00vJs) {}, function (_useTelemetryLegacy00HJs) {
useUsersStore = _useTelemetryLegacy00HJs.nr;
}, function (_useToastLegacy00JJs) {
useToast = _useToastLegacy00JJs.t;
}, function (_sanitizeHtmlLegacy00LJs) {}, function (_CalendarDateLegacy00NJs) {}, function (_pathBrowserifyLegacy00RJs) {}, function (_constantsLegacy00TJs) {
VIEWS = _constantsLegacy00TJs.Io;
MFA_AUTHENTICATION_CODE_INPUT_MAX_LENGTH = _constantsLegacy00TJs.Tc;
}, function (_mergeLegacy00VJs) {}, function (_baseOrderByLegacy00ZJs) {}, function (_dateformatLegacy00$Js) {}, function (_useDebounceLegacy011Js) {}, function (_useExternalHooksLegacy013Js) {}, function (_useStylesLegacy015Js) {}, function (_ssoStoreLegacy039Js) {}, function (_AuthViewLegacy05RJs) {
AuthView_default = _AuthViewLegacy05RJs.t;
}],
execute: function () {
//#region src/features/core/auth/views/ChangePasswordView.vue?vue&type=script&setup=true&lang.ts
ChangePasswordView_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */defineComponent({
__name: "ChangePasswordView",
setup(__props) {
const usersStore = useUsersStore();
const locale = useI18n();
const toast = useToast();
const router = useRouter();
const password = ref("");
const loading = ref(false);
const config = ref(null);
const passwordsMatch = value => {
if (typeof value !== "string") return false;
if (value !== password.value) return {
messageKey: "auth.changePassword.passwordsMustMatchError"
};
return false;
};
const getResetToken = () => {
return !router.currentRoute.value.query.token || typeof router.currentRoute.value.query.token !== "string" ? null : router.currentRoute.value.query.token;
};
const getMfaEnabled = () => {
if (!router.currentRoute.value.query.mfaEnabled) return null;
return router.currentRoute.value.query.mfaEnabled === "true" ? true : false;
};
const onSubmit = async values => {
try {
loading.value = true;
const token = getResetToken();
if (token) {
const changePasswordParameters = {
token,
password: password.value,
...(values.mfaCode && {
mfaCode: values.mfaCode
})
};
await usersStore.changePassword(changePasswordParameters);
toast.showMessage({
type: "success",
title: locale.baseText("auth.changePassword.passwordUpdated"),
message: locale.baseText("auth.changePassword.passwordUpdatedMessage")
});
await router.push({
name: VIEWS.SIGNIN
});
} else toast.showError(new Error(locale.baseText("auth.validation.missingParameters")), locale.baseText("auth.changePassword.error"));
} catch (error) {
toast.showError(error, locale.baseText("auth.changePassword.error"));
}
loading.value = false;
};
const onInput = e => {
if (e.name === "password" && typeof e.value === "string") password.value = e.value;
};
onMounted(async () => {
const form = {
title: locale.baseText("auth.changePassword"),
buttonText: locale.baseText("auth.changePassword"),
redirectText: locale.baseText("auth.signin"),
redirectLink: "/signin",
inputs: [{
name: "password",
properties: {
label: locale.baseText("auth.newPassword"),
type: "password",
required: true,
validationRules: [{
name: "DEFAULT_PASSWORD_RULES"
}],
infoText: locale.baseText("auth.defaultPasswordRequirements"),
autocomplete: "new-password",
capitalize: true
}
}, {
name: "password2",
properties: {
label: locale.baseText("auth.changePassword.reenterNewPassword"),
type: "password",
required: true,
validators: {
TWO_PASSWORDS_MATCH: {
validate: passwordsMatch
}
},
validationRules: [{
name: "TWO_PASSWORDS_MATCH"
}],
autocomplete: "new-password",
capitalize: true
}
}]
};
const token = getResetToken();
if (getMfaEnabled()) form.inputs.push({
name: "mfaCode",
initialValue: "",
properties: {
required: true,
label: locale.baseText("mfa.code.input.label"),
placeholder: locale.baseText("mfa.code.input.placeholder"),
maxlength: 6,
capitalize: true,
validateOnBlur: true
}
});
config.value = form;
try {
if (!token) throw new Error(locale.baseText("auth.changePassword.missingTokenError"));
await usersStore.validatePasswordToken({
token
});
} catch (e) {
toast.showError(e, locale.baseText("auth.changePassword.tokenValidationError"));
router.replace({
name: VIEWS.SIGNIN
});
}
});
return (_ctx, _cache) => {
return config.value ? (openBlock(), createBlock(AuthView_default, {
key: 0,
form: config.value,
"form-loading": loading.value,
onSubmit,
onUpdate: onInput
}, null, 8, ["form", "form-loading"])) : createCommentVNode("", true);
};
}
}); //#endregion
//#region src/features/core/auth/views/ChangePasswordView.vue
_export("default", ChangePasswordView_default = ChangePasswordView_vue_vue_type_script_setup_true_lang_default); //#endregion
}
};
});
})();