Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tomáš Peterka
erp5
Commits
1c73fb3e
Commit
1c73fb3e
authored
Apr 20, 2017
by
Sebastien Robin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
graph gadget: add charting gadget using the library plotly
parent
f6a64627
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1246 additions
and
0 deletions
+1246
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_html.html
...page_module/gadget_officejs_widget_graph_plotly_html.html
+25
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_html.xml
..._page_module/gadget_officejs_widget_graph_plotly_html.xml
+332
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_js.js
...web_page_module/gadget_officejs_widget_graph_plotly_js.js
+154
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_js.xml
...eb_page_module/gadget_officejs_widget_graph_plotly_js.xml
+332
-0
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.js
...erjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.js
+75
-0
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.xml
...rjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.xml
+328
-0
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_html.html
0 → 100644
View file @
1c73fb3e
<!DOCTYPE html>
<html>
<head>
<meta
http-equiv=
"Content-type"
content=
"text/html; charset=utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, user-scalable=no"
/>
<title>
ERP5 Widget Graph
</title>
<!-- interfaces -->
<link
rel=
"http://www.renderjs.org/rel/interface"
href=
"gadget_officejs_interface_widget_graph.html"
>
<!-- renderjs -->
<script
src=
"rsvp.js"
type=
"text/javascript"
></script>
<script
src=
"renderjs.js"
type=
"text/javascript"
></script>
<!-- libraries needed for graphs -->
<script
src=
"plotly.js"
type=
"text/javascript"
></script>
<!-- custom script -->
<script
src=
"gadget_officejs_widget_graph_plotly.js"
type=
"text/javascript"
></script>
</head>
<body>
<div
class=
"graph-content"
></div>
</body>
</html>
\ No newline at end of file
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_html.xml
0 → 100644
View file @
1c73fb3e
This diff is collapsed.
Click to expand it.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_js.js
0 → 100644
View file @
1c73fb3e
/*global window, rJS, RSVP, console, Plotly */
/*jslint nomen: true, indent: 2 */
(
function
(
window
,
rJS
,
RSVP
,
Plotly
)
{
"
use strict
"
;
/////////////////////////////////////////////////////////////////
// templates
/////////////////////////////////////////////////////////////////
var
gadget_klass
=
rJS
(
window
);
var
getGraphDataAndParameterFromConfiguration
=
function
(
configuration_dict
)
{
var
graph_data_and_parameter
=
{},
given_data_list
=
configuration_dict
.
data
,
current_data
,
given_data
,
axis_mapping_id_dict
,
i
,
j
,
AXIS_MAPPING_DICT
,
mapped_axis_list
,
axis_list_dict
=
{};
AXIS_MAPPING_DICT
=
{
0
:
"
x
"
,
1
:
"
y
"
,
2
:
"
z
"
};
console
.
log
(
"
getGraphDataAndParameterFromConfiguration 1
"
);
graph_data_and_parameter
.
data_list
=
[];
graph_data_and_parameter
.
layout
=
{
modeBarButtonsToRemove
:
[
'
sendDataToCloud
'
]};
function
setCurrentData
(
axis_data
)
{
console
.
log
(
"
setCurrentData, axis_data
"
,
axis_data
);
var
axis_id
=
AXIS_MAPPING_DICT
[
axis_data
[
0
]],
axis_value_list
=
axis_data
[
1
];
current_data
[
axis_id
]
=
axis_value_list
;
}
console
.
log
(
"
getGraphDataAndParameterFromConfiguration 2
"
);
console
.
log
(
"
given_data_list
"
,
given_data_list
);
function
setAxisLayout
(
axis_mapping
)
{
var
axis_id
=
AXIS_MAPPING_DICT
[
axis_mapping
[
0
]],
axis_identifier
=
axis_mapping
[
1
],
axis_name
,
axis_layout
,
mapped_axis_list
;
mapped_axis_list
=
axis_list_dict
[
axis_id
]
||
[];
if
(
mapped_axis_list
.
indexOf
(
axis_identifier
)
===
-
1
)
{
mapped_axis_list
.
push
(
axis_identifier
);
axis_list_dict
[
axis_id
]
=
mapped_axis_list
;
axis_name
=
axis_id
+
"
axis
"
;
console
.
log
(
"
mapped_axis_list in loop
"
,
mapped_axis_list
);
axis_layout
=
{};
if
(
mapped_axis_list
.
indexOf
(
axis_identifier
)
!==
0
)
{
axis_name
=
axis_name
+
(
mapped_axis_list
.
indexOf
(
axis_identifier
)
+
1
);
axis_layout
.
overlaying
=
axis_id
;
axis_layout
.
side
=
'
right
'
;
axis_layout
.
position
=
1
-
(
0.05
*
mapped_axis_list
.
indexOf
(
axis_identifier
));
// We must also reduce graph size to display all the axis labels. We assume here that this
// happens only for cases of having multiple y axis
graph_data_and_parameter
.
layout
.
xaxis
=
graph_data_and_parameter
.
layout
.
xaxis
||
{};
graph_data_and_parameter
.
layout
.
xaxis
.
domain
=
[
0.0
,
axis_layout
.
position
];
current_data
[
axis_id
+
"
axis
"
]
=
axis_id
+
(
mapped_axis_list
.
indexOf
(
axis_identifier
)
+
1
);
}
console
.
log
(
"
axis_name
"
,
axis_name
);
if
(
given_data
.
title
!==
undefined
)
{
axis_layout
.
title
=
given_data
.
title
;
}
graph_data_and_parameter
.
layout
[
axis_name
]
=
axis_layout
;
}
}
for
(
i
=
0
;
i
<
given_data_list
.
length
;
i
=
i
+
1
)
{
current_data
=
{};
given_data
=
given_data_list
[
i
];
Object
.
entries
(
given_data
.
value_dict
).
forEach
(
setCurrentData
);
if
(
given_data
.
title
!==
undefined
)
{
current_data
.
name
=
given_data
.
title
;
}
if
(
given_data
.
type
!==
undefined
)
{
current_data
.
type
=
given_data
.
type
;
if
(
given_data
.
type
===
"
scatter
"
)
{
current_data
.
mode
=
'
markers
'
;
}
}
axis_mapping_id_dict
=
given_data
.
axis_mapping_id_dict
||
{};
Object
.
entries
(
axis_mapping_id_dict
).
forEach
(
setAxisLayout
);
graph_data_and_parameter
.
data_list
.
push
(
current_data
);
}
console
.
log
(
"
getGraphDataAndParameterFromConfiguration 3
"
);
console
.
log
(
"
axis_list_dict
"
,
axis_list_dict
);
console
.
log
(
"
graph_data_and_parameter
"
,
graph_data_and_parameter
);
graph_data_and_parameter
.
bar_config
=
{
modeBarButtonsToRemove
:
[
'
sendDataToCloud
'
]};
return
graph_data_and_parameter
;
};
/////////////////////////////////////////////////////////////////
// some methods
/////////////////////////////////////////////////////////////////
gadget_klass
/////////////////////////////////////////////////////////////////
// ready
/////////////////////////////////////////////////////////////////
.
ready
(
function
(
gadget
)
{
gadget
.
property_dict
=
{};
})
/////////////////////////////////////////////////////////////////
// published methods
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
// acquired methods
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
// declared methods
/////////////////////////////////////////////////////////////////
.
declareMethod
(
'
render
'
,
function
(
configuration_dict
)
{
var
gadget
=
this
,
container
,
graph_data_and_parameter
,
chart
;
container
=
gadget
.
element
.
querySelector
(
"
.graph-content
"
);
gadget
.
property_dict
.
container
=
container
;
console
.
log
(
"
container inside iframe
"
);
graph_data_and_parameter
=
getGraphDataAndParameterFromConfiguration
(
configuration_dict
);
console
.
log
(
"
graph_data_and_parameter
"
,
graph_data_and_parameter
);
Plotly
.
plot
(
container
,
graph_data_and_parameter
.
data_list
,
graph_data_and_parameter
.
layout
,
graph_data_and_parameter
.
bar_config
);
})
.
declareMethod
(
'
updateConfiguration
'
,
function
(
configuration_dict
)
{
/* Update the graph with new data/configuration.
There is many functions in Plotly for updating style, adding points to data, for adding new series of data, etc.
Though, this is way too complex to guess what has been changed to know if we could just call a few functions to
take into account changes. Therefore just erase and redraw the whole graph.
*/
var
gadget
=
this
,
graph_data_and_parameter
;
console
.
log
(
"
updateConfiguration
"
);
graph_data_and_parameter
=
getGraphDataAndParameterFromConfiguration
(
configuration_dict
);
Plotly
.
purge
(
gadget
.
property_dict
.
container
);
Plotly
.
plot
(
gadget
.
property_dict
.
container
,
graph_data_and_parameter
.
data_list
,
graph_data_and_parameter
.
layout
,
graph_data_and_parameter
.
bar_config
);
});
}(
window
,
rJS
,
RSVP
,
Plotly
));
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_widget_graph_plotly_js.xml
0 → 100644
View file @
1c73fb3e
This diff is collapsed.
Click to expand it.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.js
0 → 100644
View file @
1c73fb3e
This diff is collapsed.
Click to expand it.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_plotly_js.xml
0 → 100644
View file @
1c73fb3e
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment