2022-01-29 02:30:11 +05:30
|
|
|
import $ from 'jquery';
|
2023-03-10 22:12:38 +05:30
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2023-04-03 15:36:57 +05:30
|
|
|
import {initComboMarkdownEditor} from './comp/ComboMarkdownEditor.js';
|
2021-10-16 22:58:04 +05:30
|
|
|
|
|
|
|
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 09:36:14 +05:30
|
|
|
hideElem($(`#attachment-${id}`));
|
2021-10-16 22:58:04 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-10 22:12:38 +05:30
|
|
|
export function initRepoReleaseNew() {
|
|
|
|
const $repoReleaseNew = $('.repository.new.release');
|
|
|
|
if (!$repoReleaseNew.length) return;
|
2021-10-16 22:58:04 +05:30
|
|
|
|
2023-03-10 22:12:38 +05:30
|
|
|
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;
|
|
|
|
if (existingTags.includes(value)) {
|
|
|
|
// If the tag already exists, hide the target branch selector.
|
|
|
|
hideElem('#tag-target-selector');
|
|
|
|
document.getElementById('tag-helper').innerText = existingTagHelperText;
|
|
|
|
} else {
|
|
|
|
showElem('#tag-target-selector');
|
|
|
|
if (value) {
|
|
|
|
document.getElementById('tag-helper').innerText = newTagHelperText;
|
|
|
|
} else {
|
|
|
|
document.getElementById('tag-helper').innerText = defaultTagHelperText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function initRepoReleaseEditor() {
|
2023-04-03 15:36:57 +05:30
|
|
|
const $editor = $('.repository.new.release .combo-markdown-editor');
|
2021-10-16 22:58:04 +05:30
|
|
|
if ($editor.length === 0) {
|
2023-02-02 00:44:40 +05:30
|
|
|
return;
|
2021-10-16 22:58:04 +05:30
|
|
|
}
|
2023-04-03 15:36:57 +05:30
|
|
|
const _promise = initComboMarkdownEditor($editor);
|
2021-10-16 22:58:04 +05:30
|
|
|
}
|