]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/richtext.js
56aad8c73a2c8642f09d4cc1d6b6f54f5b5a6f4d
[rails.git] / app / assets / javascripts / richtext.js
1 (function () {
2   /*
3    * When the text in an edit pane is changed, clear the contents of
4    * the associated preview pne so that it will be regenerated when
5    * the user next switches to it.
6    */
7   $(document).on("change", ".richtext_container textarea", function () {
8     var container = $(this).closest(".richtext_container");
9
10     container.find(".tab-pane[id$='_preview']").empty();
11   });
12
13   /*
14    * Install a handler to set the minimum preview pane height
15    * when switching away from an edit pane
16    */
17   $(document).on("hide.bs.tab", ".richtext_container button[data-bs-target$='_edit']", function () {
18     var container = $(this).closest(".richtext_container");
19     var editor = container.find("textarea");
20     var preview = container.find(".tab-pane[id$='_preview']");
21     var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
22
23     preview.css("min-height", minHeight + "px");
24   });
25
26   /*
27    * Install a handler to switch to preview mode
28    */
29   $(document).on("show.bs.tab", ".richtext_container button[data-bs-target$='_preview']", function () {
30     var container = $(this).closest(".richtext_container");
31     var editor = container.find("textarea");
32     var preview = container.find(".tab-pane[id$='_preview']");
33
34     if (preview.contents().length === 0) {
35       preview.oneTime(500, "loading", function () {
36         preview.addClass("loading");
37       });
38
39       preview.load(editor.data("previewUrl"), { text: editor.val() }, function () {
40         preview.stopTime("loading");
41         preview.removeClass("loading");
42       });
43     }
44   });
45
46   $(window).on("resize", updateHelp);
47
48   $(document).on("turbo:load", function () {
49     $(".richtext_container textarea").on("invalid", invalidTextareaListener);
50     updateHelp();
51   });
52
53   function invalidTextareaListener() {
54     var container = $(this).closest(".richtext_container");
55
56     container.find("button[data-bs-target$='_edit']").tab("show");
57   }
58
59   function updateHelp() {
60     $(".richtext_container .richtext_help_sidebar:not(:visible):not(:empty)").each(function () {
61       var container = $(this).closest(".richtext_container");
62       $(this).children().appendTo(container.find(".tab-pane[id$='_help']"));
63     });
64     $(".richtext_container .richtext_help_sidebar:visible:empty").each(function () {
65       var container = $(this).closest(".richtext_container");
66       container.find(".tab-pane[id$='_help']").children().appendTo($(this));
67       if (container.find("button[data-bs-target$='_help'].active").length) {
68         container.find("button[data-bs-target$='_edit']").tab("show");
69       }
70     });
71   }
72 }());