1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-15 16:26:07 +00:00
gitea/web_src/js/standalone/devtest.js

15 lines
504 B
JavaScript
Raw Normal View History

import {showInfoToast, showWarningToast, showErrorToast} from '../modules/toast.js';
function initDevtestToast() {
const levelMap = {info: showInfoToast, warning: showWarningToast, error: showErrorToast};
for (const el of document.querySelectorAll('.toast-test-button')) {
el.addEventListener('click', () => {
const level = el.getAttribute('data-toast-level');
const message = el.getAttribute('data-toast-message');
levelMap[level](message);
});
}
}
initDevtestToast();