Skip to content

Commit

Permalink
Show spinner using delayed css animation in richtext preview
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKhorev committed Nov 13, 2024
1 parent 6042632 commit 9fded02
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
9 changes: 3 additions & 6 deletions app/assets/javascripts/richtext.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
var container = $(this).closest(".richtext_container");
var preview = container.find(".tab-pane[id$='_preview']");

preview.children(".richtext_placeholder").attr("hidden", true);
preview.children(".richtext_placeholder").attr("hidden", true).removeClass("delayed-fade-in");
preview.children(".richtext").empty();
});

Expand All @@ -34,13 +34,10 @@
var preview = container.find(".tab-pane[id$='_preview']");

if (preview.children(".richtext").contents().length === 0) {
preview.oneTime(200, "loading", function () {
preview.children(".richtext_placeholder").removeAttr("hidden");
});
preview.children(".richtext_placeholder").removeAttr("hidden").addClass("delayed-fade-in");

preview.children(".richtext").load(editor.data("previewUrl"), { text: editor.val() }, function () {
preview.stopTime("loading");
preview.children(".richtext_placeholder").attr("hidden", true);
preview.children(".richtext_placeholder").attr("hidden", true).removeClass("delayed-fade-in");
});
}
});
Expand Down
12 changes: 12 additions & 0 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ time[title] {
}
}

/* Utility for delayed loading spinner */

.delayed-fade-in {
animation: 300ms linear forwards delayed-fade-in;
}

@keyframes delayed-fade-in {
0% { opacity: 0 }
66% { opacity: 0 }
100% { opacity: 1 }
}

/* Rules for the header */

#menu-icon {
Expand Down

0 comments on commit 9fded02

Please sign in to comment.