@@ -26,6 +26,7 @@ import type { Issue } from '../../git/models/issue';
26
26
import type { GitPausedOperationStatus } from '../../git/models/pausedOperationStatus' ;
27
27
import type { PullRequest } from '../../git/models/pullRequest' ;
28
28
import { getComparisonRefsForPullRequest } from '../../git/models/pullRequest' ;
29
+ import type { GitBranchReference } from '../../git/models/reference' ;
29
30
import { getReferenceFromBranch } from '../../git/models/reference.utils' ;
30
31
import { RemoteResourceType } from '../../git/models/remoteResource' ;
31
32
import type { Repository } from '../../git/models/repository' ;
@@ -68,6 +69,7 @@ import type {
68
69
GetOverviewResponse ,
69
70
IntegrationState ,
70
71
OpenInGraphParams ,
72
+ OverviewBranchIssue ,
71
73
OverviewFilters ,
72
74
OverviewRecentThreshold ,
73
75
OverviewStaleThreshold ,
@@ -312,6 +314,7 @@ export class HomeWebviewProvider implements WebviewProvider<State, State, HomeWe
312
314
registerCommand ( 'gitlens.home.continuePausedOperation' , this . continuePausedOperation , this ) ,
313
315
registerCommand ( 'gitlens.home.abortPausedOperation' , this . abortPausedOperation , this ) ,
314
316
registerCommand ( 'gitlens.home.openRebaseEditor' , this . openRebaseEditor , this ) ,
317
+ registerCommand ( 'gitlens.home.unlinkIssue' , this . unlinkIssue , this ) ,
315
318
] ;
316
319
}
317
320
@@ -504,6 +507,35 @@ export class HomeWebviewProvider implements WebviewProvider<State, State, HomeWe
504
507
} ) ;
505
508
}
506
509
510
+ private async unlinkIssue ( { issue, reference } : { reference : GitBranchReference ; issue : OverviewBranchIssue } ) {
511
+ const skipPrompt = this . container . storage . get ( 'autolinks:branches:ignore:skipPrompt' ) || undefined ;
512
+ const item =
513
+ skipPrompt ??
514
+ ( await window . showWarningMessage (
515
+ `This action will unlink the issue ${ issue . url } from the branch ${ reference . name } forever` ,
516
+ {
517
+ modal : true ,
518
+ } ,
519
+ `OK` ,
520
+ `OK, Don't ask again` ,
521
+ ) ) ;
522
+ if ( ! item ) {
523
+ return ;
524
+ }
525
+ if ( item === `OK, Don't ask again` ) {
526
+ void this . container . storage . store ( 'autolinks:branches:ignore:skipPrompt' , true ) ;
527
+ }
528
+ const prev = this . container . storage . get ( 'autolinks:branches:ignore' ) ?? { } ;
529
+ const refId = reference . id ?? `${ reference . repoPath } /${ reference . remote } /${ reference . ref } ` ;
530
+ await this . container . storage
531
+ . store ( 'autolinks:branches:ignore' , {
532
+ ...prev ,
533
+ [ refId ] : [ ...( prev [ refId ] ?? [ ] ) , issue . url ] ,
534
+ } )
535
+ . catch ( ) ;
536
+ void this . host . notify ( DidChangeRepositoryWip , undefined ) ;
537
+ }
538
+
507
539
private async createCloudPatch ( ref : BranchRef ) {
508
540
const status = await this . container . git . status ( ref . repoPath ) . getStatus ( ) ;
509
541
if ( status == null ) return ;
@@ -1192,12 +1224,13 @@ function getOverviewBranches(
1192
1224
const wt = worktreesByBranch . get ( branch . id ) ;
1193
1225
const worktree : GetOverviewBranch [ 'worktree' ] = wt ? { name : wt . name , uri : wt . uri . toString ( ) } : undefined ;
1194
1226
1227
+ const ignored = container . storage . get ( 'autolinks:branches:ignore' ) ?. [ branch . id ] ;
1195
1228
const timestamp = branch . date ?. getTime ( ) ;
1196
1229
if ( branch . current || wt ?. opened ) {
1197
1230
const forceOptions = options ?. forceActive ? { force : true } : undefined ;
1198
1231
if ( options ?. isPro !== false ) {
1199
1232
prPromises . set ( branch . id , getPullRequestInfo ( container , branch , launchpadPromise ) ) ;
1200
- autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ) ) ;
1233
+ autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ignored ) ) ;
1201
1234
issuePromises . set (
1202
1235
branch . id ,
1203
1236
getAssociatedIssuesForBranch ( container , branch ) . then ( issues => issues . value ) ,
@@ -1239,7 +1272,7 @@ function getOverviewBranches(
1239
1272
if ( timestamp != null && timestamp > recentThreshold ) {
1240
1273
if ( options ?. isPro !== false ) {
1241
1274
prPromises . set ( branch . id , getPullRequestInfo ( container , branch , launchpadPromise ) ) ;
1242
- autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ) ) ;
1275
+ autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ignored ) ) ;
1243
1276
issuePromises . set (
1244
1277
branch . id ,
1245
1278
getAssociatedIssuesForBranch ( container , branch ) . then ( issues => issues . value ) ,
@@ -1288,7 +1321,8 @@ function getOverviewBranches(
1288
1321
}
1289
1322
1290
1323
if ( options ?. isPro !== false ) {
1291
- autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ) ) ;
1324
+ const ignored = container . storage . get ( 'autolinks:branches:ignore' ) ?. [ branch . id ] ;
1325
+ autolinkPromises . set ( branch . id , branch . getEnrichedAutolinks ( ignored ) ) ;
1292
1326
issuePromises . set (
1293
1327
branch . id ,
1294
1328
getAssociatedIssuesForBranch ( container , branch ) . then ( issues => issues . value ) ,
@@ -1406,6 +1440,8 @@ async function getAutolinkIssuesInfo(links: Map<string, EnrichedAutolink> | unde
1406
1440
title : issue . title ,
1407
1441
url : issue . url ,
1408
1442
state : issue . state ,
1443
+ type : issue . type ,
1444
+ isAutolink : true ,
1409
1445
} ;
1410
1446
} ) ,
1411
1447
) ;
0 commit comments