2022-01-28 14:00:11 -07:00
|
|
|
import $ from 'jquery';
|
2023-07-09 04:17:22 -06:00
|
|
|
import {useLightTextOnBackground} from '../utils/color.js';
|
|
|
|
import tinycolor from 'tinycolor2';
|
2023-07-17 12:06:37 -06:00
|
|
|
import {createSortable} from '../modules/sortable.js';
|
2024-03-15 15:23:56 -06:00
|
|
|
import {POST, DELETE, PUT} from '../modules/fetch.js';
|
2020-08-16 21:07:38 -06:00
|
|
|
|
2022-03-08 09:42:28 -07:00
|
|
|
function updateIssueCount(cards) {
|
|
|
|
const parent = cards.parentElement;
|
2023-08-12 04:30:28 -06:00
|
|
|
const cnt = parent.getElementsByClassName('issue-card').length;
|
|
|
|
parent.getElementsByClassName('project-column-issue-count')[0].textContent = cnt;
|
2022-03-08 09:42:28 -07:00
|
|
|
}
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
async function createNewColumn(url, columnTitle, projectColorInput) {
|
|
|
|
try {
|
|
|
|
await POST(url, {
|
|
|
|
data: {
|
|
|
|
title: columnTitle.val(),
|
|
|
|
color: projectColorInput.val(),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
2023-08-12 04:30:28 -06:00
|
|
|
columnTitle.closest('form').removeClass('dirty');
|
2023-06-13 03:57:03 -06:00
|
|
|
window.location.reload();
|
2024-03-15 15:23:56 -06:00
|
|
|
}
|
2023-06-13 03:57:03 -06:00
|
|
|
}
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
async function moveIssue({item, from, to, oldIndex}) {
|
2023-08-12 04:30:28 -06:00
|
|
|
const columnCards = to.getElementsByClassName('issue-card');
|
2022-03-08 09:42:28 -07:00
|
|
|
updateIssueCount(from);
|
|
|
|
updateIssueCount(to);
|
2021-12-07 23:57:18 -07:00
|
|
|
|
|
|
|
const columnSorting = {
|
2023-05-17 19:14:31 -06:00
|
|
|
issues: Array.from(columnCards, (card, i) => ({
|
2024-03-22 13:56:38 -06:00
|
|
|
issueID: parseInt(card.getAttribute('data-issue')),
|
2023-06-13 03:57:03 -06:00
|
|
|
sorting: i,
|
|
|
|
})),
|
2021-12-07 23:57:18 -07:00
|
|
|
};
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
try {
|
|
|
|
await POST(`${to.getAttribute('data-url')}/move`, {
|
|
|
|
data: columnSorting,
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
from.insertBefore(item, from.children[oldIndex]);
|
|
|
|
}
|
2021-12-07 23:57:18 -07:00
|
|
|
}
|
|
|
|
|
2021-11-09 02:27:25 -07:00
|
|
|
async function initRepoProjectSortable() {
|
2023-05-08 22:50:16 -06:00
|
|
|
const els = document.querySelectorAll('#project-board > .board.sortable');
|
2021-11-18 09:45:00 -07:00
|
|
|
if (!els.length) return;
|
|
|
|
|
2023-08-12 04:30:28 -06:00
|
|
|
// the HTML layout is: #project-board > .board > .project-column .cards > .issue-card
|
2021-11-22 04:40:17 -07:00
|
|
|
const mainBoard = els[0];
|
2023-08-12 04:30:28 -06:00
|
|
|
let boardColumns = mainBoard.getElementsByClassName('project-column');
|
2023-07-17 12:06:37 -06:00
|
|
|
createSortable(mainBoard, {
|
2023-08-12 04:30:28 -06:00
|
|
|
group: 'project-column',
|
|
|
|
draggable: '.project-column',
|
2024-03-27 17:20:38 -06:00
|
|
|
handle: '.project-column-header',
|
2022-12-20 21:56:58 -07:00
|
|
|
delayOnTouchOnly: true,
|
|
|
|
delay: 500,
|
2024-03-15 15:23:56 -06:00
|
|
|
onSort: async () => {
|
2023-08-12 04:30:28 -06:00
|
|
|
boardColumns = mainBoard.getElementsByClassName('project-column');
|
2021-11-22 04:40:17 -07:00
|
|
|
for (let i = 0; i < boardColumns.length; i++) {
|
|
|
|
const column = boardColumns[i];
|
2021-11-22 01:19:01 -07:00
|
|
|
if (parseInt($(column).data('sorting')) !== i) {
|
2024-03-15 15:23:56 -06:00
|
|
|
try {
|
|
|
|
await PUT($(column).data('url'), {
|
|
|
|
data: {
|
|
|
|
sorting: i,
|
2024-03-19 10:28:46 -06:00
|
|
|
color: rgbToHex(window.getComputedStyle($(column)[0]).backgroundColor),
|
2024-03-15 15:23:56 -06:00
|
|
|
},
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
2021-11-22 01:19:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-11-22 04:40:17 -07:00
|
|
|
for (const boardColumn of boardColumns) {
|
2023-08-12 04:30:28 -06:00
|
|
|
const boardCardList = boardColumn.getElementsByClassName('cards')[0];
|
2023-07-17 12:06:37 -06:00
|
|
|
createSortable(boardCardList, {
|
2021-11-22 01:19:01 -07:00
|
|
|
group: 'shared',
|
2021-12-07 23:57:18 -07:00
|
|
|
onAdd: moveIssue,
|
|
|
|
onUpdate: moveIssue,
|
2022-12-20 21:56:58 -07:00
|
|
|
delayOnTouchOnly: true,
|
|
|
|
delay: 500,
|
2021-11-22 01:19:01 -07:00
|
|
|
});
|
2020-08-16 21:07:38 -06:00
|
|
|
}
|
2021-11-09 02:27:25 -07:00
|
|
|
}
|
|
|
|
|
2022-12-23 09:03:11 -07:00
|
|
|
export function initRepoProject() {
|
2021-11-09 02:27:25 -07:00
|
|
|
if (!$('.repository.projects').length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-12 05:37:45 -07:00
|
|
|
const _promise = initRepoProjectSortable();
|
2020-08-16 21:07:38 -06:00
|
|
|
|
2023-08-12 04:30:28 -06:00
|
|
|
$('.edit-project-column-modal').each(function () {
|
2024-03-16 06:22:16 -06:00
|
|
|
const $projectHeader = $(this).closest('.project-column-header');
|
|
|
|
const $projectTitleLabel = $projectHeader.find('.project-column-title');
|
|
|
|
const $projectTitleInput = $(this).find('.project-column-title-input');
|
|
|
|
const $projectColorInput = $(this).find('#new_project_column_color');
|
|
|
|
const $boardColumn = $(this).closest('.project-column');
|
|
|
|
|
2024-03-19 10:28:46 -06:00
|
|
|
const bgColor = $boardColumn[0].style.backgroundColor;
|
|
|
|
if (bgColor) {
|
|
|
|
setLabelColor($projectHeader, rgbToHex(bgColor));
|
2021-09-29 14:53:12 -06:00
|
|
|
}
|
2020-08-16 21:07:38 -06:00
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
$(this).find('.edit-project-column-button').on('click', async function (e) {
|
2023-03-12 05:09:20 -06:00
|
|
|
e.preventDefault();
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
try {
|
|
|
|
await PUT($(this).data('url'), {
|
|
|
|
data: {
|
2024-03-16 06:22:16 -06:00
|
|
|
title: $projectTitleInput.val(),
|
|
|
|
color: $projectColorInput.val(),
|
2024-03-15 15:23:56 -06:00
|
|
|
},
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
2024-03-16 06:22:16 -06:00
|
|
|
$projectTitleLabel.text($projectTitleInput.val());
|
|
|
|
$projectTitleInput.closest('form').removeClass('dirty');
|
|
|
|
if ($projectColorInput.val()) {
|
|
|
|
setLabelColor($projectHeader, $projectColorInput.val());
|
2023-03-12 05:09:20 -06:00
|
|
|
}
|
2024-03-22 13:56:38 -06:00
|
|
|
$boardColumn[0].style = `background: ${$projectColorInput.val()} !important`;
|
2023-03-12 05:09:20 -06:00
|
|
|
$('.ui.modal').modal('hide');
|
2024-03-15 15:23:56 -06:00
|
|
|
}
|
2023-03-12 05:09:20 -06:00
|
|
|
});
|
2020-08-16 21:07:38 -06:00
|
|
|
});
|
|
|
|
|
2023-08-12 04:30:28 -06:00
|
|
|
$('.default-project-column-modal').each(function () {
|
2024-03-16 06:22:16 -06:00
|
|
|
const $boardColumn = $(this).closest('.project-column');
|
|
|
|
const $showButton = $($boardColumn).find('.default-project-column-show');
|
|
|
|
const $commitButton = $(this).find('.actions > .ok.button');
|
2021-01-15 13:29:32 -07:00
|
|
|
|
2024-03-16 06:22:16 -06:00
|
|
|
$($commitButton).on('click', async (e) => {
|
2023-04-19 08:28:28 -06:00
|
|
|
e.preventDefault();
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
try {
|
2024-03-16 06:22:16 -06:00
|
|
|
await POST($($showButton).data('url'));
|
2024-03-15 15:23:56 -06:00
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
2023-04-19 08:28:28 -06:00
|
|
|
window.location.reload();
|
2024-03-15 15:23:56 -06:00
|
|
|
}
|
2023-04-19 08:28:28 -06:00
|
|
|
});
|
2021-01-15 13:29:32 -07:00
|
|
|
});
|
2021-02-11 09:32:27 -07:00
|
|
|
|
2023-08-12 04:30:28 -06:00
|
|
|
$('.show-delete-project-column-modal').each(function () {
|
2024-03-22 13:56:38 -06:00
|
|
|
const $deleteColumnModal = $(`${this.getAttribute('data-modal')}`);
|
2024-03-16 06:22:16 -06:00
|
|
|
const $deleteColumnButton = $deleteColumnModal.find('.actions > .ok.button');
|
2024-03-22 13:56:38 -06:00
|
|
|
const deleteUrl = this.getAttribute('data-url');
|
2023-04-23 03:24:19 -06:00
|
|
|
|
2024-03-16 06:22:16 -06:00
|
|
|
$deleteColumnButton.on('click', async (e) => {
|
2020-08-16 21:07:38 -06:00
|
|
|
e.preventDefault();
|
|
|
|
|
2024-03-15 15:23:56 -06:00
|
|
|
try {
|
|
|
|
await DELETE(deleteUrl);
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
2021-01-15 13:29:32 -07:00
|
|
|
window.location.reload();
|
2024-03-15 15:23:56 -06:00
|
|
|
}
|
2020-08-16 21:07:38 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-08-12 04:30:28 -06:00
|
|
|
$('#new_project_column_submit').on('click', (e) => {
|
2020-08-16 21:07:38 -06:00
|
|
|
e.preventDefault();
|
2024-03-16 06:22:16 -06:00
|
|
|
const $columnTitle = $('#new_project_column');
|
|
|
|
const $projectColorInput = $('#new_project_column_color_picker');
|
|
|
|
if (!$columnTitle.val()) {
|
2023-06-13 03:57:03 -06:00
|
|
|
return;
|
|
|
|
}
|
2024-03-15 15:23:56 -06:00
|
|
|
const url = e.target.getAttribute('data-url');
|
2024-03-16 06:22:16 -06:00
|
|
|
createNewColumn(url, $columnTitle, $projectColorInput);
|
2023-06-13 03:57:03 -06:00
|
|
|
});
|
2020-08-16 21:07:38 -06:00
|
|
|
}
|
2021-09-29 14:53:12 -06:00
|
|
|
|
|
|
|
function setLabelColor(label, color) {
|
2023-07-09 04:17:22 -06:00
|
|
|
const {r, g, b} = tinycolor(color).toRgb();
|
2023-05-10 05:19:03 -06:00
|
|
|
if (useLightTextOnBackground(r, g, b)) {
|
2021-09-29 14:53:12 -06:00
|
|
|
label.removeClass('dark-label').addClass('light-label');
|
Scoped labels (#22585)
Add a new "exclusive" option per label. This makes it so that when the
label is named `scope/name`, no other label with the same `scope/`
prefix can be set on an issue.
The scope is determined by the last occurence of `/`, so for example
`scope/alpha/name` and `scope/beta/name` are considered to be in
different scopes and can coexist.
Exclusive scopes are not enforced by any database rules, however they
are enforced when editing labels at the models level, automatically
removing any existing labels in the same scope when either attaching a
new label or replacing all labels.
In menus use a circle instead of checkbox to indicate they function as
radio buttons per scope. Issue filtering by label ensures that only a
single scoped label is selected at a time. Clicking with alt key can be
used to remove a scoped label, both when editing individual issues and
batch editing.
Label rendering refactor for consistency and code simplification:
* Labels now consistently have the same shape, emojis and tooltips
everywhere. This includes the label list and label assignment menus.
* In label list, show description below label same as label menus.
* Don't use exactly black/white text colors to look a bit nicer.
* Simplify text color computation. There is no point computing luminance
in linear color space, as this is a perceptual problem and sRGB is
closer to perceptually linear.
* Increase height of label assignment menus to show more labels. Showing
only 3-4 labels at a time leads to a lot of scrolling.
* Render all labels with a new RenderLabel template helper function.
Label creation and editing in multiline modal menu:
* Change label creation to open a modal menu like label editing.
* Change menu layout to place name, description and colors on separate
lines.
* Don't color cancel button red in label editing modal menu.
* Align text to the left in model menu for better readability and
consistent with settings layout elsewhere.
Custom exclusive scoped label rendering:
* Display scoped label prefix and suffix with slightly darker and
lighter background color respectively, and a slanted edge between them
similar to the `/` symbol.
* In menus exclusive labels are grouped with a divider line.
---------
Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-02-18 12:17:39 -07:00
|
|
|
} else {
|
|
|
|
label.removeClass('light-label').addClass('dark-label');
|
2021-09-29 14:53:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function rgbToHex(rgb) {
|
Fixed colour transparency regex matching in project board sorting (#22091) (#22092)
As described in the linked issue (#22091), semi-transparent UI elements
would result in JS errors due to the fact that the CSS `backgroundColor`
element was being matched by the pattern
`^rgb\((\d+),\s*(\d+),\s*(\d+)\)$`, which does not take the alpha
channel into account.
I changed the pattern to `^rgba?\((\d+),\s*(\d+),\s*(\d+).*\)$`.
This new pattern accepts both `rgb` and `rgba` tuples, and ignores the
alpha channel (that little `.*` at the end) from the sorting criteria.
The reason why I chose to ignore alpha is because when it comes to
kanban colour sorting, only the hue is important; the order of the
panels should stay the same, even if some of them are transparent.
Alternative solutions were discussed in the bug report and are included
here for completeness:
1. Change the regex from ^rgb\((\d+),\s*(\d+),\s*(\d+)\)$ to
^rgba?\((\d+),\s*(\d+),\s*(\d+)(,\s*(\d+(\.\d+)?))?\)$ (alpha channel is
a float or NaN on 5th group) and include the alpha channel in the
sorting criteria.
2. Rethink on why you're reading colours out of the CSS in the first
place, then reformat this sorting procedure.
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
2022-12-21 05:19:04 -07:00
|
|
|
rgb = rgb.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+).*\)$/);
|
2021-09-29 14:53:12 -06:00
|
|
|
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];
|
|
|
|
}
|