drupal/core/modules/field_ui/field_ui.js

198 lines
6.4 KiB
JavaScript

/**
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/2815083
* @preserve
**/
(function ($, Drupal, drupalSettings) {
Drupal.behaviors.fieldUIFieldStorageAddForm = {
attach(context) {
const form = once('field_ui_add', '[data-drupal-selector="field-ui-field-storage-add-form"]', context);
if (form.length) {
const $form = $(form);
$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"]');
$newFieldType.on('change', function () {
if (this.value !== '') {
if ($existingStorageName.length) {
$existingStorageName[0].value = '';
$existingStorageName.trigger('change');
}
}
});
$existingStorageName.on('change', function () {
const {
value
} = this;
if (value !== '') {
if ($newFieldType.length) {
$newFieldType[0].value = '';
$newFieldType.trigger('change');
}
if (typeof drupalSettings.existingFieldLabels[value] !== 'undefined') {
$existingStorageLabel[0].value = drupalSettings.existingFieldLabels[value];
}
}
});
}
}
};
Drupal.behaviors.fieldUIDisplayOverview = {
attach(context, settings) {
once('field-display-overview', 'table#field-display-overview', context).forEach(overview => {
Drupal.fieldUIOverview.attach(overview, settings.fieldUIRowsData, Drupal.fieldUIDisplayOverview);
});
}
};
Drupal.fieldUIOverview = {
attach(table, rowsData, rowHandlers) {
const tableDrag = Drupal.tableDrag[table.id];
tableDrag.onDrop = this.onDrop;
tableDrag.row.prototype.onSwap = this.onSwap;
$(table).find('tr.draggable').each(function () {
const row = this;
if (row.id in rowsData) {
const data = rowsData[row.id];
data.tableDrag = tableDrag;
const rowHandler = new rowHandlers[data.rowHandler](row, data);
$(row).data('fieldUIRowHandler', rowHandler);
}
});
},
onChange() {
const $trigger = $(this);
const $row = $trigger.closest('tr');
const rowHandler = $row.data('fieldUIRowHandler');
const refreshRows = {};
refreshRows[rowHandler.name] = $trigger.get(0);
const region = rowHandler.getRegion();
if (region !== rowHandler.region) {
const $fieldParent = $row.find('select.js-field-parent');
if ($fieldParent.length) {
$fieldParent[0].value = '';
}
$.extend(refreshRows, rowHandler.regionChange(region));
rowHandler.region = region;
}
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
},
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) {
const refreshRows = rowHandler.regionChange(region);
rowHandler.region = region;
Drupal.fieldUIOverview.AJAXRefreshRows(refreshRows);
}
}
},
onSwap(draggedRow) {
const rowObject = this;
$(rowObject.table).find('tr.region-message').each(function () {
const $this = $(this);
if ($this.prev('tr').get(0) === rowObject.group[rowObject.group.length - 1]) {
if (rowObject.method !== 'keyboard' || rowObject.direction === 'down') {
rowObject.swap('after', this);
}
}
if ($this.next('tr').is(':not(.draggable)') || $this.next('tr').length === 0) {
$this.removeClass('region-populated').addClass('region-empty');
} else if ($this.is('.region-empty')) {
$this.removeClass('region-empty').addClass('region-populated');
}
});
},
AJAXRefreshRows(rows) {
const rowNames = [];
const ajaxElements = [];
Object.keys(rows || {}).forEach(rowName => {
rowNames.push(rowName);
ajaxElements.push(rows[rowName]);
});
if (rowNames.length) {
$(ajaxElements).after(Drupal.theme.ajaxProgressThrobber());
const $refreshRows = $('input[name=refresh_rows]');
if ($refreshRows.length) {
$refreshRows[0].value = rowNames.join(' ');
}
$('input[data-drupal-selector="edit-refresh"]').trigger('mousedown');
$(ajaxElements).prop('disabled', true);
}
}
};
Drupal.fieldUIDisplayOverview = {};
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;
this.$pluginSelect = $(row).find('.field-plugin-type');
this.$pluginSelect.on('change', Drupal.fieldUIOverview.onChange);
this.$regionSelect = $(row).find('select.field-region');
this.$regionSelect.on('change', Drupal.fieldUIOverview.onChange);
return this;
};
Drupal.fieldUIDisplayOverview.field.prototype = {
getRegion() {
if (this.$regionSelect.length) {
return this.$regionSelect[0].value;
}
},
regionChange(region) {
region = region.replace(/-/g, '_');
if (this.$regionSelect.length) {
this.$regionSelect[0].value = region;
}
if (this.region === 'hidden') {
const value = typeof this.defaultPlugin !== 'undefined' ? this.defaultPlugin : this.$pluginSelect.find('option')[0].value;
if (typeof value !== 'undefined') {
if (this.$pluginSelect.length) {
this.$pluginSelect[0].value = value;
}
}
}
const refreshRows = {};
refreshRows[this.name] = this.$pluginSelect.get(0);
return refreshRows;
}
};
})(jQuery, Drupal, drupalSettings);