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' ;
2024-02-24 23:08:51 +00:00
import { POST } from '../modules/fetch.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
2024-03-23 12:28:53 +00:00
$ ( '.page-content.repository .ui.dropdown.access-mode' ) . each ( ( _ , el ) => {
const $dropdown = $ ( el ) ;
2022-06-03 21:38:26 +00:00
const $text = $dropdown . find ( '> .text' ) ;
$dropdown . dropdown ( {
2024-02-24 23:08:51 +00:00
async action ( _text , value ) {
2024-03-23 12:28:53 +00:00
const lastValue = el . getAttribute ( 'data-last-value' ) ;
2024-02-24 23:08:51 +00:00
try {
2024-03-23 12:28:53 +00:00
el . setAttribute ( 'data-last-value' , value ) ;
2024-02-24 23:08:51 +00:00
$dropdown . dropdown ( 'hide' ) ;
const data = new FormData ( ) ;
2024-03-23 12:28:53 +00:00
data . append ( 'uid' , el . getAttribute ( 'data-uid' ) ) ;
2024-02-24 23:08:51 +00:00
data . append ( 'mode' , value ) ;
2024-03-23 12:28:53 +00:00
await POST ( el . getAttribute ( 'data-url' ) , { data } ) ;
2024-02-24 23:08:51 +00:00
} catch {
2022-06-03 21:38:26 +00:00
$text . text ( '(error)' ) ; // prevent from misleading users when error occurs
2024-03-23 12:28:53 +00:00
el . setAttribute ( 'data-last-value' , lastValue ) ;
2024-02-24 23:08:51 +00:00
}
2022-06-03 21:38:26 +00:00
} ,
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 ( ( ) => {
2024-03-23 12:28:53 +00:00
const $item = $dropdown . dropdown ( 'get item' , el . getAttribute ( 'data-last-value' ) ) ;
2022-06-03 21:38:26 +00:00
if ( $item ) {
2024-03-23 12:28:53 +00:00
$dropdown . dropdown ( 'set selected' , el . getAttribute ( 'data-last-value' ) ) ;
2022-06-03 21:38:26 +00:00
} 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 ) ;
2024-03-22 14:06:53 +00:00
} ,
2021-10-16 17:28:04 +00:00
} ) ;
} ) ;
}
export function initRepoSettingSearchTeamBox ( ) {
2024-03-23 12:28:53 +00:00
const searchTeamBox = document . getElementById ( 'search-team-box' ) ;
if ( ! searchTeamBox ) return ;
$ ( searchTeamBox ) . search ( {
2021-10-16 17:28:04 +00:00
minCharacters : 2 ,
apiSettings : {
2024-03-23 12:28:53 +00:00
url : ` ${ appSubUrl } /org/ ${ searchTeamBox . getAttribute ( 'data-org-name' ) } /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 ) => {
items . push ( {
2024-02-01 17:10:16 +00:00
title : item . name ,
2024-03-22 14:06:53 +00:00
description : ` ${ item . permission } access ` , // TODO: translate this string
2021-10-16 17:28:04 +00:00
} ) ;
} ) ;
return { results : items } ;
2024-03-22 14:06:53 +00:00
} ,
2021-10-16 17:28:04 +00:00
} ,
searchFields : [ 'name' , 'description' ] ,
2024-03-22 14:06:53 +00:00
showNoResults : false ,
2021-10-16 17:28:04 +00:00
} ) ;
}
2021-11-09 09:27:25 +00:00
export function initRepoSettingGitHook ( ) {
2024-03-25 18:37:55 +00:00
if ( ! $ ( '.edit.githook' ) . length ) return ;
2021-10-16 17:28:04 +00:00
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 ( ) {
2024-03-30 21:30:00 +00: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 07:20:01 +00:00
} ) ;
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
}