Skip to content
Snippets Groups Projects
Commit a3930399 authored by catch's avatar catch
Browse files

Issue #2567801 by Wim Leers, lauriii: Deprecate...

Issue #2567801 by Wim Leers, lauriii: Deprecate core/modules/editor/js/editor.admin.js JS APIs in Drupal 10, for removal in Drupal 11
parent 4da21f1a
No related branches found
No related tags found
29 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!9470[10.3.x-only-DO-NOT-MERGE]: #3331771 Fix file_get_contents(): Passing null to parameter,!8540Issue #3457061: Bootstrap Modal dialog Not closing after 10.3.0 Update,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8373Issue #3427374 by danflanagan8, Vighneshh: taxonomy_tid ViewsArgumentDefault...,!7526Expose roles in response,!7352Draft: Resolve #3203489 "Set filename as",!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2794Issue #3100732: Allow specifying `meta` data on JSON:API objects,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #119950 canceled
Pipeline: drupal

#119955

    ......@@ -6,6 +6,7 @@ drupal.editor.admin:
    - core/jquery
    - core/once
    - core/drupal
    deprecated: The %library_id% asset library is deprecated in Drupal 10.3.0 and will be removed in Drupal 11.0.0. See https://www.drupal.org/node/3422372
    drupal.editor:
    version: VERSION
    ......
    ......@@ -149,11 +149,6 @@ function editor_form_filter_format_form_alter(&$form, FormStateInterface $form_s
    '#weight' => -8,
    '#type' => 'container',
    '#id' => 'editor-settings-wrapper',
    '#attached' => [
    'library' => [
    'editor/drupal.editor.admin',
    ],
    ],
    ];
    // Add editor-specific validation and submit handlers.
    ......
    ......@@ -27,6 +27,10 @@
    * @fires event:drupalEditorFeatureAdded
    */
    addedFeature(feature) {
    Drupal.deprecationError({
    message:
    'Drupal.editorConfiguration.addedFeature is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    $(document).trigger('drupalEditorFeatureAdded', feature);
    },
    ......@@ -43,6 +47,10 @@
    * @fires event:drupalEditorFeatureRemoved
    */
    removedFeature(feature) {
    Drupal.deprecationError({
    message:
    'Drupal.editorConfiguration.removedFeature is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    $(document).trigger('drupalEditorFeatureRemoved', feature);
    },
    ......@@ -62,6 +70,10 @@
    * @fires event:drupalEditorFeatureModified
    */
    modifiedFeature(feature) {
    Drupal.deprecationError({
    message:
    'Drupal.editorConfiguration.modifiedFeature is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    $(document).trigger('drupalEditorFeatureModified', feature);
    },
    ......@@ -657,6 +669,11 @@
    return true;
    }
    Drupal.deprecationError({
    message:
    'Drupal.editorConfiguration.featureIsAllowedByFilters is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    // If any filter's current status forbids the editor feature, return
    // false.
    Drupal.filterConfiguration.update();
    ......@@ -702,6 +719,11 @@
    * @see Drupal.EditorFeature
    */
    Drupal.EditorFeatureHTMLRule = function () {
    Drupal.deprecationError({
    message:
    'Drupal.EditorFeatureHTMLRule is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    /**
    *
    * @type {Object}
    ......@@ -768,6 +790,11 @@
    * @see Drupal.EditorFeatureHTMLRule
    */
    Drupal.EditorFeature = function (name) {
    Drupal.deprecationError({
    message:
    'Drupal.EditorFeature is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    this.name = name;
    this.rules = [];
    };
    ......@@ -779,6 +806,11 @@
    * A text editor feature HTML rule.
    */
    Drupal.EditorFeature.prototype.addHTMLRule = function (rule) {
    Drupal.deprecationError({
    message:
    'Drupal.EditorFeature.prototype.addHTMLRule is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    this.rules.push(rule);
    };
    ......@@ -806,6 +838,11 @@
    * @see Drupal.FilterHTMLRule
    */
    Drupal.FilterStatus = function (name) {
    Drupal.deprecationError({
    message:
    'Drupal.FilterStatus is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    /**
    *
    * @type {string}
    ......@@ -832,6 +869,11 @@
    * A text filter HTML rule.
    */
    Drupal.FilterStatus.prototype.addHTMLRule = function (rule) {
    Drupal.deprecationError({
    message:
    'Drupal.FilterStatus.prototype.addHTMLRule is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    this.rules.push(rule);
    };
    ......@@ -911,6 +953,11 @@
    * @see Drupal.FilterStatus
    */
    Drupal.FilterHTMLRule = function () {
    Drupal.deprecationError({
    message:
    'Drupal.FilterHTMLRule is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    // Allow or forbid tags.
    this.tags = [];
    this.allow = null;
    ......@@ -926,6 +973,11 @@
    };
    Drupal.FilterHTMLRule.prototype.clone = function () {
    Drupal.deprecationError({
    message:
    'Drupal.FilterHTMLRule.prototype.clone is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    const clone = new Drupal.FilterHTMLRule();
    clone.tags = this.tags.slice(0);
    clone.allow = this.allow;
    ......@@ -984,6 +1036,11 @@
    * up-to-date.
    */
    update() {
    Drupal.deprecationError({
    message:
    'Drupal.filterConfiguration.update is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    Object.keys(Drupal.filterConfiguration.statuses || {}).forEach(
    (filterID) => {
    // Update status.
    ......@@ -1013,6 +1070,11 @@
    */
    Drupal.behaviors.initializeFilterConfiguration = {
    attach(context, settings) {
    Drupal.deprecationError({
    message:
    'Drupal.behaviors.initializeFilterConfiguration is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    once(
    'filter-editor-status',
    '#filters-status-wrapper input.form-checkbox',
    ......
    ......@@ -18,6 +18,10 @@
    * An array of filter rules.
    */
    getRules() {
    Drupal.deprecationError({
    message:
    'Drupal.filterConfiguration.liveSettingParsers.filter_html.getRules() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    const currentValue = document.querySelector(
    '#edit-filters-filter-html-settings-allowed-html',
    ).value;
    ......@@ -82,6 +86,11 @@
    newFeatures: {},
    attach(context, settings) {
    Drupal.deprecationError({
    message:
    'Drupal.behaviors.filterFilterHtmlUpdating is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    const that = this;
    once(
    'filter-filter_html-updating',
    ......@@ -393,6 +402,10 @@
    * The corresponding HTML.
    */
    Drupal.theme.filterFilterHTMLUpdateMessage = function (tags) {
    Drupal.deprecationError({
    message:
    'Drupal.theme.filterFilterHTMLUpdateMessage() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3422372.',
    });
    let html = '';
    const tagList =
    Drupal.behaviors.filterFilterHtmlUpdating._generateSetting(tags);
    ......
    ......@@ -15,6 +15,7 @@ drupal.filter.filter_html.admin:
    dependencies:
    - core/jquery
    - core/once
    deprecated: The %library_id% asset library is deprecated in Drupal 10.3.0 and will be removed in Drupal 11.0.0. See https://www.drupal.org/node/3422372
    drupal.filter:
    version: VERSION
    ......
    ......@@ -50,11 +50,6 @@ public function settingsForm(array $form, FormStateInterface $form_state) {
    '#title' => $this->t('Allowed HTML tags'),
    '#default_value' => $this->settings['allowed_html'],
    '#description' => $this->t('A list of HTML tags that can be used. By default only the <em>lang</em> and <em>dir</em> attributes are allowed for all HTML tags. Each HTML tag may have attributes which are treated as allowed attribute names for that HTML tag. Each attribute may allow all values, or only allow specific values. Attribute names or values may be written as a prefix and wildcard like <em>jump-*</em>. JavaScript event attributes, JavaScript URLs, and CSS are always stripped.'),
    '#attached' => [
    'library' => [
    'filter/drupal.filter.filter_html.admin',
    ],
    ],
    ];
    $form['filter_html_help'] = [
    '#type' => 'checkbox',
    ......
    <?php
    declare(strict_types=1);
    namespace Drupal\Tests\filter\FunctionalJavascript;
    use Drupal\filter\Entity\FilterFormat;
    use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
    /**
    * Tests the 'filter_html' plugin javascript functionality.
    *
    * @group filter
    */
    class FilterHtmlTest extends WebDriverTestBase {
    /**
    * {@inheritdoc}
    */
    protected static $modules = ['editor', 'filter'];
    /**
    * {@inheritdoc}
    */
    protected $defaultTheme = 'stark';
    /**
    * Tests restricting HTML to table tags.
    */
    public function testTableTags() {
    FilterFormat::create([
    'format' => 'some_html',
    'name' => 'Some HTML',
    'filters' => [
    'filter_html' => [
    'status' => 1,
    'settings' => [
    'allowed_html' => '<caption> <tbody> <thead> <tfoot> <th> <td> <tr>',
    ],
    ],
    ],
    ])->save();
    $this->drupalLogin($this->drupalCreateUser(['administer filters']));
    $this->drupalGet('admin/config/content/formats/manage/some_html');
    $js_condition = "Drupal.behaviors.filterFilterHtmlUpdating._parseSetting(
    jQuery('#edit-filters-filter-html-settings-allowed-html').val()
    )['td'].tags.length >= 0";
    $this->assertJsCondition($js_condition);
    }
    }
    • catch @catch

      mentioned in commit 3eab4038

      ·

      mentioned in commit 3eab4038

      Toggle commit list
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment