2024-10-17 02:28:51 +00:00
|
|
|
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();
|
|
|
|
}
|
2022-01-28 21:00:11 +00:00
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
export function initUserAuthOauth2() {
|
2024-06-10 20:49:33 +00:00
|
|
|
const outer = document.querySelector('#oauth2-login-navigator');
|
2023-05-18 11:50:11 +00:00
|
|
|
if (!outer) return;
|
2024-06-10 20:49:33 +00:00
|
|
|
const inner = document.querySelector('#oauth2-login-navigator-inner');
|
2023-05-18 11:50:11 +00:00
|
|
|
|
2023-07-18 22:14:30 +00:00
|
|
|
checkAppUrl();
|
|
|
|
|
2023-05-18 11:50:11 +00:00
|
|
|
for (const link of outer.querySelectorAll('.oauth-login-link')) {
|
|
|
|
link.addEventListener('click', () => {
|
2024-03-05 05:29:32 +00:00
|
|
|
inner.classList.add('tw-invisible');
|
2023-05-18 11:50:11 +00: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');
|
2024-03-05 05:29:32 +00:00
|
|
|
inner.classList.remove('tw-invisible');
|
2023-05-18 11:50:11 +00:00
|
|
|
}, 5000);
|
|
|
|
});
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|