Hide flash messages during development
This commit is contained in:
parent
594e9bcbfd
commit
02d0e5142b
|
@ -1,6 +1,8 @@
|
||||||
{{#if flash}}
|
<span>
|
||||||
<div class="notification is-{{flash.type}}">
|
{{#if flash}}
|
||||||
|
<div class="notification is-{{flash.type}}">
|
||||||
<button class="delete" aria-label="Close"></button>
|
<button class="delete" aria-label="Close"></button>
|
||||||
<span role="alert"> {{ flash.message }} </span>
|
<span role="alert"> {{ flash.message }} </span>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
</span>
|
||||||
|
|
|
@ -4,7 +4,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
||||||
flashButtons.forEach((button) => {
|
flashButtons.forEach((button) => {
|
||||||
const flash = button.parentNode;
|
const flash = button.parentNode;
|
||||||
|
|
||||||
if (flash == null) {
|
if (flash === null) {
|
||||||
console.error(
|
console.error(
|
||||||
"Unreachable because our `querySelector` includes a parent; something went very wrong"
|
"Unreachable because our `querySelector` includes a parent; something went very wrong"
|
||||||
);
|
);
|
||||||
|
@ -12,12 +12,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
flash.addEventListener("click", () => {
|
flash.addEventListener("click", () => {
|
||||||
if (flash == null) {
|
if (flash.parentNode === null) {
|
||||||
console.error("Completely unreachable.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (flash.parentNode == null) {
|
|
||||||
console.error(
|
console.error(
|
||||||
"Notification not placed in DOM; something went very wrong"
|
"Notification not placed in DOM; something went very wrong"
|
||||||
);
|
);
|
||||||
|
@ -26,6 +21,23 @@ document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
|
||||||
flash.parentNode.removeChild(flash);
|
flash.parentNode.removeChild(flash);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// In development, there won't be a web server hooked up to
|
||||||
|
// this to render the flash message, so we remove it entirely
|
||||||
|
if (process.env.NODE_ENV === "development") {
|
||||||
|
if (
|
||||||
|
flash.parentNode === null ||
|
||||||
|
flash.parentNode.parentNode === null
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.warn("Disabling flash message");
|
||||||
|
|
||||||
|
// Get the containing <span> element
|
||||||
|
const block = flash.parentNode;
|
||||||
|
flash.parentNode.parentNode.removeChild(block);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Reference in a new issue