2023-05-17 16:11:13 +08:00
|
|
|
import {minimatch} from 'minimatch';
|
2024-07-07 17:32:30 +02:00
|
|
|
import {createMonaco} from './codeeditor.ts';
|
|
|
|
import {onInputDebounce, queryElems, toggleElem} from '../utils/dom.ts';
|
|
|
|
import {POST} from '../modules/fetch.ts';
|
2025-02-06 21:07:44 +08:00
|
|
|
import {initAvatarUploaderWithCropper} from './comp/Cropper.ts';
|
2024-11-28 10:15:59 +08:00
|
|
|
import {initRepoSettingsBranchesDrag} from './repo-settings-branches.ts';
|
2025-03-05 01:19:03 +08:00
|
|
|
import {fomanticQuery} from '../modules/fomantic/base.ts';
|
2021-10-17 01:28:04 +08:00
|
|
|
|
2021-10-21 15:37:43 +08:00
|
|
|
const {appSubUrl, csrfToken} = window.config;
|
2021-10-17 01:28:04 +08:00
|
|
|
|
2024-11-03 19:00:12 +08:00
|
|
|
function initRepoSettingsCollaboration() {
|
2021-10-17 01:28:04 +08:00
|
|
|
// Change collaborator access mode
|
2024-11-08 14:04:24 +08:00
|
|
|
for (const dropdownEl of queryElems(document, '.page-content.repository .ui.dropdown.access-mode')) {
|
2024-06-10 12:12:31 +02:00
|
|
|
const textEl = dropdownEl.querySelector(':scope > .text');
|
2025-03-05 01:19:03 +08:00
|
|
|
const $dropdown = fomanticQuery(dropdownEl);
|
|
|
|
$dropdown.dropdown({
|
2025-01-22 08:11:51 +01:00
|
|
|
async action(text: string, value: string) {
|
2024-06-10 12:12:31 +02:00
|
|
|
dropdownEl.classList.add('is-loading', 'loading-icon-2px');
|
|
|
|
const lastValue = dropdownEl.getAttribute('data-last-value');
|
2025-03-05 01:19:03 +08:00
|
|
|
$dropdown.dropdown('hide');
|
2024-02-25 01:08:51 +02:00
|
|
|
try {
|
2024-06-10 12:12:31 +02:00
|
|
|
const uid = dropdownEl.getAttribute('data-uid');
|
|
|
|
await POST(dropdownEl.getAttribute('data-url'), {data: new URLSearchParams({uid, 'mode': value})});
|
|
|
|
textEl.textContent = text;
|
|
|
|
dropdownEl.setAttribute('data-last-value', value);
|
2024-02-25 01:08:51 +02:00
|
|
|
} catch {
|
2024-06-10 12:12:31 +02:00
|
|
|
textEl.textContent = '(error)'; // prevent from misleading users when error occurs
|
|
|
|
dropdownEl.setAttribute('data-last-value', lastValue);
|
|
|
|
} finally {
|
|
|
|
dropdownEl.classList.remove('is-loading');
|
2024-02-25 01:08:51 +02:00
|
|
|
}
|
2022-06-04 05:38:26 +08:00
|
|
|
},
|
|
|
|
onHide() {
|
2024-06-10 12:12:31 +02:00
|
|
|
// set to the really selected value, defer to next tick to make sure `action` has finished
|
|
|
|
// its work because the calling order might be onHide -> action
|
2022-06-04 05:38:26 +08:00
|
|
|
setTimeout(() => {
|
2025-03-05 01:19:03 +08:00
|
|
|
const $item = $dropdown.dropdown('get item', dropdownEl.getAttribute('data-last-value'));
|
2022-06-04 05:38:26 +08:00
|
|
|
if ($item) {
|
2025-03-05 01:19:03 +08:00
|
|
|
$dropdown.dropdown('set selected', dropdownEl.getAttribute('data-last-value'));
|
2022-06-04 05:38:26 +08:00
|
|
|
} else {
|
2024-06-10 12:12:31 +02:00
|
|
|
textEl.textContent = '(none)'; // prevent from misleading users when the access mode is undefined
|
2022-06-04 05:38:26 +08:00
|
|
|
}
|
|
|
|
}, 0);
|
2024-03-22 15:06:53 +01:00
|
|
|
},
|
2021-10-17 01:28:04 +08:00
|
|
|
});
|
2024-06-10 12:12:31 +02:00
|
|
|
}
|
2021-10-17 01:28:04 +08:00
|
|
|
}
|
|
|
|
|
2024-11-03 19:00:12 +08:00
|
|
|
function initRepoSettingsSearchTeamBox() {
|
2024-06-10 22:49:33 +02:00
|
|
|
const searchTeamBox = document.querySelector('#search-team-box');
|
2024-03-23 14:28:53 +02:00
|
|
|
if (!searchTeamBox) return;
|
|
|
|
|
2025-03-05 01:19:03 +08:00
|
|
|
fomanticQuery(searchTeamBox).search({
|
2021-10-17 01:28:04 +08:00
|
|
|
minCharacters: 2,
|
2025-03-05 01:19:03 +08:00
|
|
|
searchFields: ['name', 'description'],
|
|
|
|
showNoResults: false,
|
|
|
|
rawResponse: true,
|
2021-10-17 01:28:04 +08:00
|
|
|
apiSettings: {
|
2024-03-23 14:28:53 +02:00
|
|
|
url: `${appSubUrl}/org/${searchTeamBox.getAttribute('data-org-name')}/teams/-/search?q={query}`,
|
2021-10-21 15:37:43 +08:00
|
|
|
headers: {'X-Csrf-Token': csrfToken},
|
2025-01-22 08:11:51 +01:00
|
|
|
onResponse(response: any) {
|
|
|
|
const items: Array<Record<string, any>> = [];
|
2025-03-05 01:19:03 +08:00
|
|
|
for (const item of response.data) {
|
2021-10-17 01:28:04 +08:00
|
|
|
items.push({
|
2024-02-01 18:10:16 +01:00
|
|
|
title: item.name,
|
2024-03-22 15:06:53 +01:00
|
|
|
description: `${item.permission} access`, // TODO: translate this string
|
2021-10-17 01:28:04 +08:00
|
|
|
});
|
2025-03-05 01:19:03 +08:00
|
|
|
}
|
2021-10-17 01:28:04 +08:00
|
|
|
return {results: items};
|
2024-03-22 15:06:53 +01:00
|
|
|
},
|
2021-10-17 01:28:04 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-11-03 19:00:12 +08:00
|
|
|
function initRepoSettingsGitHook() {
|
2025-03-05 01:19:03 +08:00
|
|
|
if (!document.querySelector('.page-content.repository.settings.edit.githook')) return;
|
2021-10-17 01:28:04 +08:00
|
|
|
const filename = document.querySelector('.hook-filename').textContent;
|
2025-03-05 01:19:03 +08:00
|
|
|
createMonaco(document.querySelector<HTMLTextAreaElement>('#content'), filename, {language: 'shell'});
|
2021-10-17 01:28:04 +08:00
|
|
|
}
|
|
|
|
|
2024-11-03 19:00:12 +08:00
|
|
|
function initRepoSettingsBranches() {
|
2024-03-31 00:30:00 +03:00
|
|
|
if (!document.querySelector('.repository.settings.branches')) return;
|
|
|
|
|
2025-01-15 21:26:17 +01:00
|
|
|
for (const el of document.querySelectorAll<HTMLInputElement>('.toggle-target-enabled')) {
|
2024-03-31 00:30:00 +03:00
|
|
|
el.addEventListener('change', function () {
|
|
|
|
const target = document.querySelector(this.getAttribute('data-target'));
|
|
|
|
target?.classList.toggle('disabled', !this.checked);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2025-01-15 21:26:17 +01:00
|
|
|
for (const el of document.querySelectorAll<HTMLInputElement>('.toggle-target-disabled')) {
|
2024-03-31 00:30:00 +03:00
|
|
|
el.addEventListener('change', function () {
|
|
|
|
const target = document.querySelector(this.getAttribute('data-target'));
|
|
|
|
if (this.checked) target?.classList.add('disabled'); // only disable, do not auto enable
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2025-01-15 21:26:17 +01:00
|
|
|
document.querySelector<HTMLInputElement>('#dismiss_stale_approvals')?.addEventListener('change', function () {
|
2024-06-10 22:49:33 +02:00
|
|
|
document.querySelector('#ignore_stale_approvals_box')?.classList.toggle('disabled', this.checked);
|
2024-01-15 08:20:01 +01:00
|
|
|
});
|
2023-05-17 16:11:13 +08:00
|
|
|
|
|
|
|
// show the `Matched` mark for the status checks that match the pattern
|
|
|
|
const markMatchedStatusChecks = () => {
|
2024-12-11 09:29:04 +01:00
|
|
|
const patterns = (document.querySelector<HTMLTextAreaElement>('#status_check_contexts').value || '').split(/[\r\n]+/);
|
2023-05-17 16:11:13 +08:00
|
|
|
const validPatterns = patterns.map((item) => item.trim()).filter(Boolean);
|
2024-06-10 22:49:33 +02:00
|
|
|
const marks = document.querySelectorAll('.status-check-matched-mark');
|
2023-05-17 16:11:13 +08:00
|
|
|
|
|
|
|
for (const el of marks) {
|
|
|
|
let matched = false;
|
|
|
|
const statusCheck = el.getAttribute('data-status-check');
|
|
|
|
for (const pattern of validPatterns) {
|
2025-01-07 00:23:50 +01:00
|
|
|
if (minimatch(statusCheck, pattern, {noext: true})) { // https://github.com/go-gitea/gitea/issues/33121 disable extended glob syntax
|
2023-05-17 16:11:13 +08:00
|
|
|
matched = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toggleElem(el, matched);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
markMatchedStatusChecks();
|
2024-06-10 22:49:33 +02:00
|
|
|
document.querySelector('#status_check_contexts').addEventListener('input', onInputDebounce(markMatchedStatusChecks));
|
2021-10-17 01:28:04 +08:00
|
|
|
}
|
2024-11-03 19:00:12 +08:00
|
|
|
|
|
|
|
function initRepoSettingsOptions() {
|
2025-03-05 01:19:03 +08:00
|
|
|
const pageContent = document.querySelector('.page-content.repository.settings.options');
|
|
|
|
if (!pageContent) return;
|
|
|
|
|
|
|
|
const toggleClass = (elems: NodeListOf<Element>, className: string, value: boolean) => {
|
|
|
|
for (const el of elems) el.classList.toggle(className, value);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Enable or select internal/external wiki system and issue tracker.
|
|
|
|
queryElems<HTMLInputElement>(pageContent, '.enable-system', (el) => el.addEventListener('change', () => {
|
|
|
|
const elTargets = document.querySelectorAll(el.getAttribute('data-target'));
|
|
|
|
const elContexts = document.querySelectorAll(el.getAttribute('data-context'));
|
|
|
|
toggleClass(elTargets, 'disabled', !el.checked);
|
|
|
|
toggleClass(elContexts, 'disabled', el.checked);
|
|
|
|
}));
|
|
|
|
queryElems<HTMLInputElement>(pageContent, '.enable-system-radio', (el) => el.addEventListener('change', () => {
|
|
|
|
const elTargets = document.querySelectorAll(el.getAttribute('data-target'));
|
|
|
|
const elContexts = document.querySelectorAll(el.getAttribute('data-context'));
|
|
|
|
toggleClass(elTargets, 'disabled', el.value === 'false');
|
|
|
|
toggleClass(elContexts, 'disabled', el.value === 'true');
|
|
|
|
}));
|
|
|
|
|
|
|
|
queryElems<HTMLInputElement>(pageContent, '.js-tracker-issue-style', (el) => el.addEventListener('change', () => {
|
|
|
|
const checkedVal = el.value;
|
|
|
|
pageContent.querySelector('#tracker-issue-style-regex-box').classList.toggle('disabled', checkedVal !== 'regexp');
|
|
|
|
}));
|
2024-11-03 19:00:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoSettings() {
|
|
|
|
if (!document.querySelector('.page-content.repository.settings')) return;
|
|
|
|
initRepoSettingsOptions();
|
|
|
|
initRepoSettingsBranches();
|
|
|
|
initRepoSettingsCollaboration();
|
|
|
|
initRepoSettingsSearchTeamBox();
|
|
|
|
initRepoSettingsGitHook();
|
2024-11-28 10:15:59 +08:00
|
|
|
initRepoSettingsBranchesDrag();
|
2025-02-06 21:07:44 +08:00
|
|
|
|
|
|
|
queryElems(document, '.avatar-file-with-cropper', initAvatarUploaderWithCropper);
|
2024-11-03 19:00:12 +08:00
|
|
|
}
|