2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
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() {
|
|
|
|
$(document).on('click', '.remove-rel-attach', function() {
|
|
|
|
const uuid = $(this).data('uuid');
|
|
|
|
const id = $(this).data('id');
|
|
|
|
$(`input[name='attachment-del-${uuid}']`).attr('value', true);
|
2023-02-19 04:06:14 +00:00
|
|
|
hideElem($(`#attachment-${id}`));
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-10 16:42:38 +00:00
|
|
|
export function initRepoReleaseNew() {
|
|
|
|
const $repoReleaseNew = $('.repository.new.release');
|
|
|
|
if (!$repoReleaseNew.length) return;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2023-03-10 16:42:38 +00:00
|
|
|
initTagNameEditor();
|
|
|
|
initRepoReleaseEditor();
|
|
|
|
}
|
|
|
|
|
|
|
|
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-04-03 10:06:57 +00:00
|
|
|
const $editor = $('.repository.new.release .combo-markdown-editor');
|
2021-10-16 17:28:04 +00:00
|
|
|
if ($editor.length === 0) {
|
2023-02-01 19:14:40 +00:00
|
|
|
return;
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2023-04-03 10:06:57 +00:00
|
|
|
const _promise = initComboMarkdownEditor($editor);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|