2022-01-28 13:00:11 -08:00
import $ from 'jquery' ;
2023-05-17 16:11:13 +08:00
import { minimatch } from 'minimatch' ;
2021-10-17 01:28:04 +08:00
import { createMonaco } from './codeeditor.js' ;
2024-06-10 12:12:31 +02:00
import { onInputDebounce , queryElems , toggleElem } from '../utils/dom.js' ;
2024-02-25 01:08:51 +02:00
import { POST } from '../modules/fetch.js' ;
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
export function initRepoSettingsCollaboration ( ) {
// Change collaborator access mode
2024-06-10 12:12:31 +02:00
for ( const dropdownEl of queryElems ( '.page-content.repository .ui.dropdown.access-mode' ) ) {
const textEl = dropdownEl . querySelector ( ':scope > .text' ) ;
$ ( dropdownEl ) . dropdown ( {
async action ( text , value ) {
dropdownEl . classList . add ( 'is-loading' , 'loading-icon-2px' ) ;
const lastValue = dropdownEl . getAttribute ( 'data-last-value' ) ;
$ ( dropdownEl ) . 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 ( ( ) => {
2024-06-10 12:12:31 +02:00
const $item = $ ( dropdownEl ) . dropdown ( 'get item' , dropdownEl . getAttribute ( 'data-last-value' ) ) ;
2022-06-04 05:38:26 +08:00
if ( $item ) {
2024-06-10 12:12:31 +02:00
$ ( dropdownEl ) . 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
}
export function initRepoSettingSearchTeamBox ( ) {
2024-03-23 14:28:53 +02:00
const searchTeamBox = document . getElementById ( 'search-team-box' ) ;
if ( ! searchTeamBox ) return ;
$ ( searchTeamBox ) . search ( {
2021-10-17 01:28:04 +08:00
minCharacters : 2 ,
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 } ,
2021-10-17 01:28:04 +08:00
onResponse ( response ) {
const items = [ ] ;
$ . each ( response . data , ( _i , item ) => {
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
} ) ;
} ) ;
return { results : items } ;
2024-03-22 15:06:53 +01:00
} ,
2021-10-17 01:28:04 +08:00
} ,
searchFields : [ 'name' , 'description' ] ,
2024-03-22 15:06:53 +01:00
showNoResults : false ,
2021-10-17 01:28:04 +08:00
} ) ;
}
2021-11-09 17:27:25 +08:00
export function initRepoSettingGitHook ( ) {
2024-03-25 19:37:55 +01:00
if ( ! $ ( '.edit.githook' ) . length ) return ;
2021-10-17 01:28:04 +08:00
const filename = document . querySelector ( '.hook-filename' ) . textContent ;
2021-11-09 17:27:25 +08:00
const _promise = createMonaco ( $ ( '#content' ) [ 0 ] , filename , { language : 'shell' } ) ;
2021-10-17 01:28:04 +08:00
}
export function initRepoSettingBranches ( ) {
2024-03-31 00:30:00 +03:00
if ( ! document . querySelector ( '.repository.settings.branches' ) ) return ;
for ( const el of document . getElementsByClassName ( 'toggle-target-enabled' ) ) {
el . addEventListener ( 'change' , function ( ) {
const target = document . querySelector ( this . getAttribute ( 'data-target' ) ) ;
target ? . classList . toggle ( 'disabled' , ! this . checked ) ;
} ) ;
}
for ( const el of document . getElementsByClassName ( 'toggle-target-disabled' ) ) {
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
} ) ;
}
document . getElementById ( 'dismiss_stale_approvals' ) ? . addEventListener ( 'change' , function ( ) {
document . getElementById ( '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 = ( ) => {
const patterns = ( document . getElementById ( 'status_check_contexts' ) . value || '' ) . split ( /[\r\n]+/ ) ;
const validPatterns = patterns . map ( ( item ) => item . trim ( ) ) . filter ( Boolean ) ;
const marks = document . getElementsByClassName ( 'status-check-matched-mark' ) ;
for ( const el of marks ) {
let matched = false ;
const statusCheck = el . getAttribute ( 'data-status-check' ) ;
for ( const pattern of validPatterns ) {
if ( minimatch ( statusCheck , pattern ) ) {
matched = true ;
break ;
}
}
toggleElem ( el , matched ) ;
}
} ;
markMatchedStatusChecks ( ) ;
document . getElementById ( 'status_check_contexts' ) . addEventListener ( 'input' , onInputDebounce ( markMatchedStatusChecks ) ) ;
2021-10-17 01:28:04 +08:00
}