Mercurial > hg > cmmr2012-drupal-site
diff core/modules/content_translation/content_translation.admin.js @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/modules/content_translation/content_translation.admin.js Thu Jul 05 14:24:15 2018 +0000 @@ -0,0 +1,91 @@ +/** +* 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.contentTranslationDependentOptions = { + attach: function attach(context) { + var $context = $(context); + var options = drupalSettings.contentTranslationDependentOptions; + var $fields = void 0; + + function fieldsChangeHandler($fields, dependentColumns) { + return function (e) { + Drupal.behaviors.contentTranslationDependentOptions.check($fields, dependentColumns, $(e.target)); + }; + } + + if (options && options.dependent_selectors) { + Object.keys(options.dependent_selectors).forEach(function (field) { + $fields = $context.find('input[name^="' + field + '"]'); + var dependentColumns = options.dependent_selectors[field]; + + $fields.on('change', fieldsChangeHandler($fields, dependentColumns)); + Drupal.behaviors.contentTranslationDependentOptions.check($fields, dependentColumns); + }); + } + }, + check: function check($fields, dependentColumns, $changed) { + var $element = $changed; + var column = void 0; + + function filterFieldsList(index, field) { + return $(field).val() === column; + } + + Object.keys(dependentColumns || {}).forEach(function (index) { + column = dependentColumns[index]; + + if (!$changed) { + $element = $fields.filter(filterFieldsList); + } + + if ($element.is('input[value="' + column + '"]:checked')) { + $fields.prop('checked', true).not($element).prop('disabled', true); + } else { + $fields.prop('disabled', false); + } + }); + } + }; + + Drupal.behaviors.contentTranslation = { + attach: function attach(context) { + $(context).find('table .bundle-settings .translatable :input').once('translation-entity-admin-hide').each(function () { + var $input = $(this); + var $bundleSettings = $input.closest('.bundle-settings'); + if (!$input.is(':checked')) { + $bundleSettings.nextUntil('.bundle-settings').hide(); + } else { + $bundleSettings.nextUntil('.bundle-settings', '.field-settings').find('.translatable :input:not(:checked)').closest('.field-settings').nextUntil(':not(.column-settings)').hide(); + } + }); + + $('body').once('translation-entity-admin-bind').on('click', 'table .bundle-settings .translatable :input', function (e) { + var $target = $(e.target); + var $bundleSettings = $target.closest('.bundle-settings'); + var $settings = $bundleSettings.nextUntil('.bundle-settings'); + var $fieldSettings = $settings.filter('.field-settings'); + if ($target.is(':checked')) { + $bundleSettings.find('.operations :input[name$="[language_alterable]"]').prop('checked', true); + $fieldSettings.find('.translatable :input').prop('checked', true); + $settings.show(); + } else { + $settings.hide(); + } + }).on('click', 'table .field-settings .translatable :input', function (e) { + var $target = $(e.target); + var $fieldSettings = $target.closest('.field-settings'); + var $columnSettings = $fieldSettings.nextUntil('.field-settings, .bundle-settings'); + if ($target.is(':checked')) { + $columnSettings.show(); + } else { + $columnSettings.hide(); + } + }); + } + }; +})(jQuery, Drupal, drupalSettings); \ No newline at end of file