mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
32 lines
834 B
TypeScript
32 lines
834 B
TypeScript
import {ApplicationContext} from "cad/context";
|
|
import {WorkbenchService} from "cad/workbench/workbenchService";
|
|
import {CurrentWorkbenchIcon} from "cad/workbench/CurrentWorkbenchIcon";
|
|
|
|
|
|
export interface WorkbenchBundleContext {
|
|
|
|
workbenchService: WorkbenchService;
|
|
}
|
|
|
|
export const WorkbenchBundle = {
|
|
|
|
activate(ctx: ApplicationContext) {
|
|
|
|
ctx.workbenchService = new WorkbenchService(ctx);
|
|
|
|
ctx.services.menu.registerMenus([
|
|
{
|
|
id: 'workbenches',
|
|
label: 'workbenches',
|
|
icon: CurrentWorkbenchIcon,
|
|
|
|
info: 'switch workbench',
|
|
actions: () => {
|
|
const workbenches = ctx.workbenchService.workbenches$.value;
|
|
return Object.keys(workbenches).filter(w => w !== 'sketcher').map(w => 'workbench.switch.' + workbenches[w].workbenchId)
|
|
}
|
|
}
|
|
]);
|
|
}
|
|
|
|
}
|