vsc-material-theme/extensions/material.theme.config.ts

59 lines
1.9 KiB
TypeScript
Raw Normal View History

2018-04-20 20:07:36 +02:00
import * as vscode from 'vscode';
import { IGenericObject } from "./interfaces/igeneric-object";
import { THEME_ACCENTS_SETTER } from "./commands/accents-setter/index";
2018-04-20 22:18:31 +02:00
import { THEME_ICONS } from "./commands/theme-icons/index";
2018-04-20 20:07:36 +02:00
import { shouldShowChangelog, showChangelog } from './helpers/changelog';
import { reloadWindow, getCurrentThemeID, setIconsID } from "./helpers/vscode";
2018-04-20 20:07:36 +02:00
enum Commands {
ACCENTS,
CHANGELOG
2018-04-20 20:07:36 +02:00
}
const OPTIONS: IGenericObject<number> = {
2018-04-22 12:26:47 +02:00
'🎨 Change accent color': Commands.ACCENTS,
2018-04-20 20:07:36 +02:00
'🚧 Show changelog': Commands.CHANGELOG
}
const isMaterialTheme = (currentTheme: string): boolean =>
currentTheme.includes('Material Theme');
2018-04-20 20:07:36 +02:00
export function activate(context: vscode.ExtensionContext) {
if (vscode.workspace.getConfiguration().has('materialTheme.cache.workbench.accent')) {
vscode.workspace.getConfiguration().update('materialTheme.cache.workbench.accent', undefined, true);
}
vscode.workspace.onDidChangeConfiguration(async event => {
const isColorTheme = event.affectsConfiguration('workbench.colorTheme');
const currentTheme = getCurrentThemeID();
if (isColorTheme && isMaterialTheme(currentTheme)) {
await setIconsID('eq-material-theme-icons');
await THEME_ICONS().catch(error => console.trace(error));
reloadWindow();
}
});
2018-04-20 20:07:36 +02:00
if (shouldShowChangelog()) {
showChangelog();
}
// registering the command
let command = vscode.commands.registerCommand('material.theme.config', () => {
// the user is going to choose what aspect of theme to config
vscode.window.showQuickPick(Object.keys(OPTIONS)).then(response => {
// switching selected option
switch(OPTIONS[response]) {
case Commands.ACCENTS:
THEME_ACCENTS_SETTER();
break;
case Commands.CHANGELOG:
showChangelog();
break;
}
});
});
context.subscriptions.push(command);
}