2023-03-10 16:42:38 +00:00
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2023-04-03 10:06:57 +00:00
|
|
|
import {initComboMarkdownEditor} from './comp/ComboMarkdownEditor.js';
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
export function initRepoRelease() {
|
2024-02-25 22:39:07 +00:00
|
|
|
for (const el of document.querySelectorAll('.remove-rel-attach')) {
|
2024-02-18 01:22:09 +00:00
|
|
|
el.addEventListener('click', (e) => {
|
|
|
|
const uuid = e.target.getAttribute('data-uuid');
|
|
|
|
const id = e.target.getAttribute('data-id');
|
2023-09-15 16:20:16 +00:00
|
|
|
document.querySelector(`input[name='attachment-del-${uuid}']`).value =
|
|
|
|
'true';
|
2024-02-18 01:22:09 +00:00
|
|
|
hideElem(`#attachment-${id}`);
|
|
|
|
});
|
2024-02-25 22:39:07 +00:00
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
|
2023-03-10 16:42:38 +00:00
|
|
|
export function initRepoReleaseNew() {
|
2024-02-18 01:22:09 +00:00
|
|
|
if (!document.querySelector('.repository.new.release')) return;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2023-03-10 16:42:38 +00:00
|
|
|
initTagNameEditor();
|
|
|
|
initRepoReleaseEditor();
|
2023-09-15 16:20:16 +00:00
|
|
|
initAddExternalLinkButton();
|
2023-03-10 16:42:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function initTagNameEditor() {
|
|
|
|
const el = document.getElementById('tag-name-editor');
|
|
|
|
if (!el) return;
|
|
|
|
|
|
|
|
const existingTags = JSON.parse(el.getAttribute('data-existing-tags'));
|
|
|
|
if (!Array.isArray(existingTags)) return;
|
|
|
|
|
|
|
|
const defaultTagHelperText = el.getAttribute('data-tag-helper');
|
|
|
|
const newTagHelperText = el.getAttribute('data-tag-helper-new');
|
|
|
|
const existingTagHelperText = el.getAttribute('data-tag-helper-existing');
|
|
|
|
|
|
|
|
document.getElementById('tag-name').addEventListener('keyup', (e) => {
|
|
|
|
const value = e.target.value;
|
2023-05-09 02:35:49 +00:00
|
|
|
const tagHelper = document.getElementById('tag-helper');
|
2023-03-10 16:42:38 +00:00
|
|
|
if (existingTags.includes(value)) {
|
|
|
|
// If the tag already exists, hide the target branch selector.
|
|
|
|
hideElem('#tag-target-selector');
|
2023-05-09 02:35:49 +00:00
|
|
|
tagHelper.textContent = existingTagHelperText;
|
2023-03-10 16:42:38 +00:00
|
|
|
} else {
|
|
|
|
showElem('#tag-target-selector');
|
2023-05-09 02:35:49 +00:00
|
|
|
tagHelper.textContent = value ? newTagHelperText : defaultTagHelperText;
|
2023-03-10 16:42:38 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function initRepoReleaseEditor() {
|
2023-09-15 16:20:16 +00:00
|
|
|
const editor = document.querySelector(
|
|
|
|
'.repository.new.release .combo-markdown-editor',
|
|
|
|
);
|
2024-02-18 01:22:09 +00:00
|
|
|
if (!editor) {
|
2023-02-01 19:14:40 +00:00
|
|
|
return;
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-02-18 01:22:09 +00:00
|
|
|
initComboMarkdownEditor(editor);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2023-09-15 16:20:16 +00:00
|
|
|
|
|
|
|
let newAttachmentCount = 0;
|
|
|
|
|
|
|
|
function initAddExternalLinkButton() {
|
|
|
|
const addExternalLinkButton = document.getElementById('add-external-link');
|
|
|
|
if (!addExternalLinkButton) return;
|
|
|
|
|
|
|
|
addExternalLinkButton.addEventListener('click', () => {
|
|
|
|
newAttachmentCount += 1;
|
|
|
|
const attachmentTemplate = document.getElementById('attachment-template');
|
|
|
|
|
|
|
|
const newAttachment = attachmentTemplate.cloneNode(true);
|
|
|
|
newAttachment.id = `attachment-N${newAttachmentCount}`;
|
|
|
|
newAttachment.classList.remove('tw-hidden');
|
|
|
|
|
|
|
|
const attachmentName = newAttachment.querySelector(
|
|
|
|
'input[name="attachment-template-new-name"]',
|
|
|
|
);
|
|
|
|
attachmentName.name = `attachment-new-name-${newAttachmentCount}`;
|
|
|
|
attachmentName.required = true;
|
|
|
|
|
|
|
|
const attachmentExtUrl = newAttachment.querySelector(
|
|
|
|
'input[name="attachment-template-new-exturl"]',
|
|
|
|
);
|
|
|
|
attachmentExtUrl.name = `attachment-new-exturl-${newAttachmentCount}`;
|
|
|
|
attachmentExtUrl.required = true;
|
|
|
|
|
|
|
|
const attachmentDel = newAttachment.querySelector('.remove-rel-attach');
|
|
|
|
attachmentDel.addEventListener('click', () => {
|
|
|
|
newAttachment.remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
attachmentTemplate.parentNode.insertBefore(
|
|
|
|
newAttachment,
|
|
|
|
attachmentTemplate,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|