mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
import {POST} from '../../modules/fetch.ts'; |
|
import {hideElem, showElem, toggleElem} from '../../utils/dom.ts'; |
|
|
|
export function initCompWebHookEditor() { |
|
if (!document.querySelectorAll('.new.webhook').length) { |
|
return; |
|
} |
|
|
|
for (const input of document.querySelectorAll<HTMLInputElement>('.events.checkbox input')) { |
|
input.addEventListener('change', function () { |
|
if (this.checked) { |
|
showElem('.events.fields'); |
|
} |
|
}); |
|
} |
|
|
|
for (const input of document.querySelectorAll<HTMLInputElement>('.non-events.checkbox input')) { |
|
input.addEventListener('change', function () { |
|
if (this.checked) { |
|
hideElem('.events.fields'); |
|
} |
|
}); |
|
} |
|
|
|
// some webhooks (like Gitea) allow to set the request method (GET/POST), and it would toggle the "Content Type" field |
|
const httpMethodInput = document.querySelector<HTMLInputElement>('#http_method'); |
|
if (httpMethodInput) { |
|
const updateContentType = function () { |
|
const visible = httpMethodInput.value === 'POST'; |
|
toggleElem(document.querySelector('#content_type')!.closest('.field')!, visible); |
|
}; |
|
updateContentType(); |
|
httpMethodInput.addEventListener('change', updateContentType); |
|
} |
|
|
|
// Test delivery |
|
document.querySelector<HTMLButtonElement>('#test-delivery')?.addEventListener('click', async function () { |
|
this.classList.add('is-loading', 'disabled'); |
|
await POST(this.getAttribute('data-link')!); |
|
setTimeout(() => { |
|
const redirectUrl = this.getAttribute('data-redirect'); |
|
if (redirectUrl) { |
|
window.location.href = redirectUrl; |
|
} |
|
}, 5000); |
|
}); |
|
}
|
|
|