forked from Techsystech/web
[MIG]web_field_tooltip: Migration to 17.0
parent
9945b0a036
commit
e74989d55f
|
@ -80,6 +80,12 @@ Contributors
|
|||
|
||||
- Benoit Aimont <benoit.aimont@acsone.eu> (https://www.acsone.eu/)
|
||||
|
||||
- `Sygel <https://sygel.es>`__:
|
||||
|
||||
- Manuel Regidor <manuel.regidor@sygel.es>
|
||||
- Harald Panten <harald.panten@sygel.es>
|
||||
- Valentín Vinagre <valentin.vinagre@sygel.es>
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"name": "Web Field Tooltip",
|
||||
"summary": """
|
||||
Displays customizable tooltips for fields""",
|
||||
"version": "16.0.1.1.0",
|
||||
"version": "17.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/web",
|
||||
|
|
|
@ -1 +1,6 @@
|
|||
- Benoit Aimont \<<benoit.aimont@acsone.eu>\> (<https://www.acsone.eu/>)
|
||||
|
||||
- [Sygel](https://sygel.es):
|
||||
- Manuel Regidor \<<manuel.regidor@sygel.es>\>
|
||||
- Harald Panten \<<harald.panten@sygel.es>\>
|
||||
- Valentín Vinagre \<<valentin.vinagre@sygel.es>\>
|
||||
|
|
|
@ -427,6 +427,12 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|||
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Benoit Aimont <<a class="reference external" href="mailto:benoit.aimont@acsone.eu">benoit.aimont@acsone.eu</a>> (<a class="reference external" href="https://www.acsone.eu/">https://www.acsone.eu/</a>)</li>
|
||||
<li><a class="reference external" href="https://sygel.es">Sygel</a>:<ul>
|
||||
<li>Manuel Regidor <<a class="reference external" href="mailto:manuel.regidor@sygel.es">manuel.regidor@sygel.es</a>></li>
|
||||
<li>Harald Panten <<a class="reference external" href="mailto:harald.panten@sygel.es">harald.panten@sygel.es</a>></li>
|
||||
<li>Valentín Vinagre <<a class="reference external" href="mailto:valentin.vinagre@sygel.es">valentin.vinagre@sygel.es</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
|
|
|
@ -4,7 +4,6 @@ import {Component, markup} from "@odoo/owl";
|
|||
|
||||
import {FormViewDialog} from "@web/views/view_dialogs/form_view_dialog";
|
||||
import {session} from "@web/session";
|
||||
import {usePopover} from "@web/core/popover/popover_hook";
|
||||
import {useService} from "@web/core/utils/hooks";
|
||||
|
||||
export class FieldTooltipPopover extends Component {}
|
||||
|
@ -12,7 +11,7 @@ FieldTooltipPopover.template = "web_field_tooltip.FieldTooltipPopover";
|
|||
|
||||
export class FieldTooltip extends Component {
|
||||
setup() {
|
||||
this.popover = usePopover();
|
||||
this.popover = useService("popover");
|
||||
this.tooltipPopover = null;
|
||||
this.hasFieldTooltip = this.props.hasFieldTooltip;
|
||||
this.canManageTooltip = session.can_manage_tooltips;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
sup.field-tooltip {
|
||||
padding-top: 6px;
|
||||
.tooltip-icon {
|
||||
background: none;
|
||||
border: none;
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import {FormController} from "@web/views/form/form_controller";
|
||||
import {_t} from "@web/core/l10n/translation";
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
|
||||
import {session} from "@web/session";
|
||||
|
||||
patch(FormController.prototype, "web_field_tooltip", {
|
||||
getActionMenuItems() {
|
||||
const menuItems = this._super(...arguments);
|
||||
const otherMenuItems = menuItems.other;
|
||||
const web_field_tooltip = {
|
||||
get actionMenuItems() {
|
||||
const menuItems = super.actionMenuItems;
|
||||
const otherMenuItems = menuItems.action;
|
||||
if (session.can_manage_tooltips) {
|
||||
otherMenuItems.push({
|
||||
key: "manage_tooltips",
|
||||
description: this.env._t("Manage tooltips"),
|
||||
description: _t("Manage tooltips"),
|
||||
callback: () => this.manageTooltips(),
|
||||
});
|
||||
}
|
||||
|
@ -31,4 +31,6 @@ patch(FormController.prototype, "web_field_tooltip", {
|
|||
}
|
||||
);
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
patch(FormController.prototype, web_field_tooltip);
|
||||
|
|
|
@ -7,7 +7,7 @@ import {patch} from "@web/core/utils/patch";
|
|||
|
||||
import {session} from "@web/session";
|
||||
|
||||
patch(FormLabel.prototype, "web_field_tooltip", {
|
||||
const web_field_tooltip = {
|
||||
get showTooltipAddHelper() {
|
||||
return session.tooltip_show_add_helper;
|
||||
},
|
||||
|
@ -27,7 +27,9 @@ patch(FormLabel.prototype, "web_field_tooltip", {
|
|||
fieldName: props.fieldName,
|
||||
};
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
patch(FormLabel.prototype, web_field_tooltip);
|
||||
|
||||
FormLabel.components = Object.assign({}, FormLabel.components, {
|
||||
FieldTooltip,
|
||||
|
|
|
@ -7,7 +7,7 @@ import {patch} from "@web/core/utils/patch";
|
|||
|
||||
import {session} from "@web/session";
|
||||
|
||||
patch(ListRenderer.prototype, "web_field_tooltip", {
|
||||
const web_field_tooltip = {
|
||||
showTooltipAddHelper() {
|
||||
return session.tooltip_show_add_helper;
|
||||
},
|
||||
|
@ -29,7 +29,9 @@ patch(ListRenderer.prototype, "web_field_tooltip", {
|
|||
fieldName: fieldName,
|
||||
};
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
patch(ListRenderer.prototype, web_field_tooltip);
|
||||
|
||||
ListRenderer.components = Object.assign({}, ListRenderer.components, {
|
||||
FieldTooltip,
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
name="web_ribbon"
|
||||
title="Archived"
|
||||
bg_color="bg-danger"
|
||||
attrs="{'invisible': [('active', '=', True)]}"
|
||||
invisible="active"
|
||||
/>
|
||||
<group name="first">
|
||||
<group name="left">
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
name="tooltip_show_add_helper"
|
||||
widget="boolean_toggle"
|
||||
readonly="0"
|
||||
attrs="{'invisible': [('tooltip_show_add_helper_allowed', '=', False)]}"
|
||||
invisible="not tooltip_show_add_helper_allowed"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- Copyright 2023 ACSONE SA/NV
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
<template
|
||||
id="web_field_tooltip_asset"
|
||||
inherit_id="web.assets_backend"
|
||||
name="Web Field Tooltip assets"
|
||||
>
|
||||
<xpath expr="." position="inside">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="web_field_tooltip/static/src/css/web_field_tooltip.css"
|
||||
/>
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/web_field_tooltip/static/src/js/controller.js"
|
||||
/>
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/web_field_tooltip/static/src/js/renderer.js"
|
||||
/>
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/web_field_tooltip/static/src/js/web_field_tooltip.js"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
Loading…
Reference in New Issue