17426: Add plugin ability to modify +New and account menu
[arvados-workbench2.git] / src / plugins.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { PluginConfig } from '~/common/plugintypes';
6
7 export const pluginConfig: PluginConfig = {
8     centerPanelList: [],
9     sidePanelCategories: [],
10     dialogs: [],
11     navigateToHandlers: [],
12     locationChangeHandlers: [],
13     appBarLeft: undefined,
14     appBarMiddle: undefined,
15     appBarRight: undefined,
16     accountMenuList: [],
17     enableNewButtonMatchers: [],
18     newButtonMenuList: []
19 };
20
21 // Starting here, import and register your Workbench 2 plugins. //
22
23 import { register as blankUIPluginRegister } from '~/plugins/blank/index';
24 import { register as examplePluginRegister, routePath as exampleRoutePath } from '~/plugins/example/index';
25 import { register as rootRedirectRegister } from '~/plugins/root-redirect/index';
26
27 blankUIPluginRegister(pluginConfig);
28 examplePluginRegister(pluginConfig);
29 rootRedirectRegister(pluginConfig, exampleRoutePath);