File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 * to exist until such time as we replace the overall application with a Vue component which
77 * will handle initializations for components individually.
88 *
9- * legacy/grid_base.mako: window.bundleEntries.LegacyGridView
10- * webapps/galaxy/dataset/tabular_chunked.mako: window.bundleEntries.createTabularDatasetChunkedView
11- * webapps/galaxy/dataset/display.mako: window.bundleEntries.createTabularDatasetChunkedView
12- * webapps/reports/run_stats.mako: window.bundleEntries.create_chart
13- * webapps/reports/run_stats.mako: window.bundleEntries.create_histogram
149 */
1510import { replaceChildrenWithComponent } from "utils/mountVueComponent" ;
1611
1712import TabularChunkedView from "components/Visualizations/Tabular/TabularChunkedView.vue" ;
1813
19- export { getGalaxyInstance , setGalaxyInstance } from "app" ;
14+ // legacy/grid_base.mako
2015export { default as LegacyGridView } from "legacy/grid/grid-view" ;
16+
17+ // webapps/reports/run_stats.mako
2118export { create_chart , create_histogram } from "reports/run_stats" ;
2219
20+ // webapps/galaxy/dataset/{ display | tabular_chunked }.mako
2321export const createTabularDatasetChunkedView = ( options ) => {
2422 return replaceChildrenWithComponent ( options . parent_elt , TabularChunkedView , { options } ) ;
2523} ;
26-
27- // Used in common.mako
28- export { default as store } from "storemodern" ;
You can’t perform that action at this time.
0 commit comments