upgrades core to 8.4.2
This commit is contained in:
@@ -0,0 +1,331 @@
|
||||
/**
|
||||
* @file
|
||||
* Attaches the behaviors for the Field UI module.
|
||||
*/
|
||||
|
||||
(function ($, Drupal, drupalSettings) {
|
||||
/**
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Adds behaviors to the field storage add form.
|
||||
*/
|
||||
Drupal.behaviors.fieldUIFieldStorageAddForm = {
|
||||
attach(context) {
|
||||
const $form = $(context).find('[data-drupal-selector="field-ui-field-storage-add-form"]').once('field_ui_add');
|
||||
if ($form.length) {
|
||||
// Add a few 'js-form-required' and 'form-required' css classes here.
|
||||
// We can not use the Form API '#required' property because both label
|
||||
// elements for "add new" and "re-use existing" can never be filled and
|
||||
// submitted at the same time. The actual validation will happen
|
||||
// server-side.
|
||||
$form.find(
|
||||
'.js-form-item-label label,' +
|
||||
'.js-form-item-field-name label,' +
|
||||
'.js-form-item-existing-storage-label label')
|
||||
.addClass('js-form-required form-required');
|
||||
|
||||
const $newFieldType = $form.find('select[name="new_storage_type"]');
|
||||
const $existingStorageName = $form.find('select[name="existing_storage_name"]');
|
||||
const $existingStorageLabel = $form.find('input[name="existing_storage_label"]');
|
||||
|
||||
// When the user selects a new field type, clear the "existing field"
|
||||
// selection.
|
||||
$newFieldType.on('change', function () {
|
||||
if ($(this).val() !== '') {
|
||||
// Reset the "existing storage name" selection.
|
||||
$existingStorageName.val('').trigger('change');
|
||||
}
|
||||
});
|
||||
|
||||
// When the user selects an existing storage name, clear the "new field
|
||||
// type" selection and populate the 'existing_storage_label' element.
|
||||
$existingStorageName.on('change', function () {
|
||||
const value = $(this).val();
|
||||
if (value !== '') {
|
||||
// Reset the "new field type" selection.
|
||||
$newFieldType.val('').trigger('change');
|
||||
|
||||
// Pre-populate the "existing storage label" element.
|
||||
if (typeof drupalSettings.existingFieldLabels[value] !== 'undefined') {
|
||||
$existingStorageLabel.val(drupalSettings.existingFieldLabels[value]);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @see Drupal.fieldUIOverview.attach
|
||||
*/
|
||||
Drupal.behaviors.fieldUIDisplayOverview = {
|
||||
attach(context, settings) {
|
||||
$(context).find('table#field-display-overview').once('field-display-overview').each(function () {
|
||||
Drupal.fieldUIOverview.attach(this, settings.fieldUIRowsData, Drupal.fieldUIDisplayOverview);
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Namespace for the field UI overview.
|
||||
*
|
||||
* @namespace
|
||||
*/
|
||||
Drupal.fieldUIOverview = {
|
||||
|
||||
/**
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @param {HTMLTableElement} table
|
||||
* The table element for the overview.
|
||||
* @param {object} rowsData
|
||||
* The data of the rows in the table.
|
||||
* @param {object} rowHandlers
|
||||
* Handlers to be added to the rows.
|
||||
*/
|
||||
attach(table, rowsData, rowHandlers) {
|
||||
const tableDrag = Drupal.tableDrag[table.id];
|
||||
|
||||
// Add custom tabledrag callbacks.
|
||||
tableDrag.onDrop = this.onDrop;
|
||||
tableDrag.row.prototype.onSwap = this.onSwap;
|
||||
|
||||
// Create row handlers.
|
||||
$(table).find('tr.draggable').each(function () {
|
||||
// Extract server-side data for the row.
|
||||
const row = this;
|
||||
if (row.id in rowsData) {
|
||||
const data = rowsData[row.id];
|
||||
data.tableDrag = tableDrag;
|
||||
|
||||
// Create the row handler, make it accessible from the DOM row
|
||||
// element.
|
||||
const rowHandler = new rowHandlers[data.rowHandler](row, data);
|
||||
$(row).data('fieldUIRowHandler', rowHandler);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Event handler to be attached to form inputs triggering a region change.
|
||||
*/
|
||||
onChange() {
|
||||
const $trigger = $(this);
|
||||
const $row = $trigger.closest('tr');
|
||||
const rowHandler = $row.data('fieldUIRowHandler');
|
||||
|
||||
const refreshRows = {};
|
||||
refreshRows[rowHandler.name] = $trigger.get(0);
|
||||
|
||||
// Handle region change.
|
||||
const region = rowHandler.getRegion();
|
||||
if (region !== rowHandler.region) {
|
||||
// Remove parenting.
|
||||
$row.find('select.js-field-parent').val('');
|
||||
// Let the row handler deal with the region change.
|
||||
$.extend(refreshRows, rowHandler.regionChange(region));
|
||||
// Update the row region.
|
||||
rowHandler.region = region;
|
||||
}
|
||||
|
||||
// Ajax-update the rows.
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
},
|
||||
|
||||
/**
|
||||
* Lets row handlers react when a row is dropped into a new region.
|
||||
*/
|
||||
onDrop() {
|
||||
const dragObject = this;
|
||||
const row = dragObject.rowObject.element;
|
||||
const $row = $(row);
|
||||
const rowHandler = $row.data('fieldUIRowHandler');
|
||||
if (typeof rowHandler !== 'undefined') {
|
||||
const regionRow = $row.prevAll('tr.region-message').get(0);
|
||||
const region = regionRow.className.replace(/([^ ]+[ ]+)*region-([^ ]+)-message([ ]+[^ ]+)*/, '$2');
|
||||
|
||||
if (region !== rowHandler.region) {
|
||||
// Let the row handler deal with the region change.
|
||||
const refreshRows = rowHandler.regionChange(region);
|
||||
// Update the row region.
|
||||
rowHandler.region = region;
|
||||
// Ajax-update the rows.
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Refreshes placeholder rows in empty regions while a row is being dragged.
|
||||
*
|
||||
* Copied from block.js.
|
||||
*
|
||||
* @param {HTMLElement} draggedRow
|
||||
* The tableDrag rowObject for the row being dragged.
|
||||
*/
|
||||
onSwap(draggedRow) {
|
||||
const rowObject = this;
|
||||
$(rowObject.table).find('tr.region-message').each(function () {
|
||||
const $this = $(this);
|
||||
// If the dragged row is in this region, but above the message row, swap
|
||||
// it down one space.
|
||||
if ($this.prev('tr').get(0) === rowObject.group[rowObject.group.length - 1]) {
|
||||
// Prevent a recursion problem when using the keyboard to move rows
|
||||
// up.
|
||||
if ((rowObject.method !== 'keyboard' || rowObject.direction === 'down')) {
|
||||
rowObject.swap('after', this);
|
||||
}
|
||||
}
|
||||
// This region has become empty.
|
||||
if ($this.next('tr').is(':not(.draggable)') || $this.next('tr').length === 0) {
|
||||
$this.removeClass('region-populated').addClass('region-empty');
|
||||
}
|
||||
// This region has become populated.
|
||||
else if ($this.is('.region-empty')) {
|
||||
$this.removeClass('region-empty').addClass('region-populated');
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Triggers Ajax refresh of selected rows.
|
||||
*
|
||||
* The 'format type' selects can trigger a series of changes in child rows.
|
||||
* The #ajax behavior is therefore not attached directly to the selects, but
|
||||
* triggered manually through a hidden #ajax 'Refresh' button.
|
||||
*
|
||||
* @param {object} rows
|
||||
* A hash object, whose keys are the names of the rows to refresh (they
|
||||
* will receive the 'ajax-new-content' effect on the server side), and
|
||||
* whose values are the DOM element in the row that should get an Ajax
|
||||
* throbber.
|
||||
*/
|
||||
AJAXRefreshRows(rows) {
|
||||
// Separate keys and values.
|
||||
const rowNames = [];
|
||||
const ajaxElements = [];
|
||||
let rowName;
|
||||
for (rowName in rows) {
|
||||
if (rows.hasOwnProperty(rowName)) {
|
||||
rowNames.push(rowName);
|
||||
ajaxElements.push(rows[rowName]);
|
||||
}
|
||||
}
|
||||
|
||||
if (rowNames.length) {
|
||||
// Add a throbber next each of the ajaxElements.
|
||||
$(ajaxElements).after('<div class="ajax-progress ajax-progress-throbber"><div class="throbber"> </div></div>');
|
||||
|
||||
// Fire the Ajax update.
|
||||
$('input[name=refresh_rows]').val(rowNames.join(' '));
|
||||
$('input[data-drupal-selector="edit-refresh"]').trigger('mousedown');
|
||||
|
||||
// Disabled elements do not appear in POST ajax data, so we mark the
|
||||
// elements disabled only after firing the request.
|
||||
$(ajaxElements).prop('disabled', true);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Row handlers for the 'Manage display' screen.
|
||||
*
|
||||
* @namespace
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview = {};
|
||||
|
||||
/**
|
||||
* Constructor for a 'field' row handler.
|
||||
*
|
||||
* This handler is used for both fields and 'extra fields' rows.
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @param {HTMLTableRowElement} row
|
||||
* The row DOM element.
|
||||
* @param {object} data
|
||||
* Additional data to be populated in the constructed object.
|
||||
*
|
||||
* @return {Drupal.fieldUIDisplayOverview.field}
|
||||
* The field row handler constructed.
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview.field = function (row, data) {
|
||||
this.row = row;
|
||||
this.name = data.name;
|
||||
this.region = data.region;
|
||||
this.tableDrag = data.tableDrag;
|
||||
this.defaultPlugin = data.defaultPlugin;
|
||||
|
||||
// Attach change listener to the 'plugin type' select.
|
||||
this.$pluginSelect = $(row).find('.field-plugin-type');
|
||||
this.$pluginSelect.on('change', Drupal.fieldUIOverview.onChange);
|
||||
|
||||
// Attach change listener to the 'region' select.
|
||||
this.$regionSelect = $(row).find('select.field-region');
|
||||
this.$regionSelect.on('change', Drupal.fieldUIOverview.onChange);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
Drupal.fieldUIDisplayOverview.field.prototype = {
|
||||
|
||||
/**
|
||||
* Returns the region corresponding to the current form values of the row.
|
||||
*
|
||||
* @return {string}
|
||||
* Either 'hidden' or 'content'.
|
||||
*/
|
||||
getRegion() {
|
||||
return this.$regionSelect.val();
|
||||
},
|
||||
|
||||
/**
|
||||
* Reacts to a row being changed regions.
|
||||
*
|
||||
* This function is called when the row is moved to a different region, as
|
||||
* a
|
||||
* result of either :
|
||||
* - a drag-and-drop action (the row's form elements then probably need to
|
||||
* be updated accordingly)
|
||||
* - user input in one of the form elements watched by the
|
||||
* {@link Drupal.fieldUIOverview.onChange} change listener.
|
||||
*
|
||||
* @param {string} region
|
||||
* The name of the new region for the row.
|
||||
*
|
||||
* @return {object}
|
||||
* A hash object indicating which rows should be Ajax-updated as a result
|
||||
* of the change, in the format expected by
|
||||
* {@link Drupal.fieldUIOverview.AJAXRefreshRows}.
|
||||
*/
|
||||
regionChange(region) {
|
||||
// Replace dashes with underscores.
|
||||
region = region.replace(/-/g, '_');
|
||||
|
||||
// Set the region of the select list.
|
||||
this.$regionSelect.val(region);
|
||||
|
||||
// Restore the formatter back to the default formatter. Pseudo-fields
|
||||
// do not have default formatters, we just return to 'visible' for
|
||||
// those.
|
||||
const value = (typeof this.defaultPlugin !== 'undefined') ? this.defaultPlugin : this.$pluginSelect.find('option').val();
|
||||
|
||||
if (typeof value !== 'undefined') {
|
||||
this.$pluginSelect.val(value);
|
||||
}
|
||||
|
||||
const refreshRows = {};
|
||||
refreshRows[this.name] = this.$pluginSelect.get(0);
|
||||
|
||||
return refreshRows;
|
||||
},
|
||||
};
|
||||
}(jQuery, Drupal, drupalSettings));
|
||||
@@ -7,8 +7,8 @@ package: Core
|
||||
dependencies:
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2017-08-16
|
||||
version: '8.3.7'
|
||||
# Information added by Drupal.org packaging script on 2017-11-03
|
||||
version: '8.4.2'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1502903957
|
||||
datestamp: 1509719929
|
||||
|
||||
@@ -1,55 +1,32 @@
|
||||
/**
|
||||
* @file
|
||||
* Attaches the behaviors for the Field UI module.
|
||||
*/
|
||||
* DO NOT EDIT THIS FILE.
|
||||
* See the following change record for more information,
|
||||
* https://www.drupal.org/node/2815083
|
||||
* @preserve
|
||||
**/
|
||||
|
||||
(function ($, Drupal, drupalSettings) {
|
||||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Adds behaviors to the field storage add form.
|
||||
*/
|
||||
Drupal.behaviors.fieldUIFieldStorageAddForm = {
|
||||
attach: function (context) {
|
||||
attach: function attach(context) {
|
||||
var $form = $(context).find('[data-drupal-selector="field-ui-field-storage-add-form"]').once('field_ui_add');
|
||||
if ($form.length) {
|
||||
// Add a few 'js-form-required' and 'form-required' css classes here.
|
||||
// We can not use the Form API '#required' property because both label
|
||||
// elements for "add new" and "re-use existing" can never be filled and
|
||||
// submitted at the same time. The actual validation will happen
|
||||
// server-side.
|
||||
$form.find(
|
||||
'.js-form-item-label label,' +
|
||||
'.js-form-item-field-name label,' +
|
||||
'.js-form-item-existing-storage-label label')
|
||||
.addClass('js-form-required form-required');
|
||||
$form.find('.js-form-item-label label,' + '.js-form-item-field-name label,' + '.js-form-item-existing-storage-label label').addClass('js-form-required form-required');
|
||||
|
||||
var $newFieldType = $form.find('select[name="new_storage_type"]');
|
||||
var $existingStorageName = $form.find('select[name="existing_storage_name"]');
|
||||
var $existingStorageLabel = $form.find('input[name="existing_storage_label"]');
|
||||
|
||||
// When the user selects a new field type, clear the "existing field"
|
||||
// selection.
|
||||
$newFieldType.on('change', function () {
|
||||
if ($(this).val() !== '') {
|
||||
// Reset the "existing storage name" selection.
|
||||
$existingStorageName.val('').trigger('change');
|
||||
}
|
||||
});
|
||||
|
||||
// When the user selects an existing storage name, clear the "new field
|
||||
// type" selection and populate the 'existing_storage_label' element.
|
||||
$existingStorageName.on('change', function () {
|
||||
var value = $(this).val();
|
||||
if (value !== '') {
|
||||
// Reset the "new field type" selection.
|
||||
$newFieldType.val('').trigger('change');
|
||||
|
||||
// Pre-populate the "existing storage label" element.
|
||||
if (typeof drupalSettings.existingFieldLabels[value] !== 'undefined') {
|
||||
$existingStorageLabel.val(drupalSettings.existingFieldLabels[value]);
|
||||
}
|
||||
@@ -59,68 +36,33 @@
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @type {Drupal~behavior}
|
||||
*
|
||||
* @prop {Drupal~behaviorAttach} attach
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @see Drupal.fieldUIOverview.attach
|
||||
*/
|
||||
Drupal.behaviors.fieldUIDisplayOverview = {
|
||||
attach: function (context, settings) {
|
||||
attach: function attach(context, settings) {
|
||||
$(context).find('table#field-display-overview').once('field-display-overview').each(function () {
|
||||
Drupal.fieldUIOverview.attach(this, settings.fieldUIRowsData, Drupal.fieldUIDisplayOverview);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Namespace for the field UI overview.
|
||||
*
|
||||
* @namespace
|
||||
*/
|
||||
Drupal.fieldUIOverview = {
|
||||
|
||||
/**
|
||||
* Attaches the fieldUIOverview behavior.
|
||||
*
|
||||
* @param {HTMLTableElement} table
|
||||
* The table element for the overview.
|
||||
* @param {object} rowsData
|
||||
* The data of the rows in the table.
|
||||
* @param {object} rowHandlers
|
||||
* Handlers to be added to the rows.
|
||||
*/
|
||||
attach: function (table, rowsData, rowHandlers) {
|
||||
attach: function attach(table, rowsData, rowHandlers) {
|
||||
var tableDrag = Drupal.tableDrag[table.id];
|
||||
|
||||
// Add custom tabledrag callbacks.
|
||||
tableDrag.onDrop = this.onDrop;
|
||||
tableDrag.row.prototype.onSwap = this.onSwap;
|
||||
|
||||
// Create row handlers.
|
||||
$(table).find('tr.draggable').each(function () {
|
||||
// Extract server-side data for the row.
|
||||
var row = this;
|
||||
if (row.id in rowsData) {
|
||||
var data = rowsData[row.id];
|
||||
data.tableDrag = tableDrag;
|
||||
|
||||
// Create the row handler, make it accessible from the DOM row
|
||||
// element.
|
||||
var rowHandler = new rowHandlers[data.rowHandler](row, data);
|
||||
$(row).data('fieldUIRowHandler', rowHandler);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Event handler to be attached to form inputs triggering a region change.
|
||||
*/
|
||||
onChange: function () {
|
||||
onChange: function onChange() {
|
||||
var $trigger = $(this);
|
||||
var $row = $trigger.closest('tr');
|
||||
var rowHandler = $row.data('fieldUIRowHandler');
|
||||
@@ -128,25 +70,18 @@
|
||||
var refreshRows = {};
|
||||
refreshRows[rowHandler.name] = $trigger.get(0);
|
||||
|
||||
// Handle region change.
|
||||
var region = rowHandler.getRegion();
|
||||
if (region !== rowHandler.region) {
|
||||
// Remove parenting.
|
||||
$row.find('select.js-field-parent').val('');
|
||||
// Let the row handler deal with the region change.
|
||||
|
||||
$.extend(refreshRows, rowHandler.regionChange(region));
|
||||
// Update the row region.
|
||||
|
||||
rowHandler.region = region;
|
||||
}
|
||||
|
||||
// Ajax-update the rows.
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
},
|
||||
|
||||
/**
|
||||
* Lets row handlers react when a row is dropped into a new region.
|
||||
*/
|
||||
onDrop: function () {
|
||||
onDrop: function onDrop() {
|
||||
var dragObject = this;
|
||||
var row = dragObject.rowObject.element;
|
||||
var $row = $(row);
|
||||
@@ -156,66 +91,36 @@
|
||||
var region = regionRow.className.replace(/([^ ]+[ ]+)*region-([^ ]+)-message([ ]+[^ ]+)*/, '$2');
|
||||
|
||||
if (region !== rowHandler.region) {
|
||||
// Let the row handler deal with the region change.
|
||||
var refreshRows = rowHandler.regionChange(region);
|
||||
// Update the row region.
|
||||
|
||||
rowHandler.region = region;
|
||||
// Ajax-update the rows.
|
||||
|
||||
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Refreshes placeholder rows in empty regions while a row is being dragged.
|
||||
*
|
||||
* Copied from block.js.
|
||||
*
|
||||
* @param {HTMLElement} draggedRow
|
||||
* The tableDrag rowObject for the row being dragged.
|
||||
*/
|
||||
onSwap: function (draggedRow) {
|
||||
onSwap: function onSwap(draggedRow) {
|
||||
var rowObject = this;
|
||||
$(rowObject.table).find('tr.region-message').each(function () {
|
||||
var $this = $(this);
|
||||
// If the dragged row is in this region, but above the message row, swap
|
||||
// it down one space.
|
||||
|
||||
if ($this.prev('tr').get(0) === rowObject.group[rowObject.group.length - 1]) {
|
||||
// Prevent a recursion problem when using the keyboard to move rows
|
||||
// up.
|
||||
if ((rowObject.method !== 'keyboard' || rowObject.direction === 'down')) {
|
||||
if (rowObject.method !== 'keyboard' || rowObject.direction === 'down') {
|
||||
rowObject.swap('after', this);
|
||||
}
|
||||
}
|
||||
// This region has become empty.
|
||||
|
||||
if ($this.next('tr').is(':not(.draggable)') || $this.next('tr').length === 0) {
|
||||
$this.removeClass('region-populated').addClass('region-empty');
|
||||
}
|
||||
// This region has become populated.
|
||||
else if ($this.is('.region-empty')) {
|
||||
$this.removeClass('region-empty').addClass('region-populated');
|
||||
}
|
||||
} else if ($this.is('.region-empty')) {
|
||||
$this.removeClass('region-empty').addClass('region-populated');
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Triggers Ajax refresh of selected rows.
|
||||
*
|
||||
* The 'format type' selects can trigger a series of changes in child rows.
|
||||
* The #ajax behavior is therefore not attached directly to the selects, but
|
||||
* triggered manually through a hidden #ajax 'Refresh' button.
|
||||
*
|
||||
* @param {object} rows
|
||||
* A hash object, whose keys are the names of the rows to refresh (they
|
||||
* will receive the 'ajax-new-content' effect on the server side), and
|
||||
* whose values are the DOM element in the row that should get an Ajax
|
||||
* throbber.
|
||||
*/
|
||||
AJAXRefreshRows: function (rows) {
|
||||
// Separate keys and values.
|
||||
AJAXRefreshRows: function AJAXRefreshRows(rows) {
|
||||
var rowNames = [];
|
||||
var ajaxElements = [];
|
||||
var rowName;
|
||||
var rowName = void 0;
|
||||
for (rowName in rows) {
|
||||
if (rows.hasOwnProperty(rowName)) {
|
||||
rowNames.push(rowName);
|
||||
@@ -224,42 +129,18 @@
|
||||
}
|
||||
|
||||
if (rowNames.length) {
|
||||
// Add a throbber next each of the ajaxElements.
|
||||
$(ajaxElements).after('<div class="ajax-progress ajax-progress-throbber"><div class="throbber"> </div></div>');
|
||||
|
||||
// Fire the Ajax update.
|
||||
$('input[name=refresh_rows]').val(rowNames.join(' '));
|
||||
$('input[data-drupal-selector="edit-refresh"]').trigger('mousedown');
|
||||
|
||||
// Disabled elements do not appear in POST ajax data, so we mark the
|
||||
// elements disabled only after firing the request.
|
||||
$(ajaxElements).prop('disabled', true);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Row handlers for the 'Manage display' screen.
|
||||
*
|
||||
* @namespace
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview = {};
|
||||
|
||||
/**
|
||||
* Constructor for a 'field' row handler.
|
||||
*
|
||||
* This handler is used for both fields and 'extra fields' rows.
|
||||
*
|
||||
* @constructor
|
||||
*
|
||||
* @param {HTMLTableRowElement} row
|
||||
* The row DOM element.
|
||||
* @param {object} data
|
||||
* Additional data to be populated in the constructed object.
|
||||
*
|
||||
* @return {Drupal.fieldUIDisplayOverview.field}
|
||||
* The field row handler constructed.
|
||||
*/
|
||||
Drupal.fieldUIDisplayOverview.field = function (row, data) {
|
||||
this.row = row;
|
||||
this.name = data.name;
|
||||
@@ -267,11 +148,9 @@
|
||||
this.tableDrag = data.tableDrag;
|
||||
this.defaultPlugin = data.defaultPlugin;
|
||||
|
||||
// Attach change listener to the 'plugin type' select.
|
||||
this.$pluginSelect = $(row).find('.field-plugin-type');
|
||||
this.$pluginSelect.on('change', Drupal.fieldUIOverview.onChange);
|
||||
|
||||
// Attach change listener to the 'region' select.
|
||||
this.$regionSelect = $(row).find('select.field-region');
|
||||
this.$regionSelect.on('change', Drupal.fieldUIOverview.onChange);
|
||||
|
||||
@@ -279,47 +158,15 @@
|
||||
};
|
||||
|
||||
Drupal.fieldUIDisplayOverview.field.prototype = {
|
||||
|
||||
/**
|
||||
* Returns the region corresponding to the current form values of the row.
|
||||
*
|
||||
* @return {string}
|
||||
* Either 'hidden' or 'content'.
|
||||
*/
|
||||
getRegion: function () {
|
||||
getRegion: function getRegion() {
|
||||
return this.$regionSelect.val();
|
||||
},
|
||||
|
||||
/**
|
||||
* Reacts to a row being changed regions.
|
||||
*
|
||||
* This function is called when the row is moved to a different region, as
|
||||
* a
|
||||
* result of either :
|
||||
* - a drag-and-drop action (the row's form elements then probably need to
|
||||
* be updated accordingly)
|
||||
* - user input in one of the form elements watched by the
|
||||
* {@link Drupal.fieldUIOverview.onChange} change listener.
|
||||
*
|
||||
* @param {string} region
|
||||
* The name of the new region for the row.
|
||||
*
|
||||
* @return {object}
|
||||
* A hash object indicating which rows should be Ajax-updated as a result
|
||||
* of the change, in the format expected by
|
||||
* {@link Drupal.fieldUIOverview.AJAXRefreshRows}.
|
||||
*/
|
||||
regionChange: function (region) {
|
||||
// Replace dashes with underscores.
|
||||
regionChange: function regionChange(region) {
|
||||
region = region.replace(/-/g, '_');
|
||||
|
||||
// Set the region of the select list.
|
||||
this.$regionSelect.val(region);
|
||||
|
||||
// Restore the formatter back to the default formatter. Pseudo-fields
|
||||
// do not have default formatters, we just return to 'visible' for
|
||||
// those.
|
||||
var value = (typeof this.defaultPlugin !== 'undefined') ? this.defaultPlugin : this.$pluginSelect.find('option').val();
|
||||
var value = typeof this.defaultPlugin !== 'undefined' ? this.defaultPlugin : this.$pluginSelect.find('option').val();
|
||||
|
||||
if (typeof value !== 'undefined') {
|
||||
this.$pluginSelect.val(value);
|
||||
@@ -331,5 +178,4 @@
|
||||
return refreshRows;
|
||||
}
|
||||
};
|
||||
|
||||
})(jQuery, Drupal, drupalSettings);
|
||||
})(jQuery, Drupal, drupalSettings);
|
||||
@@ -125,7 +125,7 @@ abstract class EntityDisplayFormBase extends EntityForm {
|
||||
*/
|
||||
protected function getFieldDefinitions() {
|
||||
$context = $this->displayContext;
|
||||
return array_filter($this->entityManager->getFieldDefinitions($this->entity->getTargetEntityTypeId(), $this->entity->getTargetBundle()), function(FieldDefinitionInterface $field_definition) use ($context) {
|
||||
return array_filter($this->entityManager->getFieldDefinitions($this->entity->getTargetEntityTypeId(), $this->entity->getTargetBundle()), function (FieldDefinitionInterface $field_definition) use ($context) {
|
||||
return $field_definition->isDisplayConfigurable($context);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -89,46 +89,73 @@ class FieldStorageConfigEditForm extends EntityForm {
|
||||
$item = $items->first() ?: $items->appendItem();
|
||||
$form['settings'] += $item->storageSettingsForm($form, $form_state, $this->entity->hasData());
|
||||
|
||||
// Build the configurable field values.
|
||||
$cardinality = $this->entity->getCardinality();
|
||||
$form['cardinality_container'] = [
|
||||
// Add the cardinality sub-form.
|
||||
$form['cardinality_container'] = $this->getCardinalityForm();
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Builds the cardinality form.
|
||||
*
|
||||
* @return array
|
||||
* The cardinality form render array.
|
||||
*/
|
||||
protected function getCardinalityForm() {
|
||||
$form = [
|
||||
// Reset #parents so the additional container does not appear.
|
||||
'#parents' => [],
|
||||
'#type' => 'fieldset',
|
||||
'#title' => $this->t('Allowed number of values'),
|
||||
'#attributes' => ['class' => [
|
||||
'container-inline',
|
||||
'fieldgroup',
|
||||
'form-composite'
|
||||
]],
|
||||
];
|
||||
$form['cardinality_container']['cardinality'] = [
|
||||
'#type' => 'select',
|
||||
'#title' => $this->t('Allowed number of values'),
|
||||
'#title_display' => 'invisible',
|
||||
'#options' => [
|
||||
'number' => $this->t('Limited'),
|
||||
FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED => $this->t('Unlimited'),
|
||||
],
|
||||
'#default_value' => ($cardinality == FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED) ? FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED : 'number',
|
||||
];
|
||||
$form['cardinality_container']['cardinality_number'] = [
|
||||
'#type' => 'number',
|
||||
'#default_value' => $cardinality != FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED ? $cardinality : 1,
|
||||
'#min' => 1,
|
||||
'#title' => $this->t('Limit'),
|
||||
'#title_display' => 'invisible',
|
||||
'#size' => 2,
|
||||
'#states' => [
|
||||
'visible' => [
|
||||
':input[name="cardinality"]' => ['value' => 'number'],
|
||||
],
|
||||
'disabled' => [
|
||||
':input[name="cardinality"]' => ['value' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED],
|
||||
'#attributes' => [
|
||||
'class' => [
|
||||
'container-inline',
|
||||
'fieldgroup',
|
||||
'form-composite',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
if ($enforced_cardinality = $this->getEnforcedCardinality()) {
|
||||
if ($enforced_cardinality === FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED) {
|
||||
$markup = $this->t("This field cardinality is set to unlimited and cannot be configured.");
|
||||
}
|
||||
else {
|
||||
$markup = $this->t("This field cardinality is set to @cardinality and cannot be configured.", ['@cardinality' => $enforced_cardinality]);
|
||||
}
|
||||
$form['cardinality'] = ['#markup' => $markup];
|
||||
}
|
||||
else {
|
||||
$form['#element_validate'][] = '::validateCardinality';
|
||||
$cardinality = $this->entity->getCardinality();
|
||||
$form['cardinality'] = [
|
||||
'#type' => 'select',
|
||||
'#title' => $this->t('Allowed number of values'),
|
||||
'#title_display' => 'invisible',
|
||||
'#options' => [
|
||||
'number' => $this->t('Limited'),
|
||||
FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED => $this->t('Unlimited'),
|
||||
],
|
||||
'#default_value' => ($cardinality == FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED) ? FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED : 'number',
|
||||
];
|
||||
$form['cardinality_number'] = [
|
||||
'#type' => 'number',
|
||||
'#default_value' => $cardinality != FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED ? $cardinality : 1,
|
||||
'#min' => 1,
|
||||
'#title' => $this->t('Limit'),
|
||||
'#title_display' => 'invisible',
|
||||
'#size' => 2,
|
||||
'#states' => [
|
||||
'visible' => [
|
||||
':input[name="cardinality"]' => ['value' => 'number'],
|
||||
],
|
||||
'disabled' => [
|
||||
':input[name="cardinality"]' => ['value' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED],
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
@@ -143,16 +170,19 @@ class FieldStorageConfigEditForm extends EntityForm {
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
* Validates the cardinality.
|
||||
*
|
||||
* @param array $element
|
||||
* The cardinality form render array.
|
||||
* @param \Drupal\Core\Form\FormStateInterface $form_state
|
||||
* The form state.
|
||||
*/
|
||||
public function validateForm(array &$form, FormStateInterface $form_state) {
|
||||
parent::validateForm($form, $form_state);
|
||||
|
||||
public function validateCardinality(array &$element, FormStateInterface $form_state) {
|
||||
$field_storage_definitions = \Drupal::service('entity_field.manager')->getFieldStorageDefinitions($this->entity->getTargetEntityTypeId());
|
||||
|
||||
// Validate field cardinality.
|
||||
if ($form_state->getValue('cardinality') === 'number' && !$form_state->getValue('cardinality_number')) {
|
||||
$form_state->setErrorByName('cardinality_number', $this->t('Number of values is required.'));
|
||||
$form_state->setError($element['cardinality_number'], $this->t('Number of values is required.'));
|
||||
}
|
||||
// If a specific cardinality is used, validate that there are no entities
|
||||
// with a higher delta.
|
||||
@@ -166,7 +196,7 @@ class FieldStorageConfigEditForm extends EntityForm {
|
||||
->count()
|
||||
->execute();
|
||||
if ($entities_with_higher_delta) {
|
||||
$form_state->setErrorByName('cardinality_number', $this->formatPlural($entities_with_higher_delta, 'There is @count entity with @delta or more values in this field.', 'There are @count entities with @delta or more values in this field.', ['@delta' => $form_state->getValue('cardinality') + 1]));
|
||||
$form_state->setError($element['cardinality_number'], $this->formatPlural($entities_with_higher_delta, 'There is @count entity with @delta or more values in this field.', 'There are @count entities with @delta or more values in this field.', ['@delta' => $form_state->getValue('cardinality') + 1]));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -176,7 +206,7 @@ class FieldStorageConfigEditForm extends EntityForm {
|
||||
*/
|
||||
public function buildEntity(array $form, FormStateInterface $form_state) {
|
||||
// Save field cardinality.
|
||||
if ($form_state->getValue('cardinality') === 'number' && $form_state->getValue('cardinality_number')) {
|
||||
if (!$this->getEnforcedCardinality() && $form_state->getValue('cardinality') === 'number' && $form_state->getValue('cardinality_number')) {
|
||||
$form_state->setValue('cardinality', $form_state->getValue('cardinality_number'));
|
||||
}
|
||||
|
||||
@@ -205,4 +235,19 @@ class FieldStorageConfigEditForm extends EntityForm {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the cardinality enforced by the field type.
|
||||
*
|
||||
* Some field types choose to enforce a fixed cardinality. This method
|
||||
* returns that cardinality or NULL if no cardinality has been enforced.
|
||||
*
|
||||
* @return int|null
|
||||
*/
|
||||
protected function getEnforcedCardinality() {
|
||||
/** @var \Drupal\Core\Field\FieldTypePluginManager $field_type_manager */
|
||||
$field_type_manager = \Drupal::service('plugin.manager.field.field_type');
|
||||
$definition = $field_type_manager->getDefinition($this->entity->getType());
|
||||
return isset($definition['cardinality']) ? $definition['cardinality'] : NULL;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ namespace Drupal\field_ui\Tests;
|
||||
use Drupal\field\Entity\FieldConfig;
|
||||
use Drupal\field\Entity\FieldStorageConfig;
|
||||
use Drupal\simpletest\WebTestBase;
|
||||
use Drupal\views\Entity\View;
|
||||
use Drupal\views\Tests\ViewTestData;
|
||||
|
||||
/**
|
||||
@@ -74,6 +75,13 @@ class FieldUIDeleteTest extends WebTestBase {
|
||||
\Drupal::service('module_installer')->install(['views']);
|
||||
ViewTestData::createTestViews(get_class($this), ['field_test_views']);
|
||||
|
||||
$view = View::load('test_view_field_delete');
|
||||
$this->assertNotNull($view);
|
||||
$this->assertTrue($view->status());
|
||||
// Test that the View depends on the field.
|
||||
$dependencies = $view->getDependencies() + ['config' => []];
|
||||
$this->assertTrue(in_array("field.storage.node.$field_name", $dependencies['config']));
|
||||
|
||||
// Check the config dependencies of the first field, the field storage must
|
||||
// not be shown as being deleted yet.
|
||||
$this->drupalGet("$bundle_path1/fields/node.$type_name1.$field_name/delete");
|
||||
@@ -91,13 +99,13 @@ class FieldUIDeleteTest extends WebTestBase {
|
||||
|
||||
// Check the config dependencies of the first field.
|
||||
$this->drupalGet("$bundle_path2/fields/node.$type_name2.$field_name/delete");
|
||||
$this->assertText(t('The listed configuration will be deleted.'));
|
||||
$this->assertText(t('The listed configuration will be updated.'));
|
||||
$this->assertText(t('View'));
|
||||
$this->assertText('test_view_field_delete');
|
||||
|
||||
$xml = $this->cssSelect('#edit-entity-deletes');
|
||||
// Remove the wrapping HTML.
|
||||
$this->assertIdentical(FALSE, strpos($xml[0]->asXml(), $field_label), 'The currently being deleted field is not shown in the entity deletions.');
|
||||
// Test that nothing is scheduled for deletion.
|
||||
$this->assertFalse(isset($xml[0]), 'The field currently being deleted is not shown in the entity deletions.');
|
||||
|
||||
// Delete the second field.
|
||||
$this->fieldUIDeleteField($bundle_path2, "node.$type_name2.$field_name", $field_label, $type_name2);
|
||||
@@ -106,6 +114,14 @@ class FieldUIDeleteTest extends WebTestBase {
|
||||
$this->assertNull(FieldConfig::loadByName('node', $type_name2, $field_name), 'Field was deleted.');
|
||||
// Check that the field storage was deleted too.
|
||||
$this->assertNull(FieldStorageConfig::loadByName('node', $field_name), 'Field storage was deleted.');
|
||||
|
||||
// Test that the View isn't deleted and has been disabled.
|
||||
$view = View::load('test_view_field_delete');
|
||||
$this->assertNotNull($view);
|
||||
$this->assertFalse($view->status());
|
||||
// Test that the View no longer depends on the deleted field.
|
||||
$dependencies = $view->getDependencies() + ['config' => []];
|
||||
$this->assertFalse(in_array("field.storage.node.$field_name", $dependencies['config']));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ class ManageDisplayTest extends WebTestBase {
|
||||
|
||||
// Check whether formatter weights are respected.
|
||||
$result = $this->xpath('//select[@id=:id]/option', [':id' => 'edit-fields-field-test-type']);
|
||||
$options = array_map(function($item) {
|
||||
$options = array_map(function ($item) {
|
||||
return (string) $item->attributes()->value[0];
|
||||
}, $result);
|
||||
$expected_options = [
|
||||
@@ -247,7 +247,7 @@ class ManageDisplayTest extends WebTestBase {
|
||||
|
||||
// Check whether widget weights are respected.
|
||||
$result = $this->xpath('//select[@id=:id]/option', [':id' => 'edit-fields-field-test-type']);
|
||||
$options = array_map(function($item) {
|
||||
$options = array_map(function ($item) {
|
||||
return (string) $item->attributes()->value[0];
|
||||
}, $result);
|
||||
$expected_options = [
|
||||
|
||||
@@ -5,8 +5,8 @@ description: 'Support module for Field UI tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
|
||||
# Information added by Drupal.org packaging script on 2017-08-16
|
||||
version: '8.3.7'
|
||||
# Information added by Drupal.org packaging script on 2017-11-03
|
||||
version: '8.4.2'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1502903957
|
||||
datestamp: 1509719929
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
|
||||
namespace Drupal\Tests\field_ui\Functional;
|
||||
|
||||
use Drupal\Core\Entity\Entity\EntityFormMode;
|
||||
use Drupal\Core\Entity\Entity\EntityViewMode;
|
||||
use Drupal\Core\Url;
|
||||
use Drupal\Tests\BrowserTestBase;
|
||||
|
||||
/**
|
||||
@@ -68,6 +71,14 @@ class EntityDisplayModeTest extends BrowserTestBase {
|
||||
// Test editing the view mode.
|
||||
$this->drupalGet('admin/structure/display-modes/view/manage/entity_test.' . $edit['id']);
|
||||
|
||||
// Test that the link templates added by field_ui_entity_type_build() are
|
||||
// generating valid routes.
|
||||
$view_mode = EntityViewMode::load('entity_test.' . $edit['id']);
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_view_mode.collection')->toString(), $view_mode->toUrl('collection')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_view_mode.add_form', ['entity_type_id' => $view_mode->getTargetType()])->toString(), $view_mode->toUrl('add-form')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_view_mode.edit_form', ['entity_view_mode' => $view_mode->id()])->toString(), $view_mode->toUrl('edit-form')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_view_mode.delete_form', ['entity_view_mode' => $view_mode->id()])->toString(), $view_mode->toUrl('delete-form')->toString());
|
||||
|
||||
// Test deleting the view mode.
|
||||
$this->clickLink(t('Delete'));
|
||||
$this->assertRaw(t('Are you sure you want to delete the view mode %label?', ['%label' => $edit['label']]));
|
||||
@@ -114,6 +125,14 @@ class EntityDisplayModeTest extends BrowserTestBase {
|
||||
// Test editing the form mode.
|
||||
$this->drupalGet('admin/structure/display-modes/form/manage/entity_test.' . $edit['id']);
|
||||
|
||||
// Test that the link templates added by field_ui_entity_type_build() are
|
||||
// generating valid routes.
|
||||
$form_mode = EntityFormMode::load('entity_test.' . $edit['id']);
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_form_mode.collection')->toString(), $form_mode->toUrl('collection')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_form_mode.add_form', ['entity_type_id' => $form_mode->getTargetType()])->toString(), $form_mode->toUrl('add-form')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_form_mode.edit_form', ['entity_form_mode' => $form_mode->id()])->toString(), $form_mode->toUrl('edit-form')->toString());
|
||||
$this->assertEquals(Url::fromRoute('entity.entity_form_mode.delete_form', ['entity_form_mode' => $form_mode->id()])->toString(), $form_mode->toUrl('delete-form')->toString());
|
||||
|
||||
// Test deleting the form mode.
|
||||
$this->clickLink(t('Delete'));
|
||||
$this->assertRaw(t('Are you sure you want to delete the form mode %label?', ['%label' => $edit['label']]));
|
||||
|
||||
@@ -25,9 +25,9 @@ class EntityDisplayTest extends JavascriptTestBase {
|
||||
|
||||
$entity = EntityTest::create([
|
||||
'name' => 'The name for this entity',
|
||||
'field_test_text' => [[
|
||||
'value' => 'The field test text value',
|
||||
]],
|
||||
'field_test_text' => [
|
||||
['value' => 'The field test text value'],
|
||||
],
|
||||
]);
|
||||
$entity->save();
|
||||
$this->drupalLogin($this->drupalCreateUser([
|
||||
|
||||
@@ -129,7 +129,7 @@ class EntityDisplayTest extends KernelTestBase {
|
||||
$display->save();
|
||||
$components = array_keys($display->getComponents());
|
||||
// The name field is not configurable so will be added automatically.
|
||||
$expected = [ 0 => 'component_1', 1 => 'component_2', 2 => 'component_3', 'name'];
|
||||
$expected = [0 => 'component_1', 1 => 'component_2', 2 => 'component_3', 'name'];
|
||||
$this->assertIdentical($components, $expected);
|
||||
}
|
||||
|
||||
@@ -150,7 +150,7 @@ class EntityDisplayTest extends KernelTestBase {
|
||||
$display = entity_get_display('entity_test', 'entity_test', 'default');
|
||||
$this->assertFalse($display->isNew());
|
||||
$this->assertEqual($display->id(), 'entity_test.entity_test.default');
|
||||
$this->assertEqual($display->getComponent('component_1'), [ 'weight' => 10, 'settings' => [], 'third_party_settings' => [], 'region' => 'content']);
|
||||
$this->assertEqual($display->getComponent('component_1'), ['weight' => 10, 'settings' => [], 'third_party_settings' => [], 'region' => 'content']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user