Files
Atay-Makhzan/web_src/js/features/comp/LabelEdit.js
T

97 lines
3.3 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
2021-10-17 01:28:04 +08:00
2023-02-18 20:17:39 +01:00
function isExclusiveScopeName(name) {
return /.*[^/]\/[^/].*/.test(name);
}
function updateExclusiveLabelEdit(form) {
const nameInput = document.querySelector(`${form} .label-name-input`);
const exclusiveField = document.querySelector(`${form} .label-exclusive-input-field`);
const exclusiveCheckbox = document.querySelector(`${form} .label-exclusive-input`);
const exclusiveWarning = document.querySelector(`${form} .label-exclusive-warning`);
if (isExclusiveScopeName(nameInput.value)) {
exclusiveField?.classList.remove('muted');
exclusiveField?.removeAttribute('aria-disabled');
if (exclusiveCheckbox.checked && exclusiveCheckbox.getAttribute('data-exclusive-warn')) {
exclusiveWarning?.classList.remove('tw-hidden');
2023-02-18 20:17:39 +01:00
} else {
exclusiveWarning?.classList.add('tw-hidden');
2023-02-18 20:17:39 +01:00
}
} else {
exclusiveField?.classList.add('muted');
exclusiveField?.setAttribute('aria-disabled', 'true');
exclusiveWarning?.classList.add('tw-hidden');
2023-02-18 20:17:39 +01:00
}
}
2021-10-17 01:28:04 +08:00
export function initCompLabelEdit(selector) {
if (!$(selector).length) return;
2023-02-18 20:17:39 +01:00
2021-10-17 01:28:04 +08:00
// Create label
$('.new-label.button').on('click', () => {
2023-02-18 20:17:39 +01:00
updateExclusiveLabelEdit('.new-label');
$('.new-label.modal').modal({
onApprove() {
const form = document.querySelector('.new-label.form');
if (!form.checkValidity()) {
form.reportValidity();
return false;
}
2023-02-18 20:17:39 +01:00
$('.new-label.form').trigger('submit');
2023-08-14 15:26:14 +05:30
},
2023-02-18 20:17:39 +01:00
}).modal('show');
return false;
2021-10-17 01:28:04 +08:00
});
2023-02-18 20:17:39 +01:00
// Edit label
2021-10-17 01:28:04 +08:00
$('.edit-label-button').on('click', function () {
$('#label-modal-id').val($(this).data('id'));
2023-02-18 20:17:39 +01:00
const $nameInput = $('.edit-label .label-name-input');
$nameInput.val($(this).data('title'));
2023-02-18 20:17:39 +01:00
const $isArchivedCheckbox = $('.edit-label .label-is-archived-input');
$isArchivedCheckbox[0].checked = this.hasAttribute('data-is-archived');
2023-08-14 15:26:14 +05:30
const $exclusiveCheckbox = $('.edit-label .label-exclusive-input');
$exclusiveCheckbox[0].checked = this.hasAttribute('data-exclusive');
2023-02-18 20:17:39 +01:00
// Warn when label was previously not exclusive and used in issues
$exclusiveCheckbox.data('exclusive-warn',
2023-02-18 20:17:39 +01:00
$(this).data('num-issues') > 0 &&
(!this.hasAttribute('data-exclusive') || !isExclusiveScopeName($nameInput.val())));
2023-02-18 20:17:39 +01:00
updateExclusiveLabelEdit('.edit-label');
$('.edit-label .label-desc-input').val(this.getAttribute('data-description'));
const colorInput = document.querySelector('.edit-label .js-color-picker-input input');
colorInput.value = this.getAttribute('data-color');
colorInput.dispatchEvent(new Event('input', {bubbles: true}));
2023-02-18 20:17:39 +01:00
2021-10-17 01:28:04 +08:00
$('.edit-label.modal').modal({
onApprove() {
const form = document.querySelector('.edit-label.form');
if (!form.checkValidity()) {
form.reportValidity();
return false;
}
2021-10-17 01:28:04 +08:00
$('.edit-label.form').trigger('submit');
2023-08-14 15:26:14 +05:30
},
2021-10-17 01:28:04 +08:00
}).modal('show');
return false;
});
2023-02-18 20:17:39 +01:00
$('.new-label .label-name-input').on('input', () => {
updateExclusiveLabelEdit('.new-label');
});
$('.new-label .label-exclusive-input').on('change', () => {
updateExclusiveLabelEdit('.new-label');
});
$('.edit-label .label-name-input').on('input', () => {
updateExclusiveLabelEdit('.edit-label');
});
$('.edit-label .label-exclusive-input').on('change', () => {
updateExclusiveLabelEdit('.edit-label');
});
2021-10-17 01:28:04 +08:00
}