Skip to content

Commit

Permalink
Merge branch '13.0-mig-web_pwa_oca' of ssh://github.com/AntoniRomera/…
Browse files Browse the repository at this point in the history
…web into 13.0
  • Loading branch information
mileo committed Jun 24, 2020
2 parents 1724ecd + 73ac023 commit 55fa245
Show file tree
Hide file tree
Showing 25 changed files with 1,082 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup/web_pwa_oca/odoo/addons/web_pwa_oca
6 changes: 6 additions & 0 deletions setup/web_pwa_oca/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
134 changes: 134 additions & 0 deletions web_pwa_oca/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
===========================
Progressive web application
===========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
: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/12.0/web_pwa_oca
:alt: OCA/web
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_pwa_oca
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/162/12.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

Make Odoo an installable Progressive Web Application.

Progressive Web Apps provide an installable, app-like experience on desktop and mobile that are built and delivered directly via the web.
They're web apps that are fast and reliable. And most importantly, they're web apps that work in any browser.
If you're building a web app today, you're already on the path towards building a Progressive Web App.

**Table of contents**

.. contents::
:local:

Installation
============

After having installed this module, browsing your odoo on mobile you will be able to install it as a PWA.

It is strongly recommended to use this module with a responsive layout, like the one provided by web_responsive.

This module is intended to be used by Odoo back-end users (employees).

When a Progressive Web App is installed, it looks and behaves like all of the other installed apps.
It launches from the same place that other apps launch. It runs in an app without an address bar or other browser UI.
And like all other installed apps, it's a top level app in the task switcher.

In Chrome, a Progressive Web App can either be installed through the three-dot context menu.

This module also provides a "Install PWA" link in Odoo user menu.

In case you previously installed `web_pwa`, run the following steps with `odoo shell`, after having installed `openupgradelib`:


>>> from openupgradelib import openupgrade
>>> openupgrade.update_module_names(env.cr, [('web_pwa', 'web_pwa_oca')], merge_modules=False)
>>> env.cr.commit()

Configuration
=============

The following system parameters con be set to customize the appearance of the application

* pwa.manifest.name (defaults to "Odoo PWA")
* pwa.manifest.short_name (defaults to "Odoo PWA")
* pwa.manifest.icon128x128 (defaults to "/web_pwa_oca/static/img/icons/icon-128x128.png")
* pwa.manifest.icon144x144 (defaults to "/web_pwa_oca/static/img/icons/icon-144x144.png")
* pwa.manifest.icon152x152 (defaults to "/web_pwa_oca/static/img/icons/icon-152x152.png")
* pwa.manifest.icon192x192 (defaults to "/web_pwa_oca/static/img/icons/icon-192x192.png")
* pwa.manifest.icon256x256 (defaults to "/web_pwa_oca/static/img/icons/icon-256x256.png")
* pwa.manifest.icon512x512 (defaults to "/web_pwa_oca/static/img/icons/icon-512x512.png")

Known issues / Roadmap
======================

* Evaluate to extend ``FILES_TO_CACHE``
* Evaluate to use a normal JS file for service worker and download data from a normal JSON controller
* Integrate `Notification API <https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/showNotification>`_
* Integrate `Web Share API <https://web.dev/web-share/>`_
* Create ``portal_pwa`` module, intended to be used by front-end users (customers, suppliers...)

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 smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_pwa_oca%0Aversion:%2012.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.

Credits
=======

Authors
~~~~~~~

* TAKOBI

Contributors
~~~~~~~~~~~~

* `TAKOBI <https://takobi.online>`_:

* Lorenzo Battistini

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-eLBati| image:: https://github.com/eLBati.png?size=40px
:target: https://github.com/eLBati
:alt: eLBati

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-eLBati|

This module is part of the `OCA/web <https://github.com/OCA/web/tree/12.0/web_pwa_oca>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions web_pwa_oca/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import controllers
20 changes: 20 additions & 0 deletions web_pwa_oca/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2020 Lorenzo Battistini @ TAKOBI
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).

{
"name": "Progressive web application",
"summary": "Make Odoo a PWA",
"version": "13.0.1.0.0",
"development_status": "Beta",
"category": "Website",
"website": "https://github.com/OCA/web",
"author": "TAKOBI, Odoo Community Association (OCA)",
"maintainers": ["eLBati"],
"license": "LGPL-3",
"application": True,
"installable": True,
"depends": ["web", "mail"],
"data": ["views/webclient_templates.xml"],
"qweb": ["static/src/xml/pwa_install.xml"],
"images": ["static/description/pwa.png"],
}
1 change: 1 addition & 0 deletions web_pwa_oca/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
77 changes: 77 additions & 0 deletions web_pwa_oca/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
from odoo.http import Controller, request, route


class PWA(Controller):
def get_asset_urls(self, asset_xml_id):
qweb = request.env["ir.qweb"].sudo()
assets = qweb._get_asset_nodes(asset_xml_id, {}, True, True)
urls = []
for asset in assets:
if asset[0] == "link":
urls.append(asset[1]["href"])
if asset[0] == "script":
urls.append(asset[1]["src"])
return urls

@route("/service-worker.js", type="http", auth="public")
def service_worker(self):
qweb = request.env["ir.qweb"].sudo()
urls = []
urls.extend(self.get_asset_urls("web.assets_common"))
urls.extend(self.get_asset_urls("web.assets_backend"))
version_list = []
for url in urls:
version_list.append(url.split("/")[3])
cache_version = "-".join(version_list)
mimetype = "text/javascript;charset=utf-8"
content = qweb.render(
"web_pwa_oca.service_worker",
{"pwa_cache_name": cache_version, "pwa_files_to_cache": urls},
)
return request.make_response(content, [("Content-Type", mimetype)])

@route("/web_pwa_oca/manifest.json", type="http", auth="public")
def manifest(self):
qweb = request.env["ir.qweb"].sudo()
config_param = request.env["ir.config_parameter"].sudo()
pwa_name = config_param.get_param("pwa.manifest.name", "Odoo PWA")
pwa_short_name = config_param.get_param("pwa.manifest.short_name", "Odoo PWA")
icon128x128 = config_param.get_param(
"pwa.manifest.icon128x128", "/web_pwa_oca/static/img/icons/icon-128x128.png"
)
icon144x144 = config_param.get_param(
"pwa.manifest.icon144x144", "/web_pwa_oca/static/img/icons/icon-144x144.png"
)
icon152x152 = config_param.get_param(
"pwa.manifest.icon152x152", "/web_pwa_oca/static/img/icons/icon-152x152.png"
)
icon192x192 = config_param.get_param(
"pwa.manifest.icon192x192", "/web_pwa_oca/static/img/icons/icon-192x192.png"
)
icon256x256 = config_param.get_param(
"pwa.manifest.icon256x256", "/web_pwa_oca/static/img/icons/icon-256x256.png"
)
icon512x512 = config_param.get_param(
"pwa.manifest.icon512x512", "/web_pwa_oca/static/img/icons/icon-512x512.png"
)
background_color = config_param.get_param(
"pwa.manifest.background_color", "#2E69B5"
)
theme_color = config_param.get_param("pwa.manifest.theme_color", "#2E69B5")
mimetype = "application/json;charset=utf-8"
content = qweb.render(
"web_pwa_oca.manifest",
{
"pwa_name": pwa_name,
"pwa_short_name": pwa_short_name,
"icon128x128": icon128x128,
"icon144x144": icon144x144,
"icon152x152": icon152x152,
"icon192x192": icon192x192,
"icon256x256": icon256x256,
"icon512x512": icon512x512,
"background_color": background_color,
"theme_color": theme_color,
},
)
return request.make_response(content, [("Content-Type", mimetype)])
Loading

0 comments on commit 55fa245

Please sign in to comment.