-
-
Notifications
You must be signed in to change notification settings - Fork 697
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] website_form_require_legal: Migration to 17.0
- Loading branch information
1 parent
d31c179
commit 7d2d697
Showing
6 changed files
with
62 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
- [Tecnativa](https://www.tecnativa.com): | ||
- Carlos Roca | ||
- [NICO SOLUTIONS](https://www.nico-solutions.de): | ||
- Nils Coenen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/** @odoo-module **/ | ||
|
||
import options from "@web_editor/js/editor/snippets.options"; | ||
import {renderToElement} from "@web/core/utils/render"; | ||
|
||
options.registry.WebsiteFormEditor.include({ | ||
/** | ||
* @override | ||
*/ | ||
start: function () { | ||
const proms = [this._super(...arguments)]; | ||
this.$target.find(".s_website_form_legal").attr("contentEditable", true); | ||
return Promise.all(proms); | ||
}, | ||
/** | ||
* Toggle the legal terms checkbox | ||
*/ | ||
toggleLegalTerms: function () { | ||
const legalTermsEl = this.$target[0].querySelector(".s_website_form_legal"); | ||
if (legalTermsEl) { | ||
legalTermsEl.remove(); | ||
} else { | ||
const template = document.createElement("template"); | ||
const labelWidth = this.$target[0].querySelector(".s_website_form_label") | ||
.style.width; | ||
template.content.append( | ||
renderToElement("website_form_require_legal.s_website_form_legal", { | ||
labelWidth: labelWidth, | ||
termsURL: "terms", | ||
}) | ||
); | ||
const legal = template.content.firstElementChild; | ||
legal.setAttribute("contentEditable", true); | ||
if (this.$target.find(".s_website_form_recaptcha").length) { | ||
this.$target.find(".s_website_form_recaptcha")[0].before(legal); | ||
} else { | ||
this.$target.find(".s_website_form_submit").before(legal); | ||
} | ||
} | ||
}, | ||
/** | ||
* @override | ||
*/ | ||
_computeWidgetState: function (methodName) { | ||
if (methodName === "toggleLegalTerms") { | ||
return !this.$target[0].querySelector(".s_website_form_legal") || ""; | ||
} | ||
return this._super(...arguments); | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.