Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
34a95532
Commit
34a95532
authored
11 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#1636992
by nod_, Wim Leers: Form.js' formUpdated event is unreliable/incomplete.
parent
b1128351
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/misc/form.js
+78
-2
78 additions, 2 deletions
core/misc/form.js
core/modules/filter/filter.js
+13
-6
13 additions, 6 deletions
core/modules/filter/filter.js
core/modules/system/system.module
+1
-0
1 addition, 0 deletions
core/modules/system/system.module
with
92 additions
and
8 deletions
core/misc/form.js
+
78
−
2
View file @
34a95532
(
function
(
$
)
{
(
function
(
$
,
Drupal
,
debounce
)
{
"
use strict
"
;
...
...
@@ -116,6 +116,82 @@ Drupal.behaviors.formSingleSubmit = {
}
};
/**
* Sends a 'formUpdated' event each time a form element is modified.
*/
function
triggerFormUpdated
(
element
)
{
$
(
element
).
trigger
(
'
formUpdated
'
);
}
/**
* Collects the IDs of all form fields in the given form.
*
* @param {HTMLFormElement} form
* @return {Array}
*/
function
fieldsList
(
form
)
{
var
$fieldList
=
$
(
form
).
find
(
'
[name]
'
).
map
(
function
(
index
,
element
)
{
// We use id to avoid name duplicates on radio fields and filter out
// elements with a name but no id.
return
element
.
getAttribute
(
'
id
'
);
});
// Return a true array.
return
$
.
makeArray
(
$fieldList
);
}
/**
* Triggers the 'formUpdated' event on form elements when they are modified.
*/
Drupal
.
behaviors
.
formUpdated
=
{
attach
:
function
(
context
)
{
var
$context
=
$
(
context
);
var
contextIsForm
=
$context
.
is
(
'
form
'
);
var
$forms
=
$context
.
find
(
'
form
'
).
once
(
'
form-updated
'
);
if
(
contextIsForm
)
{
$forms
=
$context
;
}
if
(
$forms
.
length
)
{
// Initialize form behaviors, use $.makeArray to be able to use native
// forEach array method and have the callback parameters in the right order.
$
.
makeArray
(
$forms
).
forEach
(
function
(
form
)
{
var
events
=
'
change.formUpdated keypress.formUpdated
'
;
var
eventHandler
=
debounce
(
function
(
event
)
{
triggerFormUpdated
(
event
.
target
);
},
300
);
var
formFields
=
fieldsList
(
form
).
join
(
'
,
'
);
form
.
setAttribute
(
'
data-drupal-form-fields
'
,
formFields
);
$
(
form
).
on
(
events
,
eventHandler
);
});
}
// On ajax requests context is the form element.
if
(
contextIsForm
)
{
var
formFields
=
fieldsList
(
context
).
join
(
'
,
'
);
// @todo replace with form.getAttribute() when #1979468 is in.
var
currentFields
=
$
(
context
).
attr
(
'
data-drupal-form-fields
'
);
// if there has been a change in the fields or their order, trigger
// formUpdated.
if
(
formFields
!==
currentFields
)
{
triggerFormUpdated
(
context
);
}
}
},
detach
:
function
(
context
,
settings
,
trigger
)
{
var
$context
=
$
(
context
);
if
(
trigger
===
'
unload
'
)
{
var
$forms
=
$context
.
find
(
'
form
'
).
removeOnce
(
'
form-updated
'
);
if
(
$forms
.
length
)
{
$
.
makeArray
(
$forms
).
forEach
(
function
(
form
)
{
form
.
removeAttribute
(
'
data-drupal-form-fields
'
);
$
(
form
).
off
(
'
.formUpdated
'
);
});
}
}
}
};
/**
* Prepopulate form fields with information from the visitor cookie.
*/
...
...
@@ -136,4 +212,4 @@ Drupal.behaviors.fillUserInfoFromCookie = {
}
};
})(
jQuery
);
})(
jQuery
,
Drupal
,
Drupal
.
debounce
);
This diff is collapsed.
Click to expand it.
core/modules/filter/filter.js
+
13
−
6
View file @
34a95532
...
...
@@ -12,15 +12,22 @@
*/
Drupal
.
behaviors
.
filterGuidelines
=
{
attach
:
function
(
context
)
{
function
updateFilterGuidelines
(
event
)
{
var
$this
=
$
(
event
.
target
);
var
value
=
$this
.
val
();
$this
.
closest
(
'
.filter-wrapper
'
)
.
find
(
'
.filter-guidelines-item
'
).
hide
()
.
filter
(
'
.filter-guidelines-
'
+
value
).
show
();
}
$
(
context
).
find
(
'
.filter-guidelines
'
).
once
(
'
filter-guidelines
'
)
.
find
(
'
:header
'
).
hide
()
.
closest
(
'
.filter-wrapper
'
).
find
(
'
select.filter-list
'
)
.
on
(
'
change
'
,
function
()
{
$
(
this
).
closest
(
'
.filter-wrapper
'
)
.
find
(
'
.filter-guidelines-item
'
).
hide
()
.
filter
(
'
.filter-guidelines-
'
+
this
.
value
).
show
();
})
.
trigger
(
'
change
'
);
.
on
(
'
change.filterGuidelines
'
,
updateFilterGuidelines
)
// Need to trigger the namespaced event to avoid triggering formUpdated
// when initializing the select.
.
trigger
(
'
change.filterGuidelines
'
);
}
};
...
...
This diff is collapsed.
Click to expand it.
core/modules/system/system.module
+
1
−
0
View file @
34a95532
...
...
@@ -959,6 +959,7 @@ function system_library_info() {
'dependencies'
=>
array
(
array
(
'system'
,
'jquery'
),
array
(
'system'
,
'drupal'
),
array
(
'system'
,
'drupal.debounce'
),
array
(
'system'
,
'jquery.cookie'
),
array
(
'system'
,
'jquery.once'
),
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment