/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ import { Toolbar } from '@ephox/bridge'; import { Arr, Obj } from '@ephox/katamari'; import { ValueSchema } from '@ephox/boulder'; // Divide the defined toolbars into forms, node scopes, and editor scopes export interface ScopedToolbars { forms: Record; // run through Bridge. inNodeScope: Array; inEditorScope: Array; lookupTable: Record; formNavigators: Record; // this stays API due to toolbar applying bridge } const categorise = (contextToolbars: Record, navigate: (destForm: Toolbar.ContextForm) => void): ScopedToolbars => { // TODO: Use foldl/foldr and avoid as much mutation. const forms: Record = { }; const inNodeScope: Array = [ ]; const inEditorScope: Array = [ ]; const formNavigators: Record = { }; const lookupTable: Record = { }; const registerForm = (key: string, toolbarApi: Toolbar.ContextFormApi) => { const contextForm = ValueSchema.getOrDie(Toolbar.createContextForm(toolbarApi)); forms[key] = contextForm; contextForm.launch.map((launch) => { // Use the original here (pre-boulder), because using as a the spec for toolbar buttons formNavigators['form:' + key + ''] = { ...toolbarApi.launch, type: (launch.type === 'contextformtogglebutton' ? 'togglebutton' : 'button') as any, onAction: () => { navigate(contextForm); } }; }); if (contextForm.scope === 'editor') { inEditorScope.push(contextForm); } else { inNodeScope.push(contextForm); } lookupTable[key] = contextForm; }; const registerToolbar = (key: string, toolbarApi: Toolbar.ContextToolbarApi) => { Toolbar.createContextToolbar(toolbarApi).each((contextToolbar) => { if (toolbarApi.scope === 'editor') { inEditorScope.push(contextToolbar); } else { inNodeScope.push(contextToolbar); } lookupTable[key] = contextToolbar; }); }; const keys = Obj.keys(contextToolbars); Arr.each(keys, (key) => { const toolbarApi = contextToolbars[key]; // TS wouldn't really let me do the ternary I wanted :( if (toolbarApi.type === 'contextform') { registerForm(key, toolbarApi); } else if (toolbarApi.type === 'contexttoolbar') { registerToolbar(key, toolbarApi); } }); return { forms, inNodeScope, inEditorScope, lookupTable, formNavigators }; }; export default { categorise };