Skip to content
Snippets Groups Projects

Issue #3440870: Fixed the floating action button position issue.

Changed the position issue of floating action button issue. Closes #3440870

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
192 192 });
193 193 },
194 194 };
195
196 // Function to clone the float action links at bottom.
197 function duplicateDiv() {
  • I believe that this function should be a Drupal behavior, because it should also work on content that is returned by ajax response.

    Also, is it always good to duplicate the action links? What if the paragraph is not that long, then there will be 2 sets of links very close to each other, or even over each other.

    I suggest, that there should be some setting first of all to enable/disable duplication, and secondly, there should be setting of minimum height of the paragraph/element that requires the duplication, as again, if paragraph is only 1 line, why it would need duplicate sets of action links?

  • Tirupati Singh changed this line in version 4 of the diff

    changed this line in version 4 of the diff

  • Please register or sign in to reply
  • 192 192 });
    193 193 },
    194 194 };
    195
    196 // Function to clone the float action links at bottom.
    197 function duplicateDiv() {
    198 // Get the original float action divs.
    199 const originalDiv = document.getElementsByClassName('common-actions-container');
    200 // Convert div html to a static array.
    201 const divArray = Array.from(originalDiv);
  • 197 function duplicateDiv() {
    198 // Get the original float action divs.
    199 const originalDiv = document.getElementsByClassName('common-actions-container');
    200 // Convert div html to a static array.
    201 const divArray = Array.from(originalDiv);
    202
    203 divArray.forEach(function (div) {
    204 // Clone the div, including its children.
    205 let newDiv = div.cloneNode(true);
    206 newDiv.classList.add('common-actions-bottom-container');
    207 // Insert the cloned div as sibling.
    208 div.parentNode.insertBefore(newDiv, div.nextSibling);
    209 });
    210 }
    211
    212 duplicateDiv();
  • added 1 commit

    • 24f1e015 - Issue #3440870: Added setting for enable/disable additional float action links at bottom.

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • 193 193 },
    194 194 };
    195
    196 /**
    197 * Add callback for enabling additional float action links at bottom.
    198 */
    199 Drupal.behaviors.actionsButtonBottom = {
    200 attach(context, settings) {
    201 const additionalFloatBtn = settings.frontend_editing.additional_float_btn;
    202 const heightSettings = settings.frontend_editing.height_settings;
    203 const actionsElementsBottom = once(
    204 'common-actions-bottom-container',
    205 '.common-actions-container',
    206 context,
    207 );
    208 setTimeout(function () {
  • 192 192 });
    193 193 },
    194 194 };
    195
    196 /**
    197 * Add callback for enabling additional float action links at bottom.
    198 */
    199 Drupal.behaviors.actionsButtonBottom = {
  • 12 12 offset_bottom: 50
    13 13 offset_right: 50
    14 14 offset_left: ''
    15 additional_float_btn: true
  • 53 53 offset_right:
    54 54 type: string
    55 55 label: 'Right Offset'
    56 additional_float_btn:
  • 53 53 offset_right:
    54 54 type: string
    55 55 label: 'Right Offset'
    56 additional_float_btn:
    57 type: boolean
    58 label: 'Enable additional float action links'
    59 additional_float_btn_settings:
  • 53 53 offset_right:
    54 54 type: string
    55 55 label: 'Right Offset'
    56 additional_float_btn:
    57 type: boolean
    58 label: 'Enable additional float action links'
    59 additional_float_btn_settings:
    60 type: mapping
    61 mapping:
    62 height_settings:
  • 53 53 offset_right:
    54 54 type: string
    55 55 label: 'Right Offset'
    56 additional_float_btn:
    57 type: boolean
    58 label: 'Enable additional float action links'
    59 additional_float_btn_settings:
    60 type: mapping
    61 mapping:
    62 height_settings:
    63 type: integer
    64 label: 'Paragraph height'
  • 257 257 'sidebar_width' => $config->get('sidebar_width') ?? 30,
    258 258 'full_width' => $config->get('full_width') ?? 70,
    259 259 ];
    260 $build['frontend_editing']['#attached']['drupalSettings']['frontend_editing'] = [
    261 'additional_float_btn' => $config->get('additional_float_btn') ?? 300,
  • added 1 commit

    • d82bcd38 - Issue #3440870: Updated the float action link additional button configurations.

    Compare with previous version

  • added 1 commit

    • 1f5fa5c1 - Issue #3440870: Fixed additional float actions button for entity reference field.

    Compare with previous version

  • added 1 commit

    • 5f4d311a - Issue #3440870: Move duplicate links to its own library and own JS file

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading