@@ -6,7 +6,7 @@ import {POST} from '../../modules/fetch.js';
6
6
const { appSubUrl} = window . config ;
7
7
8
8
function onSecurityProtocolChange ( ) {
9
- if ( Number ( document . getElementById ( ' security_protocol') ?. value ) > 0 ) {
9
+ if ( Number ( document . querySelector ( '# security_protocol') ?. value ) > 0 ) {
10
10
showElem ( '.has-tls' ) ;
11
11
} else {
12
12
hideElem ( '.has-tls' ) ;
@@ -21,34 +21,34 @@ export function initAdminCommon() {
21
21
22
22
// New user
23
23
if ( $ ( '.admin.new.user' ) . length > 0 || $ ( '.admin.edit.user' ) . length > 0 ) {
24
- document . getElementById ( ' login_type') ?. addEventListener ( 'change' , function ( ) {
24
+ document . querySelector ( '# login_type') ?. addEventListener ( 'change' , function ( ) {
25
25
if ( this . value ?. substring ( 0 , 1 ) === '0' ) {
26
- document . getElementById ( ' user_name') ?. removeAttribute ( 'disabled' ) ;
27
- document . getElementById ( ' login_name') ?. removeAttribute ( 'required' ) ;
26
+ document . querySelector ( '# user_name') ?. removeAttribute ( 'disabled' ) ;
27
+ document . querySelector ( '# login_name') ?. removeAttribute ( 'required' ) ;
28
28
hideElem ( '.non-local' ) ;
29
29
showElem ( '.local' ) ;
30
- document . getElementById ( ' user_name') ?. focus ( ) ;
30
+ document . querySelector ( '# user_name') ?. focus ( ) ;
31
31
32
32
if ( this . getAttribute ( 'data-password' ) === 'required' ) {
33
- document . getElementById ( ' password') ?. setAttribute ( 'required' , 'required' ) ;
33
+ document . querySelector ( '# password') ?. setAttribute ( 'required' , 'required' ) ;
34
34
}
35
35
} else {
36
36
if ( document . querySelector ( '.admin.edit.user' ) ) {
37
- document . getElementById ( ' user_name') ?. setAttribute ( 'disabled' , 'disabled' ) ;
37
+ document . querySelector ( '# user_name') ?. setAttribute ( 'disabled' , 'disabled' ) ;
38
38
}
39
- document . getElementById ( ' login_name') ?. setAttribute ( 'required' , 'required' ) ;
39
+ document . querySelector ( '# login_name') ?. setAttribute ( 'required' , 'required' ) ;
40
40
showElem ( '.non-local' ) ;
41
41
hideElem ( '.local' ) ;
42
- document . getElementById ( ' login_name') ?. focus ( ) ;
42
+ document . querySelector ( '# login_name') ?. focus ( ) ;
43
43
44
- document . getElementById ( ' password') ?. removeAttribute ( 'required' ) ;
44
+ document . querySelector ( '# password') ?. removeAttribute ( 'required' ) ;
45
45
}
46
46
} ) ;
47
47
}
48
48
49
49
function onUsePagedSearchChange ( ) {
50
50
const searchPageSizeElements = document . querySelectorAll ( '.search-page-size' ) ;
51
- if ( document . getElementById ( ' use_paged_search') . checked ) {
51
+ if ( document . querySelector ( '# use_paged_search') . checked ) {
52
52
showElem ( '.search-page-size' ) ;
53
53
for ( const el of searchPageSizeElements ) {
54
54
el . querySelector ( 'input' ) ?. setAttribute ( 'required' , 'required' ) ;
@@ -67,7 +67,7 @@ export function initAdminCommon() {
67
67
input . removeAttribute ( 'required' ) ;
68
68
}
69
69
70
- const provider = document . getElementById ( ' oauth2_provider') . value ;
70
+ const provider = document . querySelector ( '# oauth2_provider') . value ;
71
71
switch ( provider ) {
72
72
case 'openidConnect' :
73
73
document . querySelector ( '.open_id_connect_auto_discovery_url input' ) . setAttribute ( 'required' , 'required' ) ;
@@ -91,19 +91,19 @@ export function initAdminCommon() {
91
91
}
92
92
93
93
function onOAuth2UseCustomURLChange ( applyDefaultValues ) {
94
- const provider = document . getElementById ( ' oauth2_provider') . value ;
94
+ const provider = document . querySelector ( '# oauth2_provider') . value ;
95
95
hideElem ( '.oauth2_use_custom_url_field' ) ;
96
96
for ( const input of document . querySelectorAll ( '.oauth2_use_custom_url_field input[required]' ) ) {
97
97
input . removeAttribute ( 'required' ) ;
98
98
}
99
99
100
100
const elProviderCustomUrlSettings = document . querySelector ( `#${ provider } _customURLSettings` ) ;
101
- if ( elProviderCustomUrlSettings && document . getElementById ( ' oauth2_use_custom_url') . checked ) {
101
+ if ( elProviderCustomUrlSettings && document . querySelector ( '# oauth2_use_custom_url') . checked ) {
102
102
for ( const custom of [ 'token_url' , 'auth_url' , 'profile_url' , 'email_url' , 'tenant' ] ) {
103
103
if ( applyDefaultValues ) {
104
- document . getElementById ( ` oauth2_${ custom } `) . value = document . getElementById ( ` ${ provider } _${ custom } `) . value ;
104
+ document . querySelector ( `# oauth2_${ custom } `) . value = document . querySelector ( `# ${ provider } _${ custom } `) . value ;
105
105
}
106
- const customInput = document . getElementById ( ` ${ provider } _${ custom } `) ;
106
+ const customInput = document . querySelector ( `# ${ provider } _${ custom } `) ;
107
107
if ( customInput && customInput . getAttribute ( 'data-available' ) === 'true' ) {
108
108
for ( const input of document . querySelectorAll ( `.oauth2_${ custom } input` ) ) {
109
109
input . setAttribute ( 'required' , 'required' ) ;
@@ -115,12 +115,12 @@ export function initAdminCommon() {
115
115
}
116
116
117
117
function onEnableLdapGroupsChange ( ) {
118
- toggleElem ( document . getElementById ( ' ldap-group-options') , $ ( '.js-ldap-group-toggle' ) [ 0 ] . checked ) ;
118
+ toggleElem ( document . querySelector ( '# ldap-group-options') , $ ( '.js-ldap-group-toggle' ) [ 0 ] . checked ) ;
119
119
}
120
120
121
121
// New authentication
122
122
if ( document . querySelector ( '.admin.new.authentication' ) ) {
123
- document . getElementById ( ' auth_type') ?. addEventListener ( 'change' , function ( ) {
123
+ document . querySelector ( '# auth_type') ?. addEventListener ( 'change' , function ( ) {
124
124
hideElem ( '.ldap, .dldap, .smtp, .pam, .oauth2, .has-tls, .search-page-size, .sspi' ) ;
125
125
126
126
for ( const input of document . querySelectorAll ( '.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]' ) ) {
@@ -180,39 +180,39 @@ export function initAdminCommon() {
180
180
}
181
181
} ) ;
182
182
$ ( '#auth_type' ) . trigger ( 'change' ) ;
183
- document . getElementById ( ' security_protocol') ?. addEventListener ( 'change' , onSecurityProtocolChange ) ;
184
- document . getElementById ( ' use_paged_search') ?. addEventListener ( 'change' , onUsePagedSearchChange ) ;
185
- document . getElementById ( ' oauth2_provider') ?. addEventListener ( 'change' , ( ) => onOAuth2Change ( true ) ) ;
186
- document . getElementById ( ' oauth2_use_custom_url') ?. addEventListener ( 'change' , ( ) => onOAuth2UseCustomURLChange ( true ) ) ;
183
+ document . querySelector ( '# security_protocol') ?. addEventListener ( 'change' , onSecurityProtocolChange ) ;
184
+ document . querySelector ( '# use_paged_search') ?. addEventListener ( 'change' , onUsePagedSearchChange ) ;
185
+ document . querySelector ( '# oauth2_provider') ?. addEventListener ( 'change' , ( ) => onOAuth2Change ( true ) ) ;
186
+ document . querySelector ( '# oauth2_use_custom_url') ?. addEventListener ( 'change' , ( ) => onOAuth2UseCustomURLChange ( true ) ) ;
187
187
$ ( '.js-ldap-group-toggle' ) . on ( 'change' , onEnableLdapGroupsChange ) ;
188
188
}
189
189
// Edit authentication
190
190
if ( document . querySelector ( '.admin.edit.authentication' ) ) {
191
- const authType = document . getElementById ( ' auth_type') ?. value ;
191
+ const authType = document . querySelector ( '# auth_type') ?. value ;
192
192
if ( authType === '2' || authType === '5' ) {
193
- document . getElementById ( ' security_protocol') ?. addEventListener ( 'change' , onSecurityProtocolChange ) ;
193
+ document . querySelector ( '# security_protocol') ?. addEventListener ( 'change' , onSecurityProtocolChange ) ;
194
194
$ ( '.js-ldap-group-toggle' ) . on ( 'change' , onEnableLdapGroupsChange ) ;
195
195
onEnableLdapGroupsChange ( ) ;
196
196
if ( authType === '2' ) {
197
- document . getElementById ( ' use_paged_search') ?. addEventListener ( 'change' , onUsePagedSearchChange ) ;
197
+ document . querySelector ( '# use_paged_search') ?. addEventListener ( 'change' , onUsePagedSearchChange ) ;
198
198
}
199
199
} else if ( authType === '6' ) {
200
- document . getElementById ( ' oauth2_provider') ?. addEventListener ( 'change' , ( ) => onOAuth2Change ( true ) ) ;
201
- document . getElementById ( ' oauth2_use_custom_url') ?. addEventListener ( 'change' , ( ) => onOAuth2UseCustomURLChange ( false ) ) ;
200
+ document . querySelector ( '# oauth2_provider') ?. addEventListener ( 'change' , ( ) => onOAuth2Change ( true ) ) ;
201
+ document . querySelector ( '# oauth2_use_custom_url') ?. addEventListener ( 'change' , ( ) => onOAuth2UseCustomURLChange ( false ) ) ;
202
202
onOAuth2Change ( false ) ;
203
203
}
204
204
}
205
205
206
206
if ( document . querySelector ( '.admin.authentication' ) ) {
207
207
$ ( '#auth_name' ) . on ( 'input' , function ( ) {
208
208
// appSubUrl is either empty or is a path that starts with `/` and doesn't have a trailing slash.
209
- document . getElementById ( ' oauth2-callback-url') . textContent = `${ window . location . origin } ${ appSubUrl } /user/oauth2/${ encodeURIComponent ( this . value ) } /callback` ;
209
+ document . querySelector ( '# oauth2-callback-url') . textContent = `${ window . location . origin } ${ appSubUrl } /user/oauth2/${ encodeURIComponent ( this . value ) } /callback` ;
210
210
} ) . trigger ( 'input' ) ;
211
211
}
212
212
213
213
// Notice
214
214
if ( document . querySelector ( '.admin.notice' ) ) {
215
- const detailModal = document . getElementById ( ' detail-modal') ;
215
+ const detailModal = document . querySelector ( '# detail-modal') ;
216
216
217
217
// Attach view detail modals
218
218
$ ( '.view-detail' ) . on ( 'click' , function ( ) {
@@ -244,7 +244,7 @@ export function initAdminCommon() {
244
244
break ;
245
245
}
246
246
} ) ;
247
- document . getElementById ( ' delete-selection') ?. addEventListener ( 'click' , async function ( e ) {
247
+ document . querySelector ( '# delete-selection') ?. addEventListener ( 'click' , async function ( e ) {
248
248
e . preventDefault ( ) ;
249
249
this . classList . add ( 'is-loading' , 'disabled' ) ;
250
250
const data = new FormData ( ) ;
0 commit comments