mirror of https://github.com/go-gitea/gitea
Make toast support preventDuplicates (#31501)
make preventDuplicates default to true, users get a clear UI feedback and know that "a new message appears". Fixes: https://github.com/go-gitea/gitea/issues/26651 --------- Co-authored-by: silverwind <me@silverwind.io>pull/31506/head^2
parent
9bc5552c11
commit
c1fe6fbcc3
@ -0,0 +1,15 @@ |
|||||||
|
{{template "base/head" .}} |
||||||
|
|
||||||
|
<div> |
||||||
|
<h1>Toast</h1> |
||||||
|
<div> |
||||||
|
<button class="ui button toast-test-button" data-toast-level="info" data-toast-message="test info">Show Info Toast</button> |
||||||
|
<button class="ui button toast-test-button" data-toast-level="warning" data-toast-message="test warning">Show Warning Toast</button> |
||||||
|
<button class="ui button toast-test-button" data-toast-level="error" data-toast-message="test error">Show Error Toast</button> |
||||||
|
<button class="ui button toast-test-button" data-toast-level="error" data-toast-message="very looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong message">Show Error Toast (long)</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<script src="{{AssetUrlPrefix}}/js/devtest.js?v={{AssetVersion}}"></script> |
||||||
|
|
||||||
|
{{template "base/footer" .}} |
@ -1,11 +1,14 @@ |
|||||||
import {showInfoToast, showWarningToast, showErrorToast} from '../modules/toast.js'; |
import {showInfoToast, showWarningToast, showErrorToast} from '../modules/toast.js'; |
||||||
|
|
||||||
document.querySelector('#info-toast').addEventListener('click', () => { |
function initDevtestToast() { |
||||||
showInfoToast('success 😀'); |
const levelMap = {info: showInfoToast, warning: showWarningToast, error: showErrorToast}; |
||||||
}); |
for (const el of document.querySelectorAll('.toast-test-button')) { |
||||||
document.querySelector('#warning-toast').addEventListener('click', () => { |
el.addEventListener('click', () => { |
||||||
showWarningToast('warning 😐'); |
const level = el.getAttribute('data-toast-level'); |
||||||
}); |
const message = el.getAttribute('data-toast-message'); |
||||||
document.querySelector('#error-toast').addEventListener('click', () => { |
levelMap[level](message); |
||||||
showErrorToast('error 🙁'); |
}); |
||||||
}); |
} |
||||||
|
} |
||||||
|
|
||||||
|
initDevtestToast(); |
||||||
|
Loading…
Reference in new issue