2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
|
|
|
|
2017-08-25 20:43:33 -04:00
|
|
|
function setVisibilityOptions(namespaceSelector) {
|
|
|
|
if (!namespaceSelector || !('selectedIndex' in namespaceSelector)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const selectedNamespace = namespaceSelector.options[namespaceSelector.selectedIndex];
|
2017-08-26 03:43:45 -04:00
|
|
|
const { name, visibility, visibilityLevel, showPath, editPath } = selectedNamespace.dataset;
|
2017-08-25 20:43:33 -04:00
|
|
|
|
2018-10-10 03:13:34 -04:00
|
|
|
document.querySelectorAll('.visibility-level-setting .form-check').forEach(option => {
|
2017-08-25 20:43:33 -04:00
|
|
|
const optionInput = option.querySelector('input[type=radio]');
|
|
|
|
const optionValue = optionInput ? optionInput.value : 0;
|
|
|
|
const optionTitle = option.querySelector('.option-title');
|
|
|
|
const optionName = optionTitle ? optionTitle.innerText.toLowerCase() : '';
|
|
|
|
|
|
|
|
// don't change anything if the option is restricted by admin
|
|
|
|
if (!option.classList.contains('restricted')) {
|
|
|
|
if (visibilityLevel < optionValue) {
|
|
|
|
option.classList.add('disabled');
|
|
|
|
optionInput.disabled = true;
|
|
|
|
const reason = option.querySelector('.option-disabled-reason');
|
|
|
|
if (reason) {
|
2018-10-10 03:13:34 -04:00
|
|
|
reason.innerHTML = `This project cannot be ${optionName} because the visibility of
|
2017-08-26 03:43:45 -04:00
|
|
|
<a href="${showPath}">${name}</a> is ${visibility}. To make this project
|
|
|
|
${optionName}, you must first <a href="${editPath}">change the visibility</a>
|
|
|
|
of the parent group.`;
|
2017-08-25 20:43:33 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
option.classList.remove('disabled');
|
|
|
|
optionInput.disabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function initProjectVisibilitySelector() {
|
|
|
|
const namespaceSelector = document.querySelector('select.js-select-namespace');
|
|
|
|
if (namespaceSelector) {
|
|
|
|
$('.select2.js-select-namespace').on('change', () => setVisibilityOptions(namespaceSelector));
|
|
|
|
setVisibilityOptions(namespaceSelector);
|
|
|
|
}
|
|
|
|
}
|