forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundleEntries.js
More file actions
23 lines (19 loc) · 1000 Bytes
/
bundleEntries.js
File metadata and controls
23 lines (19 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* The list of horrible globals we expose on window.bundleEntries.
*
* Everything that is exposed on this global variable is something that the python templates
* require for their hardcoded initializations. These objects are going to have to continue
* to exist until such time as we replace the overall application with a Vue component which
* will handle initializations for components individually.
*
*/
import { replaceChildrenWithComponent } from "utils/mountVueComponent";
import TabularChunkedView from "components/Visualizations/Tabular/TabularChunkedView.vue";
// legacy/grid_base.mako
export { default as LegacyGridView } from "legacy/grid/grid-view";
// webapps/reports/run_stats.mako
export { create_chart, create_histogram } from "reports/run_stats";
// webapps/galaxy/dataset/{ display | tabular_chunked }.mako
export const createTabularDatasetChunkedView = (options) => {
return replaceChildrenWithComponent(options.parent_elt, TabularChunkedView, { options });
};