aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features
diff options
context:
space:
mode:
authorYarden Shoham <git@yardenshoham.com>2024-03-26 21:38:37 +0200
committerGitHub <noreply@github.com>2024-03-26 19:38:37 +0000
commita1f11e2e33f20409eac65b2d0e9a7cd7c767eb72 (patch)
tree203b91db91e73b520683e444d6cda0a7277f1f7d /web_src/js/features
parente0b018706fa7703ef1759d9a75a1399383715808 (diff)
downloadgitea-a1f11e2e33f20409eac65b2d0e9a7cd7c767eb72.tar.gz
gitea-a1f11e2e33f20409eac65b2d0e9a7cd7c767eb72.zip
Remove jQuery calls that have no effect on `showElem` and `hideElem` (#30110)
There's no need to initialize a jQuery object with a CSS selector when we can pass the CSS selector directly. Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Diffstat (limited to 'web_src/js/features')
-rw-r--r--web_src/js/features/admin/common.js36
-rw-r--r--web_src/js/features/org-team.js4
-rw-r--r--web_src/js/features/repo-editor.js4
3 files changed, 22 insertions, 22 deletions
diff --git a/web_src/js/features/admin/common.js b/web_src/js/features/admin/common.js
index 4e64bff330..59edba11c5 100644
--- a/web_src/js/features/admin/common.js
+++ b/web_src/js/features/admin/common.js
@@ -17,8 +17,8 @@ export function initAdminCommon() {
if ($(this).val().substring(0, 1) === '0') {
$('#user_name').removeAttr('disabled');
$('#login_name').removeAttr('required');
- hideElem($('.non-local'));
- showElem($('.local'));
+ hideElem('.non-local');
+ showElem('.local');
$('#user_name').trigger('focus');
if ($(this).data('password') === 'required') {
@@ -29,8 +29,8 @@ export function initAdminCommon() {
$('#user_name').attr('disabled', 'disabled');
}
$('#login_name').attr('required', 'required');
- showElem($('.non-local'));
- hideElem($('.local'));
+ showElem('.non-local');
+ hideElem('.local');
$('#login_name').trigger('focus');
$('#password').removeAttr('required');
@@ -40,9 +40,9 @@ export function initAdminCommon() {
function onSecurityProtocolChange() {
if ($('#security_protocol').val() > 0) {
- showElem($('.has-tls'));
+ showElem('.has-tls');
} else {
- hideElem($('.has-tls'));
+ hideElem('.has-tls');
}
}
@@ -57,21 +57,21 @@ export function initAdminCommon() {
}
function onOAuth2Change(applyDefaultValues) {
- hideElem($('.open_id_connect_auto_discovery_url, .oauth2_use_custom_url'));
+ hideElem('.open_id_connect_auto_discovery_url, .oauth2_use_custom_url');
$('.open_id_connect_auto_discovery_url input[required]').removeAttr('required');
const provider = $('#oauth2_provider').val();
switch (provider) {
case 'openidConnect':
$('.open_id_connect_auto_discovery_url input').attr('required', 'required');
- showElem($('.open_id_connect_auto_discovery_url'));
+ showElem('.open_id_connect_auto_discovery_url');
break;
default:
if ($(`#${provider}_customURLSettings`).data('required')) {
$('#oauth2_use_custom_url').attr('checked', 'checked');
}
if ($(`#${provider}_customURLSettings`).data('available')) {
- showElem($('.oauth2_use_custom_url'));
+ showElem('.oauth2_use_custom_url');
}
}
onOAuth2UseCustomURLChange(applyDefaultValues);
@@ -79,7 +79,7 @@ export function initAdminCommon() {
function onOAuth2UseCustomURLChange(applyDefaultValues) {
const provider = $('#oauth2_provider').val();
- hideElem($('.oauth2_use_custom_url_field'));
+ hideElem('.oauth2_use_custom_url_field');
$('.oauth2_use_custom_url_field input[required]').removeAttr('required');
if (document.getElementById('oauth2_use_custom_url')?.checked) {
@@ -102,7 +102,7 @@ export function initAdminCommon() {
// New authentication
if ($('.admin.new.authentication').length > 0) {
$('#auth_type').on('change', function () {
- hideElem($('.ldap, .dldap, .smtp, .pam, .oauth2, .has-tls, .search-page-size, .sspi'));
+ hideElem('.ldap, .dldap, .smtp, .pam, .oauth2, .has-tls, .search-page-size, .sspi');
$('.ldap input[required], .binddnrequired input[required], .dldap input[required], .smtp input[required], .pam input[required], .oauth2 input[required], .has-tls input[required], .sspi input[required]').removeAttr('required');
$('.binddnrequired').removeClass('required');
@@ -110,30 +110,30 @@ export function initAdminCommon() {
const authType = $(this).val();
switch (authType) {
case '2': // LDAP
- showElem($('.ldap'));
+ showElem('.ldap');
$('.binddnrequired input, .ldap div.required:not(.dldap) input').attr('required', 'required');
$('.binddnrequired').addClass('required');
break;
case '3': // SMTP
- showElem($('.smtp'));
- showElem($('.has-tls'));
+ showElem('.smtp');
+ showElem('.has-tls');
$('.smtp div.required input, .has-tls').attr('required', 'required');
break;
case '4': // PAM
- showElem($('.pam'));
+ showElem('.pam');
$('.pam input').attr('required', 'required');
break;
case '5': // LDAP
- showElem($('.dldap'));
+ showElem('.dldap');
$('.dldap div.required:not(.ldap) input').attr('required', 'required');
break;
case '6': // OAuth2
- showElem($('.oauth2'));
+ showElem('.oauth2');
$('.oauth2 div.required:not(.oauth2_use_custom_url,.oauth2_use_custom_url_field,.open_id_connect_auto_discovery_url) input').attr('required', 'required');
onOAuth2Change(true);
break;
case '7': // SSPI
- showElem($('.sspi'));
+ showElem('.sspi');
$('.sspi div.required input').attr('required', 'required');
break;
}
diff --git a/web_src/js/features/org-team.js b/web_src/js/features/org-team.js
index 2236bc58bc..c216fdf6a2 100644
--- a/web_src/js/features/org-team.js
+++ b/web_src/js/features/org-team.js
@@ -8,9 +8,9 @@ export function initOrgTeamSettings() {
$('.organization.new.team input[name=permission]').on('change', () => {
const val = $('input[name=permission]:checked', '.organization.new.team').val();
if (val === 'admin') {
- hideElem($('.organization.new.team .team-units'));
+ hideElem('.organization.new.team .team-units');
} else {
- showElem($('.organization.new.team .team-units'));
+ showElem('.organization.new.team .team-units');
}
});
}
diff --git a/web_src/js/features/repo-editor.js b/web_src/js/features/repo-editor.js
index da3bda8c1d..fc951750a9 100644
--- a/web_src/js/features/repo-editor.js
+++ b/web_src/js/features/repo-editor.js
@@ -64,10 +64,10 @@ export function initRepoEditor() {
$('.js-quick-pull-choice-option').on('change', function () {
if ($(this).val() === 'commit-to-new-branch') {
- showElem($('.quick-pull-branch-name'));
+ showElem('.quick-pull-branch-name');
document.querySelector('.quick-pull-branch-name input').required = true;
} else {
- hideElem($('.quick-pull-branch-name'));
+ hideElem('.quick-pull-branch-name');
document.querySelector('.quick-pull-branch-name input').required = false;
}
$('#commit-button').text(this.getAttribute('button_text'));