Split index.js
to separate files (#17315)
* split `index.js` to separate files * tune clipboard * fix promise * fix document * remove intermediate empty file * fix async event listener * use `export function` instead of `export {}`, add more comments Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
3728f1daa0
commit
1a7473ff45
42 changed files with 3686 additions and 3501 deletions
46
web_src/js/features/user-auth.js
Normal file
46
web_src/js/features/user-auth.js
Normal file
|
@ -0,0 +1,46 @@
|
|||
export function initUserAuthOauth2() {
|
||||
const $oauth2LoginNav = $('#oauth2-login-navigator');
|
||||
if ($oauth2LoginNav.length === 0) return;
|
||||
|
||||
$oauth2LoginNav.find('.oauth-login-image').click(() => {
|
||||
const oauthLoader = $('#oauth2-login-loader');
|
||||
const oauthNav = $('#oauth2-login-navigator');
|
||||
|
||||
oauthNav.hide();
|
||||
oauthLoader.removeClass('disabled');
|
||||
|
||||
setTimeout(() => {
|
||||
// recover previous content to let user try again
|
||||
// usually redirection will be performed before this action
|
||||
oauthLoader.addClass('disabled');
|
||||
oauthNav.show();
|
||||
}, 5000);
|
||||
});
|
||||
}
|
||||
|
||||
export function initUserAuthLinkAccountView() {
|
||||
const $lnkUserPage = $('.page-content.user.link-account');
|
||||
if ($lnkUserPage.length === 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const $signinTab = $lnkUserPage.find('.item[data-tab="auth-link-signin-tab"]');
|
||||
const $signUpTab = $lnkUserPage.find('.item[data-tab="auth-link-signup-tab"]');
|
||||
const $signInView = $lnkUserPage.find('.tab[data-tab="auth-link-signin-tab"]');
|
||||
const $signUpView = $lnkUserPage.find('.tab[data-tab="auth-link-signup-tab"]');
|
||||
|
||||
$signUpTab.on('click', () => {
|
||||
$signinTab.removeClass('active');
|
||||
$signInView.removeClass('active');
|
||||
$signUpTab.addClass('active');
|
||||
$signUpView.addClass('active');
|
||||
return false;
|
||||
});
|
||||
|
||||
$signinTab.on('click', () => {
|
||||
$signUpTab.removeClass('active');
|
||||
$signUpView.removeClass('active');
|
||||
$signinTab.addClass('active');
|
||||
$signInView.addClass('active');
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue