72 lines
2.4 KiB
JavaScript
Vendored
72 lines
2.4 KiB
JavaScript
Vendored
const App = {
|
|
setup() {
|
|
const state = Vue.reactive({
|
|
isSubmitting: false,
|
|
});
|
|
|
|
const emailConfirmation = async (email, code) => {
|
|
try {
|
|
const response = await AxiosManager.get(`/Security/ConfirmEmail?email=${email}&code=${code}`, {});
|
|
return response;
|
|
} catch (error) {
|
|
console.error('Error during emailConfirmation:', error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
|
|
Vue.onMounted(async () => {
|
|
try {
|
|
state.isSubmitting = true;
|
|
await new Promise(resolve => setTimeout(resolve, 300));
|
|
|
|
const params = new URLSearchParams(window.location.search);
|
|
const email = params.get('email');
|
|
const code = params.get('code');
|
|
|
|
if (email && code) {
|
|
const response = await emailConfirmation(email, code);
|
|
if (response.data.code === 200) {
|
|
Swal.fire({
|
|
icon: 'success',
|
|
title: 'Email Confirmation Successful',
|
|
text: 'You are being redirected...',
|
|
timer: 2000,
|
|
showConfirmButton: false
|
|
});
|
|
setTimeout(() => {
|
|
window.location.href = '/Accounts/Login';
|
|
}, 2000);
|
|
} else {
|
|
Swal.fire({
|
|
icon: 'error',
|
|
title: 'Email Confirmation Failed',
|
|
text: response.data.message ?? 'Please check your data.',
|
|
confirmButtonText: 'Try Again'
|
|
});
|
|
}
|
|
} else {
|
|
Swal.fire({
|
|
icon: 'error',
|
|
title: 'Email Confirmation Failed',
|
|
text: 'Email or code is missing in the URL query string.',
|
|
confirmButtonText: 'Try Again'
|
|
});
|
|
}
|
|
|
|
} catch (e) {
|
|
console.error('page init error:', e);
|
|
} finally {
|
|
state.isSubmitting = false;
|
|
}
|
|
});
|
|
|
|
return {
|
|
state
|
|
};
|
|
}
|
|
};
|
|
|
|
Vue.createApp(App).mount('#app');
|
|
|