jsketcher/web/app/cad/workbench/workbenchBundle.ts
2022-08-13 02:57:38 -07:00

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)
}
}
]);
}
}