-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphovea.js
67 lines (53 loc) · 2.57 KB
/
phovea.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* *****************************************************************************
* Caleydo - Visualization for Molecular Biology - http://caleydo.org
* Copyright (c) The Caleydo Team. All rights reserved.
* Licensed under the new BSD license, available at http://caleydo.org/license
**************************************************************************** */
//register all extensions in the registry following the given pattern
module.exports = function(registry) {
//registry.push('extension-type', 'extension-id', function() { return System.import('./src/extension_impl'); }, {});
// generator-phovea:begin
registry.push('app', 'valid', function() { return System.import('./src/'); }, {
'name': 'VALID'
});
registry.push('validView', 'ValidHeader', function() { return System.import('./src/valid_header'); }, {
'name': 'ValidHeader'
});
registry.push('validView', 'FilterData', function() { return System.import('./src/filter_data'); }, {
'name': 'FilterData'
});
registry.push('validView', 'GlobalSettings', function() { return System.import('./src/global_settings'); }, {
'name': 'GlobalSettings'
});
registry.push('validView', 'SankeyFeatures', function() { return System.import('./src/sankey_features'); }, {
'name': 'SankeyFeatures'
});
registry.push('validView', 'DataImport', function() { return System.import('./src/data_import'); }, {
'name': 'DataImport'
});
registry.push('validView', 'SankeyDetail', function() { return System.import('./src/sankey_detail'); }, {
'name': 'SankeyDetail'
});
registry.push('validView', 'SankeyDiagram', function() { return System.import('./src/sankey_diagram'); }, {
'name': 'SankeyDiagram'
});
registry.push('validView', 'SparklineBarChart', function() { return System.import('./src/sparklineBarChart'); }, {
'name': 'SparklineBarChart'
});
registry.push('validView', 'SparklineBarChartTarget', function() { return System.import('./src/sparklineBarChart'); }, {
'name': 'SparklineBarChartTarget',
});
registry.push('validView', 'Export', function() { return System.import('./src/export'); }, {
'name': 'Export',
});
registry.push('validView', 'FlowSorter', function() { return System.import('./src/flowSorter'); }, {
'name': 'FlowSorter',
});
registry.push('validView', 'SimpleLogging', function() { return System.import('./src/simpleLogging'); }, {
'name': 'SimpleLogging',
});
// registry.push('validView', 'HelpWindow', function() { return System.import('./src/helpWindow'); }, {
// 'name': 'HelpWindow',
// });
// generator-phovea:end
};