diff --git a/ignite-html-toast.js b/ignite-html-toast.js new file mode 100644 index 0000000..0c43bca --- /dev/null +++ b/ignite-html-toast.js @@ -0,0 +1,62 @@ +import { IgniteProperty } from "../ignite-html/ignite-html.js"; + +class Toast { + static info(content, timeout = 4000, closable = true) { + return this.makeToast("?", content, "info", timeout, closable); + } + + static warning(content, timeout = 4000, closable = true) { + return this.makeToast("!", content, "warning", timeout, closable); + } + + static error(content, timeout = 4000, closable = true) { + return this.makeToast("×", content, "error", timeout, closable); + } + + static success(content, timeout = 4000, closable = true) { + return this.makeToast("✔", content, "success", timeout, closable); + } + + static makeToast(icon, content, type, timeout, closable) { + var color = ""; + if (type == "error") { + color = "#ff7979"; + } else if (type == "warning") { + color = "#ffc107"; + } else if (type == "info") { + color = "#2196f3"; + } else if (type == "success") { + color = "#10c469"; + } + + document.querySelectorAll(".ignite-html-toast").forEach(element => element.remove()); + + var temp = document.createElement('div'); + temp.innerHTML = ` +
+
+
${icon ? icon : ""}
+
${content ? content : ""}
+ +
+
+ `.trim(); + var toast = temp.firstChild; + + window.document.body.appendChild(toast); + + if (timeout != -1) { + setTimeout(() => { + toast.remove(); + }, timeout); + } + + return toast; + } +} + +window.Toast = Toast; + +export { + Toast +} \ No newline at end of file