Skip to content
Snippets Groups Projects
Commit c225f3b9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2785133 by tedbow, effulgentsia: Simplify OpenOffCanvasDialogCommand

parent 0ea5ff66
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -14,8 +14,10 @@ class OpenOffCanvasDialogCommand extends OpenDialogCommand { ...@@ -14,8 +14,10 @@ class OpenOffCanvasDialogCommand extends OpenDialogCommand {
/** /**
* Constructs an OpenOffCanvasDialogCommand object. * Constructs an OpenOffCanvasDialogCommand object.
* *
* Drupal provides a built-in offcanvas tray for this purpose, so no selector * The off-canvas dialog differs from the normal modal provided by
* needs to be provided. * OpenDialogCommand in that a off-canvas has built in positioning and
* behaviours. Drupal provides a built-in off-canvas tray for this purpose,
* so the selector is hard-coded in the call to the parent constructor.
* *
* @param string $title * @param string $title
* The title of the dialog. * The title of the dialog.
...@@ -46,15 +48,10 @@ public function __construct($title, $content, array $dialog_options = [], $setti ...@@ -46,15 +48,10 @@ public function __construct($title, $content, array $dialog_options = [], $setti
* {@inheritdoc} * {@inheritdoc}
*/ */
public function render() { public function render() {
return [ $build = parent::render();
'command' => 'openDialog', $build['effect'] = 'fade';
'selector' => '#drupal-offcanvas', $build['speed'] = 1000;
'settings' => $this->settings, return $build;
'data' => $this->getRenderedContent(),
'dialogOptions' => $this->dialogOptions,
'effect' => 'fade',
'speed' => 1000,
];
} }
} }
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