-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove jQuery from the webhook editor (#29211)
- Switched to plain JavaScript - Tested the webhook editing functionality and it works as before # Demo using JavaScript without jQuery ![action](https://github.com/go-gitea/gitea/assets/20454870/b24c264d-d5e5-4954-8789-e72564a99027) --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
- Loading branch information
1 parent
c282d37
commit 27192bc
Showing
1 changed file
with
27 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,41 @@ | ||
import $ from 'jquery'; | ||
import {POST} from '../../modules/fetch.js'; | ||
import {hideElem, showElem, toggleElem} from '../../utils/dom.js'; | ||
|
||
const {csrfToken} = window.config; | ||
|
||
export function initCompWebHookEditor() { | ||
if ($('.new.webhook').length === 0) { | ||
if (!document.querySelectorAll('.new.webhook').length) { | ||
return; | ||
} | ||
|
||
$('.events.checkbox input').on('change', function () { | ||
if ($(this).is(':checked')) { | ||
showElem($('.events.fields')); | ||
} | ||
}); | ||
$('.non-events.checkbox input').on('change', function () { | ||
if ($(this).is(':checked')) { | ||
hideElem($('.events.fields')); | ||
} | ||
}); | ||
for (const input of document.querySelectorAll('.events.checkbox input')) { | ||
input.addEventListener('change', function () { | ||
if (this.checked) { | ||
showElem('.events.fields'); | ||
} | ||
}); | ||
} | ||
|
||
for (const input of document.querySelectorAll('.non-events.checkbox input')) { | ||
input.addEventListener('change', function () { | ||
if (this.checked) { | ||
hideElem('.events.fields'); | ||
} | ||
}); | ||
} | ||
|
||
const updateContentType = function () { | ||
const visible = $('#http_method').val() === 'POST'; | ||
toggleElem($('#content_type').parent().parent(), visible); | ||
const visible = document.getElementById('http_method').value === 'POST'; | ||
toggleElem(document.getElementById('content_type').parentNode.parentNode, visible); | ||
}; | ||
updateContentType(); | ||
$('#http_method').on('change', () => { | ||
updateContentType(); | ||
}); | ||
|
||
document.getElementById('http_method').addEventListener('change', updateContentType); | ||
|
||
// Test delivery | ||
$('#test-delivery').on('click', function () { | ||
const $this = $(this); | ||
$this.addClass('loading disabled'); | ||
$.post($this.data('link'), { | ||
_csrf: csrfToken | ||
}).done( | ||
setTimeout(() => { | ||
window.location.href = $this.data('redirect'); | ||
}, 5000) | ||
); | ||
document.getElementById('test-delivery')?.addEventListener('click', async function () { | ||
this.classList.add('loading', 'disabled'); | ||
await POST(this.getAttribute('data-link')); | ||
setTimeout(() => { | ||
window.location.href = this.getAttribute('data-redirect'); | ||
}, 5000); | ||
}); | ||
} |