Files
Atay-Makhzan/web_src/js/features/user-auth.ts
T

28 lines
951 B
TypeScript
Raw Normal View History

import {checkAppUrl, checkAppUrlScheme} from './common-page.ts';
export function initUserCheckAppUrl() {
if (!document.querySelector('.page-content.user.signin, .page-content.user.signup, .page-content.user.link-account')) return;
checkAppUrlScheme();
}
2021-10-17 01:28:04 +08:00
export function initUserAuthOauth2() {
const outer = document.querySelector('#oauth2-login-navigator');
2023-05-18 13:50:11 +02:00
if (!outer) return;
2025-12-03 03:13:16 +01:00
const inner = document.querySelector('#oauth2-login-navigator-inner')!;
2023-05-18 13:50:11 +02:00
checkAppUrl();
2023-05-18 13:50:11 +02:00
for (const link of outer.querySelectorAll('.oauth-login-link')) {
link.addEventListener('click', () => {
inner.classList.add('tw-invisible');
2023-05-18 13:50:11 +02:00
outer.classList.add('is-loading');
setTimeout(() => {
// recover previous content to let user try again
// usually redirection will be performed before this action
outer.classList.remove('is-loading');
inner.classList.remove('tw-invisible');
2023-05-18 13:50:11 +02:00
}, 5000);
});
}
2021-10-17 01:28:04 +08:00
}