Update Composer, update everything

This commit is contained in:
Oliver Davies 2018-11-23 12:29:20 +00:00
parent ea3e94409f
commit dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions

View file

@ -1,12 +1,34 @@
/**
* @file
* Javascript behaviors for webforms.
* JavaScript behaviors for webforms.
*/
(function ($, Drupal) {
'use strict';
/**
* Remove single submit event listener.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches the behavior for removing single submit event listener.
*
* @see Drupal.behaviors.formSingleSubmit
*/
Drupal.behaviors.weformRemoveFormSingleSubmit = {
attach: function attach() {
function onFormSubmit(e) {
var $form = $(e.currentTarget);
$form.removeAttr('data-drupal-form-submit-last');
}
$('body')
.once('webform-single-submit')
.on('submit.singleSubmit', 'form.webform-remove-single-submit:not([method~="GET"])', onFormSubmit);
}
};
/**
* Autofocus first input.
*
@ -28,17 +50,21 @@
*
* @prop {Drupal~behaviorAttach} attach
* Attaches the behavior for disabling webform autosubmit.
* Wizard pages need to be progressed with the Previous or Next buttons, not by pressing Enter.
*/
Drupal.behaviors.webformDisableAutoSubmit = {
attach: function (context) {
// @see http://stackoverflow.com/questions/11235622/jquery-disable-form-submit-on-enter
$(context).find('.webform-submission-form.js-webform-disable-autosubmit input').once('webform-disable-autosubmit').on('keyup keypress', function (e) {
var keyCode = e.keyCode || e.which;
if (keyCode === 13) {
e.preventDefault();
return false;
}
});
$(context).find('.webform-submission-form.js-webform-disable-autosubmit input')
.not(':button, :submit, :reset, :image, :file')
.once('webform-disable-autosubmit')
.on('keyup keypress', function (e) {
var keyCode = e.keyCode || e.which;
if (keyCode === 13) {
e.preventDefault();
return false;
}
});
}
};
@ -52,90 +78,71 @@
*/
Drupal.behaviors.webformSubmitNoValidate = {
attach: function (context) {
$(context).find('input:submit.js-webform-novalidate').once('webform-novalidate').on('click', function () {
$(context).find(':submit.js-webform-novalidate').once('webform-novalidate').on('click', function () {
$(this.form).attr('novalidate', 'novalidate');
});
}
};
/**
* Disable validate when save draft submit button is clicked.
* Attach behaviors to trigger submit button from input onchange.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches the behavior for the webform draft submit button.
* Attaches form trigger submit events.
*/
Drupal.behaviors.webformDraft = {
Drupal.behaviors.webformSubmitTrigger = {
attach: function (context) {
$(context).find('#edit-draft').once('webform-draft').on('click', function () {
$(this.form).attr('novalidate', 'novalidate');
$('[data-webform-trigger-submit]').once('webform-trigger-submit').on('change', function () {
var submit = $(this).attr('data-webform-trigger-submit');
$(submit).mousedown();
});
}
};
/**
* Filters the webform element list by a text input search string.
*
* The text input will have the selector `input.webform-form-filter-text`.
*
* The target element to do searching in will be in the selector
* `input.webform-form-filter-text[data-element]`
*
* The text source where the text should be found will have the selector
* `.webform-form-filter-text-source`
* Custom required error message.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches the behavior for the webform element filtering.
* Attaches the behavior for the webform custom required error message.
*
* @see http://stackoverflow.com/questions/5272433/html5-form-required-attribute-set-custom-validation-message
*/
Drupal.behaviors.webformFilterByText = {
attach: function (context, settings) {
var $input = $('input.webform-form-filter-text').once('webform-form-filter-text');
var $table = $($input.attr('data-element'));
var $filter_rows;
/**
* Filters the webform element list.
*
* @param {jQuery.Event} e
* The jQuery event for the keyup event that triggered the filter.
*/
function filterElementList(e) {
var query = $(e.target).val().toLowerCase();
/**
* Shows or hides the webform element entry based on the query.
*
* @param {number} index
* The index in the loop, as provided by `jQuery.each`
* @param {HTMLElement} label
* The label of the webform.
*/
function toggleEntry(index, label) {
var $label = $(label);
var $row = $label.parent().parent();
var textMatch = $label.text().toLowerCase().indexOf(query) !== -1;
$row.toggle(textMatch);
}
// Filter if the length of the query is at least 2 characters.
if (query.length >= 2) {
$filter_rows.each(toggleEntry);
}
else {
$filter_rows.each(function (index) {
$(this).parent().parent().show();
Drupal.behaviors.webformRequiredError = {
attach: function (context) {
$(context).find(':input[data-webform-required-error]').once('webform-required-error')
.on('invalid', function () {
this.setCustomValidity('');
if (!this.valid) {
this.setCustomValidity($(this).attr('data-webform-required-error'));
}
})
.on('input, change', function () {
// Find all related elements by name and reset custom validity.
// This specifically applies to required radios and checkboxes.
var name = $(this).attr('name');
$(this.form).find(':input[name="' + name + '"]').each(function () {
this.setCustomValidity('');
});
}
}
if ($table.length) {
$filter_rows = $table.find('div.webform-form-filter-text-source');
$input.on('keyup', filterElementList);
}
});
}
};
// When #state:required is triggered we need to reset the target elements
// custom validity.
$(document).on('state:required', function (e) {
$(e.target).filter('[data-webform-required-error]')
.each(function () {this.setCustomValidity('');});
});
if (window.imceInput) {
window.imceInput.processUrlInput = function (i, el) {
var button = imceInput.createUrlButton(el.id, el.getAttribute('data-imce-type'));
el.parentNode.insertAfter(button, el);
};
}
})(jQuery, Drupal);