Issue #3440870: Fixed the floating action button position issue.
Changed the position issue of floating action button issue. Closes #3440870
Merge request reports
Activity
added 1 commit
added 1 commit
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?
changed this line in version 4 of the diff
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); Maybe add here in comment the link to https://developer.mozilla.org/en-US/docs/Web/API/HTMLCollection with explanation why conversion is needed
changed this line in version 4 of the diff
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(); changed this line in version 4 of the diff
added 1 commit
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 () { Sometime the
const parentHeight = originalDiv.closest('.frontend-editing').clientHeight
is returning0
on page load and sometime it is returning the actual height of the element. This is due to height is being calculated before the page has been loaded and duplication of action links is not rendering as theif condition
is not being fulfilled when the height is0
.changed this line in version 8 of the diff
192 192 }); 193 193 }, 194 194 }; 195 196 /** 197 * Add callback for enabling additional float action links at bottom. 198 */ 199 Drupal.behaviors.actionsButtonBottom = { changed this line in version 8 of the diff
12 12 offset_bottom: 50 13 13 offset_right: 50 14 14 offset_left: '' 15 additional_float_btn: true changed this line in version 6 of the diff
53 53 offset_right: 54 54 type: string 55 55 label: 'Right Offset' 56 additional_float_btn: changed this line in version 6 of the diff
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: changed this line in version 6 of the diff
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: changed this line in version 6 of the diff
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' changed this line in version 6 of the diff
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, changed this line in version 6 of the diff
added 1 commit
added 1 commit
added 1 commit
added 1 commit