From de3d574804637c5f99e0993c0d4750c218fde07c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 19 Mar 2018 22:01:53 -0400 Subject: do page layout with golden-layout --- public-src/components/gl/html.js | 5 +++ public-src/components/gl/jarmon-tabbed-chart-ui.js | 44 ++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 public-src/components/gl/html.js create mode 100644 public-src/components/gl/jarmon-tabbed-chart-ui.js (limited to 'public-src/components/gl') diff --git a/public-src/components/gl/html.js b/public-src/components/gl/html.js new file mode 100644 index 0000000..1270818 --- /dev/null +++ b/public-src/components/gl/html.js @@ -0,0 +1,5 @@ +define([], function() { + return function(container, state) { + container.getElement().html(container.getState()); + } +}); diff --git a/public-src/components/gl/jarmon-tabbed-chart-ui.js b/public-src/components/gl/jarmon-tabbed-chart-ui.js new file mode 100644 index 0000000..ac449d8 --- /dev/null +++ b/public-src/components/gl/jarmon-tabbed-chart-ui.js @@ -0,0 +1,44 @@ +define([], function() { + return function(container, state) { + container.getElement().html(''+ + '
'+ + '
'+ + '

'+ + '
'+ + ' '+ + ' '+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + ' '+ + ' '+ + ' '+ + ' '+ + ' '+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + '
'+ + ''); + var chartTemplate = container.getElement().find(".chart-container").remove(); + + container.on('open', function() { + jarmon.buildTabbedChartUi( + chartTemplate, + state.chartRecipes, + container.getElement().find('.tabbed-chart-interface'), + state.tabRecipes, + container.getElement().find('.chartRangeControl') + ) + }); + }; +}); -- cgit v1.2.3-2-g168b