forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
Configure Display Language
command (eclipse-theia#11289)
- Loading branch information
Showing
11 changed files
with
293 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
128 changes: 128 additions & 0 deletions
128
packages/core/src/browser/i18n/language-quick-pick-service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
// ***************************************************************************** | ||
// Copyright (C) 2022 TypeFox and others. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// http://www.eclipse.org/legal/epl-2.0. | ||
// | ||
// This Source Code may also be made available under the following Secondary | ||
// Licenses when the conditions for such availability set forth in the Eclipse | ||
// Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
// with the GNU Classpath Exception which is available at | ||
// https://www.gnu.org/software/classpath/license.html. | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
// ***************************************************************************** | ||
|
||
import { inject, injectable } from 'inversify'; | ||
import { nls } from '../../common/nls'; | ||
import { AsyncLocalizationProvider, LanguageInfo } from '../../common/i18n/localization'; | ||
import { QuickInputService, QuickPickItem, QuickPickSeparator } from '../quick-input'; | ||
import { WindowService } from '../window/window-service'; | ||
|
||
export interface LanguageQuickPickItem extends QuickPickItem { | ||
languageId: string | ||
execute?(): Promise<void> | ||
} | ||
|
||
@injectable() | ||
export class LanguageQuickPickService { | ||
|
||
@inject(QuickInputService) protected readonly quickInputService: QuickInputService; | ||
@inject(AsyncLocalizationProvider) protected readonly localizationProvider: AsyncLocalizationProvider; | ||
@inject(WindowService) protected readonly windowService: WindowService; | ||
|
||
async pickDisplayLanguage(): Promise<string | undefined> { | ||
const quickInput = this.quickInputService.createQuickPick<LanguageQuickPickItem>(); | ||
const installedItems = await this.getInstalledLanguages(); | ||
const quickInputItems: (LanguageQuickPickItem | QuickPickSeparator)[] = [ | ||
{ | ||
type: 'separator', | ||
label: nls.localize('theia/core/installedLanguages', 'Installed languages') | ||
}, | ||
...installedItems | ||
]; | ||
quickInput.items = quickInputItems; | ||
quickInput.busy = true; | ||
const selected = installedItems.find(item => nls.isSelectedLocale(item.languageId)); | ||
if (selected) { | ||
quickInput.activeItems = [selected]; | ||
} | ||
quickInput.placeholder = nls.localizeByDefault('Configure Display Language'); | ||
quickInput.show(); | ||
|
||
this.getAvailableLanguages().then(availableItems => { | ||
if (availableItems.length > 0) { | ||
quickInputItems.push({ | ||
type: 'separator', | ||
label: nls.localize('theia/core/availableLanguages', 'Available languages') | ||
}); | ||
const installed = new Set(installedItems.map(e => e.languageId)); | ||
for (const available of availableItems) { | ||
// Exclude already installed languages | ||
if (!installed.has(available.languageId)) { | ||
quickInputItems.push(available); | ||
} | ||
} | ||
quickInput.items = quickInputItems; | ||
} | ||
}).finally(() => { | ||
quickInput.busy = false; | ||
}); | ||
|
||
return new Promise(resolve => { | ||
quickInput.onDidAccept(async () => { | ||
const selectedItem = quickInput.selectedItems[0]; | ||
if (selectedItem) { | ||
// Some language quick pick items want to install additional languages | ||
// We have to await that before returning the selected locale | ||
await selectedItem.execute?.(); | ||
resolve(selectedItem.languageId); | ||
} else { | ||
resolve(undefined); | ||
} | ||
}); | ||
quickInput.onDidHide(() => { | ||
resolve(undefined); | ||
}); | ||
}); | ||
} | ||
|
||
protected async getInstalledLanguages(): Promise<LanguageQuickPickItem[]> { | ||
const languageInfos = await this.localizationProvider.getAvailableLanguages(); | ||
const items: LanguageQuickPickItem[] = []; | ||
const en: LanguageInfo = { | ||
languageId: 'en', | ||
languageName: 'English', | ||
localizedLanguageName: 'English' | ||
}; | ||
languageInfos.push(en); | ||
for (const language of languageInfos.filter(e => !!e.languageId)) { | ||
items.push(this.createLanguageQuickPickItem(language)); | ||
} | ||
return items; | ||
} | ||
|
||
protected async getAvailableLanguages(): Promise<LanguageQuickPickItem[]> { | ||
return []; | ||
} | ||
|
||
protected createLanguageQuickPickItem(language: LanguageInfo): LanguageQuickPickItem { | ||
let label: string; | ||
let description: string | undefined; | ||
const languageName = language.localizedLanguageName || language.languageName; | ||
const id = language.languageId; | ||
const idLabel = id + (nls.isSelectedLocale(id) ? ` (${nls.localizeByDefault('Current')})` : ''); | ||
if (languageName) { | ||
label = languageName; | ||
description = idLabel; | ||
} else { | ||
label = idLabel; | ||
} | ||
return { | ||
label, | ||
description, | ||
languageId: id | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.