forked from Techsystech/web
[17.0][MIG] Migrate web_widget_plotly_chart
parent
7392a9f5bc
commit
0a1432d18b
|
@ -0,0 +1,2 @@
|
|||
# generated from manifests external_dependencies
|
||||
plotly==5.22.0
|
|
@ -7,7 +7,7 @@ Web Widget Plotly
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:4e4c06045ef8e9b9ef7c898510b11dbb77f7bdf2ef5bfc0f06c50c9de9401af8
|
||||
!! source digest: sha256:e5f2ea60f70bb2f141322599481e405f38bff060dd65cdcdb6f06b366e83e7a2
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
|
@ -17,31 +17,31 @@ Web Widget Plotly
|
|||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||
:alt: License: LGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/16.0/web_widget_plotly_chart
|
||||
:target: https://github.com/OCA/web/tree/17.0/web_widget_plotly_chart
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_widget_plotly_chart
|
||||
:target: https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_widget_plotly_chart
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module add the possibility to insert Plotly charts into Odoo standard views.
|
||||
This module add the possibility to insert Plotly charts into Odoo
|
||||
standard views.
|
||||
|
||||
.. image:: https://raw.githubusercontent.com/OCA/web/16.0/web_widget_plotly_chart/static/description/example.png
|
||||
.. image:: https://raw.githubusercontent.com/OCA/web/17.0/web_widget_plotly_chart/static/description/example.png
|
||||
:alt: Plotly Chart inserted into an Odoo view
|
||||
:width: 600 px
|
||||
|
||||
`Plotly <https://plot.ly/>`__ is a Python interactive visualization
|
||||
library built on top of d3.js and stack.gl, plotly.js is a high-level,
|
||||
declarative charting library. plotly.js ships with over 40 chart types,
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps, financial
|
||||
charts, and more.
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps,
|
||||
financial charts, and more.
|
||||
|
||||
If you want to see some samples of plotly's capabilities follow this `link
|
||||
<https://github.com/plotly/plotly.py#overview>`_.
|
||||
If you want to see some samples of plotly's capabilities follow this
|
||||
`link <https://github.com/plotly/plotly.py#overview>`__.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
|
@ -51,37 +51,49 @@ If you want to see some samples of plotly's capabilities follow this `link
|
|||
Installation
|
||||
============
|
||||
|
||||
You need to install the python plotly library::
|
||||
You need to install the python plotly library:
|
||||
|
||||
pip3 install plotly==5.4.0
|
||||
::
|
||||
|
||||
pip install plotly==5.22.0
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To insert a Plotly chart in a view proceed as follows:
|
||||
|
||||
#. Declare a text computed field like this::
|
||||
1. Import plotly:
|
||||
|
||||
plotly_chart = fields.Text(
|
||||
string='Plotly Chart',
|
||||
compute='_compute_plotly_chart',
|
||||
)
|
||||
import plotly
|
||||
|
||||
#. In its computed method do::
|
||||
2. Declare a text computed field like this:
|
||||
|
||||
def _compute_plotly_chart(self):
|
||||
for rec in self:
|
||||
data = [{'x': [1, 2, 3], 'y': [2, 3, 4]}]
|
||||
rec.plotly_chart = plotly.offline.plot(data,
|
||||
include_plotlyjs=False,
|
||||
output_type='div')
|
||||
::
|
||||
|
||||
#. In the view, add something like this wherever you want to display your
|
||||
plotly chart::
|
||||
plotly_chart = fields.Text(
|
||||
string='Plotly Chart',
|
||||
compute='_compute_plotly_chart',
|
||||
)
|
||||
|
||||
<div>
|
||||
<field name="plotly_chart" widget="plotly_chart" nolabel="1"/>
|
||||
</div>
|
||||
3. In its computed method do:
|
||||
|
||||
::
|
||||
|
||||
def _compute_plotly_chart(self):
|
||||
for rec in self:
|
||||
data = [{'x': [1, 2, 3], 'y': [2, 3, 4]}]
|
||||
rec.plotly_chart = plotly.offline.plot(data,
|
||||
include_plotlyjs=False,
|
||||
output_type='div')
|
||||
|
||||
4. In the view, add something like this wherever you want to display
|
||||
your plotly chart:
|
||||
|
||||
::
|
||||
|
||||
<div>
|
||||
<field name="plotly_chart" widget="plotly_chart" nolabel="1"/>
|
||||
</div>
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
@ -89,7 +101,7 @@ Bug Tracker
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_plotly_chart%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_plotly_chart%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
|
@ -97,26 +109,26 @@ Credits
|
|||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
-------
|
||||
|
||||
* LevelPrime srl
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
------------
|
||||
|
||||
* Roberto Fichera <roberto.fichera@levelprime.com>
|
||||
* Michele Zaccheddu <michele.zaccheddu@levelprime.com>
|
||||
- Roberto Fichera <roberto.fichera@levelprime.com>
|
||||
- Michele Zaccheddu <michele.zaccheddu@levelprime.com>
|
||||
|
||||
Other credits
|
||||
~~~~~~~~~~~~~
|
||||
-------------
|
||||
|
||||
* This module uses the library `Plotly.js <https://github.com/plotly/plotly.js>`__
|
||||
which is under the open-source MIT License.
|
||||
Copyright (c) 2019 Plotly, Inc
|
||||
* Odoo Community Association (OCA)
|
||||
- This module uses the library
|
||||
`Plotly.js <https://github.com/plotly/plotly.js>`__ which is under
|
||||
the open-source MIT License. Copyright (c) 2019 Plotly, Inc
|
||||
- Odoo Community Association (OCA)
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
|
@ -136,6 +148,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|||
|
||||
|maintainer-robyf70|
|
||||
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_widget_plotly_chart>`_ project on GitHub.
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/17.0/web_widget_plotly_chart>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
"maintainers": ["robyf70"],
|
||||
"website": "https://github.com/OCA/web",
|
||||
"category": "Web",
|
||||
"version": "16.0.1.0.0",
|
||||
"version": "17.0.1.0.0",
|
||||
"depends": ["web"],
|
||||
"data": [],
|
||||
"external_dependencies": {
|
||||
"python": ["plotly==5.13.1"],
|
||||
"python": ["plotly==5.22.0"],
|
||||
},
|
||||
"assets": {
|
||||
"web.assets_backend": [
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
|
@ -0,0 +1,2 @@
|
|||
- Roberto Fichera \<<roberto.fichera@levelprime.com>\>
|
||||
- Michele Zaccheddu \<<michele.zaccheddu@levelprime.com>\>
|
|
@ -1,2 +0,0 @@
|
|||
* Roberto Fichera <roberto.fichera@levelprime.com>
|
||||
* Michele Zaccheddu <michele.zaccheddu@levelprime.com>
|
|
@ -0,0 +1,4 @@
|
|||
- This module uses the library
|
||||
[Plotly.js](https://github.com/plotly/plotly.js) which is under the
|
||||
open-source MIT License. Copyright (c) 2019 Plotly, Inc
|
||||
- Odoo Community Association (OCA)
|
|
@ -1,4 +0,0 @@
|
|||
* This module uses the library `Plotly.js <https://github.com/plotly/plotly.js>`__
|
||||
which is under the open-source MIT License.
|
||||
Copyright (c) 2019 Plotly, Inc
|
||||
* Odoo Community Association (OCA)
|
|
@ -0,0 +1,13 @@
|
|||
This module add the possibility to insert Plotly charts into Odoo
|
||||
standard views.
|
||||
|
||||

|
||||
|
||||
[Plotly](https://plot.ly/) is a Python interactive visualization library
|
||||
built on top of d3.js and stack.gl, plotly.js is a high-level,
|
||||
declarative charting library. plotly.js ships with over 40 chart types,
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps,
|
||||
financial charts, and more.
|
||||
|
||||
If you want to see some samples of plotly's capabilities follow this
|
||||
[link](https://github.com/plotly/plotly.py#overview).
|
|
@ -1,14 +0,0 @@
|
|||
This module add the possibility to insert Plotly charts into Odoo standard views.
|
||||
|
||||
.. image:: ../static/description/example.png
|
||||
:alt: Plotly Chart inserted into an Odoo view
|
||||
:width: 600 px
|
||||
|
||||
`Plotly <https://plot.ly/>`__ is a Python interactive visualization
|
||||
library built on top of d3.js and stack.gl, plotly.js is a high-level,
|
||||
declarative charting library. plotly.js ships with over 40 chart types,
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps, financial
|
||||
charts, and more.
|
||||
|
||||
If you want to see some samples of plotly's capabilities follow this `link
|
||||
<https://github.com/plotly/plotly.py#overview>`_.
|
|
@ -0,0 +1,3 @@
|
|||
You need to install the python plotly library:
|
||||
|
||||
pip install plotly==5.22.0
|
|
@ -1,3 +0,0 @@
|
|||
You need to install the python plotly library::
|
||||
|
||||
pip3 install plotly==5.4.0
|
|
@ -0,0 +1,28 @@
|
|||
To insert a Plotly chart in a view proceed as follows:
|
||||
|
||||
1. Import plotly:
|
||||
|
||||
import plotly
|
||||
|
||||
2. Declare a text computed field like this:
|
||||
|
||||
plotly_chart = fields.Text(
|
||||
string='Plotly Chart',
|
||||
compute='_compute_plotly_chart',
|
||||
)
|
||||
|
||||
3. In its computed method do:
|
||||
|
||||
def _compute_plotly_chart(self):
|
||||
for rec in self:
|
||||
data = [{'x': [1, 2, 3], 'y': [2, 3, 4]}]
|
||||
rec.plotly_chart = plotly.offline.plot(data,
|
||||
include_plotlyjs=False,
|
||||
output_type='div')
|
||||
|
||||
4. In the view, add something like this wherever you want to display
|
||||
your plotly chart:
|
||||
|
||||
<div>
|
||||
<field name="plotly_chart" widget="plotly_chart" nolabel="1"/>
|
||||
</div>
|
|
@ -1,24 +0,0 @@
|
|||
To insert a Plotly chart in a view proceed as follows:
|
||||
|
||||
#. Declare a text computed field like this::
|
||||
|
||||
plotly_chart = fields.Text(
|
||||
string='Plotly Chart',
|
||||
compute='_compute_plotly_chart',
|
||||
)
|
||||
|
||||
#. In its computed method do::
|
||||
|
||||
def _compute_plotly_chart(self):
|
||||
for rec in self:
|
||||
data = [{'x': [1, 2, 3], 'y': [2, 3, 4]}]
|
||||
rec.plotly_chart = plotly.offline.plot(data,
|
||||
include_plotlyjs=False,
|
||||
output_type='div')
|
||||
|
||||
#. In the view, add something like this wherever you want to display your
|
||||
plotly chart::
|
||||
|
||||
<div>
|
||||
<field name="plotly_chart" widget="plotly_chart" nolabel="1"/>
|
||||
</div>
|
|
@ -1,20 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
|
||||
<title>Web Widget Plotly</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
|
@ -367,43 +366,48 @@ ul.auto-toc {
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:4e4c06045ef8e9b9ef7c898510b11dbb77f7bdf2ef5bfc0f06c50c9de9401af8
|
||||
!! source digest: sha256:e5f2ea60f70bb2f141322599481e405f38bff060dd65cdcdb6f06b366e83e7a2
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_widget_plotly_chart"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_widget_plotly_chart"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module add the possibility to insert Plotly charts into Odoo standard views.</p>
|
||||
<img alt="Plotly Chart inserted into an Odoo view" src="https://raw.githubusercontent.com/OCA/web/16.0/web_widget_plotly_chart/static/description/example.png" style="width: 600px;" />
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/17.0/web_widget_plotly_chart"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_widget_plotly_chart"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module add the possibility to insert Plotly charts into Odoo
|
||||
standard views.</p>
|
||||
<img alt="Plotly Chart inserted into an Odoo view" src="https://raw.githubusercontent.com/OCA/web/17.0/web_widget_plotly_chart/static/description/example.png" />
|
||||
<p><a class="reference external" href="https://plot.ly/">Plotly</a> is a Python interactive visualization
|
||||
library built on top of d3.js and stack.gl, plotly.js is a high-level,
|
||||
declarative charting library. plotly.js ships with over 40 chart types,
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps, financial
|
||||
charts, and more.</p>
|
||||
<p>If you want to see some samples of plotly’s capabilities follow this <a class="reference external" href="https://github.com/plotly/plotly.py#overview">link</a>.</p>
|
||||
including scientific charts, 3D graphs, statistical charts, SVG maps,
|
||||
financial charts, and more.</p>
|
||||
<p>If you want to see some samples of plotly’s capabilities follow this
|
||||
<a class="reference external" href="https://github.com/plotly/plotly.py#overview">link</a>.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#installation" id="toc-entry-1">Installation</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#other-credits" id="toc-entry-7">Other credits</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-8">Maintainers</a></li>
|
||||
<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#other-credits" id="id7">Other credits</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id8">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="installation">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
|
||||
<h1><a class="toc-backref" href="#id1">Installation</a></h1>
|
||||
<p>You need to install the python plotly library:</p>
|
||||
<pre class="literal-block">
|
||||
pip3 install plotly==5.4.0
|
||||
pip install plotly==5.22.0
|
||||
</pre>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
|
||||
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
|
||||
<p>To insert a Plotly chart in a view proceed as follows:</p>
|
||||
<ol class="arabic">
|
||||
<li><p class="first">Import plotly:</p>
|
||||
<p>import plotly</p>
|
||||
</li>
|
||||
<li><p class="first">Declare a text computed field like this:</p>
|
||||
<pre class="literal-block">
|
||||
plotly_chart = fields.Text(
|
||||
|
@ -422,8 +426,8 @@ def _compute_plotly_chart(self):
|
|||
output_type='div')
|
||||
</pre>
|
||||
</li>
|
||||
<li><p class="first">In the view, add something like this wherever you want to display your
|
||||
plotly chart:</p>
|
||||
<li><p class="first">In the view, add something like this wherever you want to display
|
||||
your plotly chart:</p>
|
||||
<pre class="literal-block">
|
||||
<div>
|
||||
<field name="plotly_chart" widget="plotly_chart" nolabel="1"/>
|
||||
|
@ -433,39 +437,39 @@ plotly chart:</p>
|
|||
</ol>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
|
||||
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_widget_plotly_chart%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_widget_plotly_chart%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
|
||||
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
|
||||
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>LevelPrime srl</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
|
||||
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Roberto Fichera <<a class="reference external" href="mailto:roberto.fichera@levelprime.com">roberto.fichera@levelprime.com</a>></li>
|
||||
<li>Michele Zaccheddu <<a class="reference external" href="mailto:michele.zaccheddu@levelprime.com">michele.zaccheddu@levelprime.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="other-credits">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Other credits</a></h2>
|
||||
<h2><a class="toc-backref" href="#id7">Other credits</a></h2>
|
||||
<ul class="simple">
|
||||
<li>This module uses the library <a class="reference external" href="https://github.com/plotly/plotly.js">Plotly.js</a>
|
||||
which is under the open-source MIT License.
|
||||
Copyright (c) 2019 Plotly, Inc</li>
|
||||
<li>This module uses the library
|
||||
<a class="reference external" href="https://github.com/plotly/plotly.js">Plotly.js</a> which is under
|
||||
the open-source MIT License. Copyright (c) 2019 Plotly, Inc</li>
|
||||
<li>Odoo Community Association (OCA)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
|
||||
<h2><a class="toc-backref" href="#id8">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
|
@ -473,7 +477,7 @@ mission is to support the collaborative development of Odoo features and
|
|||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external image-reference" href="https://github.com/robyf70"><img alt="robyf70" src="https://github.com/robyf70.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/16.0/web_widget_plotly_chart">OCA/web</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/17.0/web_widget_plotly_chart">OCA/web</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,42 +1,51 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import {loadJS} from "@web/core/assets";
|
||||
import {CharField} from "@web/views/fields/char/char_field";
|
||||
import {loadBundle} from "@web/core/assets";
|
||||
import {registry} from "@web/core/registry";
|
||||
|
||||
import {Component, onPatched, onWillStart, useEffect, useRef} from "@odoo/owl";
|
||||
import {onPatched, onWillStart, useEffect, useRef} from "@odoo/owl";
|
||||
|
||||
export class PlotlyChartWidgetField extends Component {
|
||||
export class PlotlyChartWidget extends CharField {
|
||||
setup() {
|
||||
this.divRef = useRef("plotly");
|
||||
super.setup();
|
||||
|
||||
onWillStart(async () => {
|
||||
await loadJS(
|
||||
"/web_widget_plotly_chart/static/src/lib/plotly/plotly-2.18.2.min.js"
|
||||
);
|
||||
this.updatePlotly(this.props.value);
|
||||
});
|
||||
this.widget = useRef("widget");
|
||||
|
||||
onPatched(() => {
|
||||
this.updatePlotly(this.props.value);
|
||||
this.updatePlotly(this.props.record.data[this.props.name]);
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
this.updatePlotly(this.props.value);
|
||||
this.updatePlotly(this.props.record.data[this.props.name]);
|
||||
});
|
||||
|
||||
onWillStart(() =>
|
||||
loadBundle({
|
||||
jsLibs: [
|
||||
"/web_widget_plotly_chart/static/src/lib/plotly/plotly-2.32.0.min.js",
|
||||
],
|
||||
})
|
||||
);
|
||||
}
|
||||
updatePlotly(value) {
|
||||
const value_html = $(value);
|
||||
const div = value_html.find(".plotly-graph-div").get(0).outerHTML || "";
|
||||
const script = value_html.find("script").get(0).textContent || "";
|
||||
|
||||
if (this.divRef.el) {
|
||||
this.divRef.el.innerHTML = div;
|
||||
if (this.widget.el) {
|
||||
this.widget.el.innerHTML = div;
|
||||
new Function(script)();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
PlotlyChartWidgetField.template = "web_widget_plotly_chart.PlotlyChartWidgetField";
|
||||
PlotlyChartWidgetField.supportedTypes = ["char", "text"];
|
||||
PlotlyChartWidget.template = "web_widget_plotly_chart.PlotlyChartWidgetField";
|
||||
PlotlyChartWidget.supportedTypes = ["char", "text"];
|
||||
|
||||
registry.category("fields").add("plotly_chart", PlotlyChartWidgetField);
|
||||
export const plotlyChartWidget = {
|
||||
...CharField,
|
||||
component: PlotlyChartWidget,
|
||||
};
|
||||
|
||||
registry.category("fields").add("plotly_chart", plotlyChartWidget);
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<templates xml:space="preserve">
|
||||
|
||||
<t t-name="web_widget_plotly_chart.PlotlyChartWidgetField" owl="1">
|
||||
<div t-ref="plotly" />
|
||||
</t>
|
||||
<div t-name="web_widget_plotly_chart.PlotlyChartWidgetField" t-ref="widget" />
|
||||
|
||||
</templates>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue