mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-13 23:44:09 +01:00
38 lines
1.6 KiB
TypeScript
38 lines
1.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { MainContext, MainThreadLocalizationShape } from 'vs/workbench/api/common/extHost.protocol';
|
|
import { extHostNamedCustomer, IExtHostContext } from 'vs/workbench/services/extensions/common/extHostCustomers';
|
|
import { URI, UriComponents } from 'vs/base/common/uri';
|
|
import { IFileService } from 'vs/platform/files/common/files';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { ILanguagePackService } from 'vs/platform/languagePacks/common/languagePacks';
|
|
|
|
@extHostNamedCustomer(MainContext.MainThreadLocalization)
|
|
export class MainThreadLocalization extends Disposable implements MainThreadLocalizationShape {
|
|
|
|
constructor(
|
|
extHostContext: IExtHostContext,
|
|
@IFileService private readonly fileService: IFileService,
|
|
@ILanguagePackService private readonly languagePackService: ILanguagePackService
|
|
) {
|
|
super();
|
|
}
|
|
|
|
async $fetchBuiltInBundleUri(id: string, language: string): Promise<URI | undefined> {
|
|
try {
|
|
const uri = await this.languagePackService.getBuiltInExtensionTranslationsUri(id, language);
|
|
return uri;
|
|
} catch (e) {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
async $fetchBundleContents(uriComponents: UriComponents): Promise<string> {
|
|
const contents = await this.fileService.readFile(URI.revive(uriComponents));
|
|
return contents.value.toString();
|
|
}
|
|
}
|