Pull caption from product.json (#83844)

This commit is contained in:
Chris Dias 2019-11-04 07:00:04 -05:00 committed by Christof Marti
parent 2b30c13224
commit e8a6f3f01c

View file

@ -43,6 +43,7 @@ import { joinPath } from 'vs/base/common/resources';
import { IRecentlyOpened, isRecentWorkspace, IRecentWorkspace, IRecentFolder, isRecentFolder, IWorkspacesService } from 'vs/platform/workspaces/common/workspaces';
import { CancellationToken } from 'vs/base/common/cancellation';
import { IHostService } from 'vs/workbench/services/host/browser/host';
import { IProductService } from 'vs/platform/product/common/productService';
const configurationKey = 'workbench.startupEditor';
const oldConfigurationKey = 'workbench.welcome.enabled';
@ -263,7 +264,9 @@ class WelcomePage extends Disposable {
@IExtensionsWorkbenchService private readonly extensionsWorkbenchService: IExtensionsWorkbenchService,
@ILifecycleService lifecycleService: ILifecycleService,
@ITelemetryService private readonly telemetryService: ITelemetryService,
@IHostService private readonly hostService: IHostService
@IHostService private readonly hostService: IHostService,
@IProductService private readonly productService: IProductService,
) {
super();
this._register(lifecycleService.onShutdown(() => this.dispose()));
@ -298,6 +301,11 @@ class WelcomePage extends Disposable {
this.configurationService.updateValue(configurationKey, showOnStartup.checked ? 'welcomePage' : 'newUntitledFile', ConfigurationTarget.USER);
});
const prodName = container.querySelector('.welcomePage .title .caption') as HTMLElement;
if (prodName) {
prodName.innerHTML = this.productService.nameLong;
}
recentlyOpened.then(({ workspaces }) => {
// Filter out the current workspace
workspaces = workspaces.filter(recent => !this.contextService.isCurrentWorkspace(isRecentWorkspace(recent) ? recent.workspace : recent.folderUri));