2022-01-28 21:00:11 +00:00
import $ from 'jquery' ;
2023-05-17 08:11:13 +00:00
import { minimatch } from 'minimatch' ;
2021-10-16 17:28:04 +00:00
import { createMonaco } from './codeeditor.js' ;
2023-05-17 08:11:13 +00:00
import { onInputDebounce , toggleElem } from '../utils/dom.js' ;
2021-10-16 17:28:04 +00:00
2021-10-21 07:37:43 +00:00
const { appSubUrl , csrfToken } = window . config ;
2021-10-16 17:28:04 +00:00
export function initRepoSettingsCollaboration ( ) {
// Change collaborator access mode
2022-06-03 21:38:26 +00:00
$ ( '.page-content.repository .ui.dropdown.access-mode' ) . each ( ( _ , e ) => {
const $dropdown = $ ( e ) ;
const $text = $dropdown . find ( '> .text' ) ;
$dropdown . dropdown ( {
action ( _text , value ) {
const lastValue = $dropdown . attr ( 'data-last-value' ) ;
$ . post ( $dropdown . attr ( 'data-url' ) , {
_csrf : csrfToken ,
uid : $dropdown . attr ( 'data-uid' ) ,
mode : value ,
} ) . fail ( ( ) => {
$text . text ( '(error)' ) ; // prevent from misleading users when error occurs
$dropdown . attr ( 'data-last-value' , lastValue ) ;
} ) ;
$dropdown . attr ( 'data-last-value' , value ) ;
$dropdown . dropdown ( 'hide' ) ;
} ,
onChange ( _value , text , _$choice ) {
$text . text ( text ) ; // update the text when using keyboard navigating
} ,
onHide ( ) {
// 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
setTimeout ( ( ) => {
const $item = $dropdown . dropdown ( 'get item' , $dropdown . attr ( 'data-last-value' ) ) ;
if ( $item ) {
$dropdown . dropdown ( 'set selected' , $dropdown . attr ( 'data-last-value' ) ) ;
} else {
2023-05-02 09:54:29 +00:00
$text . text ( '(none)' ) ; // prevent from misleading users when the access mode is undefined
2022-06-03 21:38:26 +00:00
}
} , 0 ) ;
}
2021-10-16 17:28:04 +00:00
} ) ;
} ) ;
}
export function initRepoSettingSearchTeamBox ( ) {
const $searchTeamBox = $ ( '#search-team-box' ) ;
$searchTeamBox . search ( {
minCharacters : 2 ,
apiSettings : {
2022-04-07 18:59:56 +00:00
url : ` ${ appSubUrl } /org/ ${ $searchTeamBox . data ( 'org' ) } /teams/-/search?q={query} ` ,
2021-10-21 07:37:43 +00:00
headers : { 'X-Csrf-Token' : csrfToken } ,
2021-10-16 17:28:04 +00:00
onResponse ( response ) {
const items = [ ] ;
$ . each ( response . data , ( _i , item ) => {
const title = ` ${ item . name } ( ${ item . permission } access) ` ;
items . push ( {
title ,
} ) ;
} ) ;
return { results : items } ;
}
} ,
searchFields : [ 'name' , 'description' ] ,
showNoResults : false
} ) ;
}
2021-11-09 09:27:25 +00:00
export function initRepoSettingGitHook ( ) {
2021-10-16 17:28:04 +00:00
if ( $ ( '.edit.githook' ) . length === 0 ) return ;
const filename = document . querySelector ( '.hook-filename' ) . textContent ;
2021-11-09 09:27:25 +00:00
const _promise = createMonaco ( $ ( '#content' ) [ 0 ] , filename , { language : 'shell' } ) ;
2021-10-16 17:28:04 +00:00
}
export function initRepoSettingBranches ( ) {
2023-04-29 10:44:52 +00:00
if ( ! $ ( '.repository.settings.branches' ) . length ) return ;
$ ( '.toggle-target-enabled' ) . on ( 'change' , function ( ) {
const $target = $ ( $ ( this ) . attr ( 'data-target' ) ) ;
$target . toggleClass ( 'disabled' , ! this . checked ) ;
} ) ;
$ ( '.toggle-target-disabled' ) . on ( 'change' , function ( ) {
const $target = $ ( $ ( this ) . attr ( 'data-target' ) ) ;
if ( this . checked ) $target . addClass ( 'disabled' ) ; // only disable, do not auto enable
} ) ;
2023-05-17 08:11:13 +00: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-16 17:28:04 +00:00
}