]> git.openstreetmap.org Git - rails.git/commitdiff
Switch between richtext edit/preview using Bootstrap tab panes
authorAnton Khorev <tony29@yandex.ru>
Fri, 7 Jun 2024 14:48:05 +0000 (17:48 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 3 Aug 2024 01:52:41 +0000 (04:52 +0300)
app/assets/javascripts/richtext.js
app/views/shared/_richtext_field.html.erb

index cfba5c923fe2c3ad02394c3b48958ff0b2105d58..259b914de614f6d2762cbd4beb3e07ca7adc0843 100644 (file)
@@ -1,7 +1,4 @@
 $(document).ready(function () {
-  /* Hide the preview panes */
-  $(".richtext_preview").hide();
-
   /*
    * When the text in an edit pane is changed, clear the contents of
    * the associated preview pne so that it will be regenerated when
@@ -11,29 +8,10 @@ $(document).ready(function () {
     $(this).parents(".richtext_container").find(".richtext_preview").empty();
   });
 
-  /* Disable all the edit buttons */
-  $(".richtext_doedit").prop("disabled", true);
-
   /*
-   * Install a click handler to switch to edit mode when the
-   * edit button is pressed.
+   * Install a handler to switch to preview mode
    */
-  $(".richtext_doedit").click(function () {
-    var editor = $(this).parents(".richtext_container").find("textarea");
-    var preview = $(this).parents(".richtext_container").find(".richtext_preview");
-
-    preview.hide();
-    editor.show();
-
-    $(this).parents(".richtext_container").find(".richtext_dopreview").prop("disabled", false).removeClass("active");
-    $(this).prop("disabled", true).addClass("active");
-  });
-
-  /*
-   * Install a click handler to switch to preview mode when the
-   * preview button is pressed.
-   */
-  $(".richtext_dopreview").click(function () {
+  $(".richtext_dopreview").on("show.bs.tab", function () {
     var editor = $(this).parents(".richtext_container").find("textarea");
     var preview = $(this).parents(".richtext_container").find(".richtext_preview");
     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
@@ -49,11 +27,6 @@ $(document).ready(function () {
       });
     }
 
-    editor.hide();
     preview.css("min-height", minHeight + "px");
-    preview.show();
-
-    $(this).parents(".richtext_container").find(".richtext_doedit").prop("disabled", false).removeClass("active");
-    $(this).prop("disabled", true).addClass("active");
   });
 });
index 74d609cd56d3f9096642196ef5fa68be63a31899..23817576276da21b53d39c9ad8c3b3b819092adb 100644 (file)
@@ -2,14 +2,18 @@
   <div id="<%= id %>_content" class="col-sm-8 mb-3 mb-sm-0 richtext_content">
     <ul class="nav nav-tabs mb-3" role="tablist">
       <li class="nav-item">
-        <button type="button" class="nav-link active richtext_doedit"><%= t(".edit") %></button>
+        <button type="button" class="nav-link active" data-bs-toggle="tab" data-bs-target="#<%= id %>_edit"><%= t(".edit") %></button>
       </li>
       <li class="nav-item">
-        <button type="button" class="nav-link richtext_dopreview"><%= t(".preview") %></button>
+        <button type="button" class="nav-link richtext_dopreview" data-bs-toggle="tab" data-bs-target="#<%= id %>_preview"><%= t(".preview") %></button>
       </li>
     </ul>
-    <%= builder.text_area(attribute, options.merge(:wrapper => false, "data-preview-url" => preview_url(:type => type))) %>
-    <div id="<%= id %>_preview" class="richtext_preview richtext text-break"></div>
+    <div class="tab-content">
+      <div id="<%= id %>_edit" class="tab-pane show active">
+        <%= builder.text_area(attribute, options.merge(:wrapper => false, "data-preview-url" => preview_url(:type => type))) %>
+      </div>
+      <div id="<%= id %>_preview" class="tab-pane richtext_preview richtext text-break"></div>
+    </div>
   </div>
   <div id="<%= id %>_help" class="col-sm-4 richtext_help">
     <div class="card bg-body-tertiary h-100">