@@ -20,9 +20,6 @@ import { GitProviderService } from './git/gitProviderService';
2020import { LineHoverController } from './hovers/lineHoverController' ;
2121import type { RepositoryPathMappingProvider } from './pathMapping/repositoryPathMappingProvider' ;
2222import { DraftService } from './plus/drafts/draftsService' ;
23- import { EnrichmentService } from './plus/focus/enrichmentService' ;
24- import { FocusIndicator } from './plus/focus/focusIndicator' ;
25- import { FocusProvider } from './plus/focus/focusProvider' ;
2623import { AccountAuthenticationProvider } from './plus/gk/account/authenticationProvider' ;
2724import { OrganizationService } from './plus/gk/account/organizationService' ;
2825import { SubscriptionService } from './plus/gk/account/subscriptionService' ;
@@ -32,6 +29,9 @@ import { IntegrationAuthenticationService } from './plus/integrations/authentica
3229import { IntegrationService } from './plus/integrations/integrationService' ;
3330import type { GitHubApi } from './plus/integrations/providers/github/github' ;
3431import type { GitLabApi } from './plus/integrations/providers/gitlab/gitlab' ;
32+ import { EnrichmentService } from './plus/launchpad/enrichmentService' ;
33+ import { LaunchpadIndicator } from './plus/launchpad/launchpadIndicator' ;
34+ import { LaunchpadProvider } from './plus/launchpad/launchpadProvider' ;
3535import { RepositoryIdentityService } from './plus/repos/repositoryIdentityService' ;
3636import { registerAccountWebviewView } from './plus/webviews/account/registration' ;
3737import type { GraphWebviewShowingArgs } from './plus/webviews/graph/registration' ;
@@ -193,7 +193,7 @@ export class Container {
193193 private _disposables : Disposable [ ] ;
194194 private _terminalLinks : GitTerminalLinkProvider | undefined ;
195195 private _webviews : WebviewsController ;
196- private _focusIndicator : FocusIndicator | undefined ;
196+ private _launchpadIndicator : LaunchpadIndicator | undefined ;
197197
198198 private constructor (
199199 context : ExtensionContext ,
@@ -234,7 +234,7 @@ export class Container {
234234 this . _disposables . push ( ( this . _keyboard = new Keyboard ( ) ) ) ;
235235 this . _disposables . push ( ( this . _vsls = new VslsController ( this ) ) ) ;
236236 this . _disposables . push ( ( this . _eventBus = new EventBus ( ) ) ) ;
237- this . _disposables . push ( ( this . _focusProvider = new FocusProvider ( this ) ) ) ;
237+ this . _disposables . push ( ( this . _launchpadProvider = new LaunchpadProvider ( this ) ) ) ;
238238
239239 this . _disposables . push ( ( this . _fileAnnotationController = new FileAnnotationController ( this ) ) ) ;
240240 this . _disposables . push ( ( this . _lineAnnotationController = new LineAnnotationController ( this ) ) ) ;
@@ -295,7 +295,7 @@ export class Container {
295295 this . _disposables . push ( ( this . _accountView = registerAccountWebviewView ( this . _webviews ) ) ) ;
296296
297297 if ( configuration . get ( 'launchpad.indicator.enabled' ) ) {
298- this . _disposables . push ( ( this . _focusIndicator = new FocusIndicator ( this , this . _focusProvider ) ) ) ;
298+ this . _disposables . push ( ( this . _launchpadIndicator = new LaunchpadIndicator ( this , this . _launchpadProvider ) ) ) ;
299299 }
300300
301301 if ( configuration . get ( 'terminalLinks.enabled' ) ) {
@@ -313,13 +313,15 @@ export class Container {
313313 }
314314
315315 if ( configuration . changed ( e , 'launchpad.indicator.enabled' ) ) {
316- this . _focusIndicator ?. dispose ( ) ;
317- this . _focusIndicator = undefined ;
316+ this . _launchpadIndicator ?. dispose ( ) ;
317+ this . _launchpadIndicator = undefined ;
318318
319319 this . telemetry . sendEvent ( 'launchpad/indicator/hidden' ) ;
320320
321321 if ( configuration . get ( 'launchpad.indicator.enabled' ) ) {
322- this . _disposables . push ( ( this . _focusIndicator = new FocusIndicator ( this , this . _focusProvider ) ) ) ;
322+ this . _disposables . push (
323+ ( this . _launchpadIndicator = new LaunchpadIndicator ( this , this . _launchpadProvider ) ) ,
324+ ) ;
323325 }
324326 }
325327 } ) ,
@@ -558,9 +560,9 @@ export class Container {
558560 return this . _fileHistoryView ;
559561 }
560562
561- private readonly _focusProvider : FocusProvider ;
562- get focus ( ) : FocusProvider {
563- return this . _focusProvider ;
563+ private readonly _launchpadProvider : LaunchpadProvider ;
564+ get launchpad ( ) : LaunchpadProvider {
565+ return this . _launchpadProvider ;
564566 }
565567
566568 private readonly _git : GitProviderService ;
0 commit comments