2022-01-29 02:30:11 +05:30
|
|
|
import $ from 'jquery';
|
|
|
|
|
2021-10-21 13:07:43 +05:30
|
|
|
const {csrfToken} = window.config;
|
2020-08-17 08:37:38 +05:30
|
|
|
|
2022-03-08 22:12:28 +05:30
|
|
|
function updateIssueCount(cards) {
|
|
|
|
const parent = cards.parentElement;
|
|
|
|
const cnt = parent.getElementsByClassName('board-card').length;
|
|
|
|
parent.getElementsByClassName('board-card-cnt')[0].innerText = cnt;
|
|
|
|
}
|
|
|
|
|
2021-12-08 12:27:18 +05:30
|
|
|
function moveIssue({item, from, to, oldIndex}) {
|
|
|
|
const columnCards = to.getElementsByClassName('board-card');
|
2022-03-08 22:12:28 +05:30
|
|
|
updateIssueCount(from);
|
|
|
|
updateIssueCount(to);
|
2021-12-08 12:27:18 +05:30
|
|
|
|
|
|
|
const columnSorting = {
|
|
|
|
issues: [...columnCards].map((card, i) => ({
|
|
|
|
issueID: parseInt($(card).attr('data-issue')),
|
|
|
|
sorting: i
|
|
|
|
}))
|
|
|
|
};
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: `${to.getAttribute('data-url')}/move`,
|
|
|
|
data: JSON.stringify(columnSorting),
|
|
|
|
headers: {
|
|
|
|
'X-Csrf-Token': csrfToken,
|
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
|
|
|
type: 'POST',
|
|
|
|
error: () => {
|
|
|
|
from.insertBefore(item, from.children[oldIndex]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-09 14:57:25 +05:30
|
|
|
async function initRepoProjectSortable() {
|
2021-11-22 17:10:17 +05:30
|
|
|
const els = document.querySelectorAll('#project-board > .board');
|
2021-11-18 22:15:00 +05:30
|
|
|
if (!els.length) return;
|
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
const {Sortable} = await import(/* webpackChunkName: "sortable" */'sortablejs');
|
2021-02-11 22:02:27 +05:30
|
|
|
|
2021-11-22 17:10:17 +05:30
|
|
|
// the HTML layout is: #project-board > .board > .board-column .board.cards > .board-card.card .content
|
|
|
|
const mainBoard = els[0];
|
|
|
|
let boardColumns = mainBoard.getElementsByClassName('board-column');
|
|
|
|
new Sortable(mainBoard, {
|
2021-11-22 13:49:01 +05:30
|
|
|
group: 'board-column',
|
|
|
|
draggable: '.board-column',
|
2021-11-22 17:10:17 +05:30
|
|
|
filter: '[data-id="0"]',
|
2021-11-22 13:49:01 +05:30
|
|
|
animation: 150,
|
|
|
|
ghostClass: 'card-ghost',
|
|
|
|
onSort: () => {
|
2021-11-22 17:10:17 +05:30
|
|
|
boardColumns = mainBoard.getElementsByClassName('board-column');
|
|
|
|
for (let i = 0; i < boardColumns.length; i++) {
|
|
|
|
const column = boardColumns[i];
|
2021-11-22 13:49:01 +05:30
|
|
|
if (parseInt($(column).data('sorting')) !== i) {
|
|
|
|
$.ajax({
|
|
|
|
url: $(column).data('url'),
|
|
|
|
data: JSON.stringify({sorting: i, color: rgbToHex($(column).css('backgroundColor'))}),
|
2020-08-17 08:37:38 +05:30
|
|
|
headers: {
|
2021-10-21 13:07:43 +05:30
|
|
|
'X-Csrf-Token': csrfToken,
|
2020-08-17 08:37:38 +05:30
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
2021-11-22 13:49:01 +05:30
|
|
|
method: 'PUT',
|
2020-08-17 08:37:38 +05:30
|
|
|
});
|
2021-11-22 13:49:01 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-11-22 17:10:17 +05:30
|
|
|
for (const boardColumn of boardColumns) {
|
|
|
|
const boardCardList = boardColumn.getElementsByClassName('board')[0];
|
|
|
|
new Sortable(boardCardList, {
|
2021-11-22 13:49:01 +05:30
|
|
|
group: 'shared',
|
|
|
|
animation: 150,
|
|
|
|
ghostClass: 'card-ghost',
|
2021-12-08 12:27:18 +05:30
|
|
|
onAdd: moveIssue,
|
|
|
|
onUpdate: moveIssue,
|
2021-11-22 13:49:01 +05:30
|
|
|
});
|
2020-08-17 08:37:38 +05:30
|
|
|
}
|
2021-11-09 14:57:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
export default function initRepoProject() {
|
|
|
|
if (!$('.repository.projects').length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-12 18:07:45 +05:30
|
|
|
const _promise = initRepoProjectSortable();
|
2020-08-17 08:37:38 +05:30
|
|
|
|
|
|
|
$('.edit-project-board').each(function () {
|
2021-09-30 02:23:12 +05:30
|
|
|
const projectHeader = $(this).closest('.board-column-header');
|
|
|
|
const projectTitleLabel = projectHeader.find('.board-label');
|
2020-08-17 08:37:38 +05:30
|
|
|
const projectTitleInput = $(this).find(
|
2021-01-16 01:59:32 +05:30
|
|
|
'.content > .form > .field > .project-board-title',
|
2020-08-17 08:37:38 +05:30
|
|
|
);
|
2021-09-30 02:23:12 +05:30
|
|
|
const projectColorInput = $(this).find('.content > .form > .field #new_board_color');
|
|
|
|
const boardColumn = $(this).closest('.board-column');
|
|
|
|
|
|
|
|
if (boardColumn.css('backgroundColor')) {
|
|
|
|
setLabelColor(projectHeader, rgbToHex(boardColumn.css('backgroundColor')));
|
|
|
|
}
|
2020-08-17 08:37:38 +05:30
|
|
|
|
|
|
|
$(this)
|
|
|
|
.find('.content > .form > .actions > .red')
|
|
|
|
.on('click', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: $(this).data('url'),
|
2021-09-30 02:23:12 +05:30
|
|
|
data: JSON.stringify({title: projectTitleInput.val(), color: projectColorInput.val()}),
|
2020-08-17 08:37:38 +05:30
|
|
|
headers: {
|
2021-10-21 13:07:43 +05:30
|
|
|
'X-Csrf-Token': csrfToken,
|
2020-08-17 08:37:38 +05:30
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
|
|
|
method: 'PUT',
|
|
|
|
}).done(() => {
|
|
|
|
projectTitleLabel.text(projectTitleInput.val());
|
|
|
|
projectTitleInput.closest('form').removeClass('dirty');
|
2021-09-30 02:23:12 +05:30
|
|
|
if (projectColorInput.val()) {
|
|
|
|
setLabelColor(projectHeader, projectColorInput.val());
|
|
|
|
}
|
|
|
|
boardColumn.attr('style', `background: ${projectColorInput.val()}!important`);
|
2020-08-17 08:37:38 +05:30
|
|
|
$('.ui.modal').modal('hide');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-01-16 01:59:32 +05:30
|
|
|
$(document).on('click', '.set-default-project-board', async function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
await $.ajax({
|
|
|
|
method: 'POST',
|
|
|
|
url: $(this).data('url'),
|
|
|
|
headers: {
|
2021-10-21 13:07:43 +05:30
|
|
|
'X-Csrf-Token': csrfToken,
|
2021-01-16 01:59:32 +05:30
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
|
|
|
});
|
|
|
|
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2021-02-11 22:02:27 +05:30
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
$('.delete-project-board').each(function () {
|
|
|
|
$(this).click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: $(this).data('url'),
|
|
|
|
headers: {
|
2021-10-21 13:07:43 +05:30
|
|
|
'X-Csrf-Token': csrfToken,
|
2020-08-17 08:37:38 +05:30
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
|
|
|
method: 'DELETE',
|
|
|
|
}).done(() => {
|
2021-01-16 01:59:32 +05:30
|
|
|
window.location.reload();
|
2020-08-17 08:37:38 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#new_board_submit').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const boardTitle = $('#new_board');
|
2021-09-30 02:23:12 +05:30
|
|
|
const projectColorInput = $('#new_board_color_picker');
|
2020-08-17 08:37:38 +05:30
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: $(this).data('url'),
|
2021-09-30 02:23:12 +05:30
|
|
|
data: JSON.stringify({title: boardTitle.val(), color: projectColorInput.val()}),
|
2020-08-17 08:37:38 +05:30
|
|
|
headers: {
|
2021-10-21 13:07:43 +05:30
|
|
|
'X-Csrf-Token': csrfToken,
|
2020-08-17 08:37:38 +05:30
|
|
|
},
|
|
|
|
contentType: 'application/json',
|
|
|
|
method: 'POST',
|
|
|
|
}).done(() => {
|
|
|
|
boardTitle.closest('form').removeClass('dirty');
|
2021-01-16 01:59:32 +05:30
|
|
|
window.location.reload();
|
2020-08-17 08:37:38 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2021-09-30 02:23:12 +05:30
|
|
|
|
|
|
|
function setLabelColor(label, color) {
|
2022-02-18 12:20:36 +05:30
|
|
|
const red = getRelativeColor(parseInt(color.slice(1, 3), 16));
|
|
|
|
const green = getRelativeColor(parseInt(color.slice(3, 5), 16));
|
|
|
|
const blue = getRelativeColor(parseInt(color.slice(5, 7), 16));
|
2021-09-30 02:23:12 +05:30
|
|
|
const luminance = 0.2126 * red + 0.7152 * green + 0.0722 * blue;
|
|
|
|
|
|
|
|
if (luminance > 0.179) {
|
|
|
|
label.removeClass('light-label').addClass('dark-label');
|
|
|
|
} else {
|
|
|
|
label.removeClass('dark-label').addClass('light-label');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inspired by W3C recommandation https://www.w3.org/TR/WCAG20/#relativeluminancedef
|
|
|
|
*/
|
|
|
|
function getRelativeColor(color) {
|
|
|
|
color /= 255;
|
|
|
|
return color <= 0.03928 ? color / 12.92 : ((color + 0.055) / 1.055) ** 2.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
function rgbToHex(rgb) {
|
|
|
|
rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
|
|
|
|
return `#${hex(rgb[1])}${hex(rgb[2])}${hex(rgb[3])}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function hex(x) {
|
|
|
|
const hexDigits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'];
|
|
|
|
return Number.isNaN(x) ? '00' : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16];
|
|
|
|
}
|