[ADD] web_help

[FIX] web_help: Run pre-commit

[FIX] web_help: Run pre-commit

[FIX] web_help: Run pre-commit

[FIX] web_help: Run pre-commit

[IMP] Easy changeable template and buttons texts, more demo, fixed readme.

[IMP] Easy changeable template and buttons texts, more demo, fixed readme.

[IMP] Easy changeable template and buttons texts, more demo, fixed readme.

[FIX] Grammar
This commit is contained in:
tarteo
2023-02-22 14:50:32 +01:00
parent 72c420f5ed
commit d6068076d7
21 changed files with 529 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/** @odoo-module **/
import {Trip} from "@web_help/trip.esm";
import {registry} from "@web/core/registry";
export class UserTrip extends Trip {
setup() {
this.addStep({
selector: ".o_list_button_add",
content: this.env._t("To create a new user click here."),
});
this.addStep({
selector: ".o_cp_searchview",
content: this.env._t("Use the searchbar to find specific users."),
renderContext: {
cbBtnText: this.env._t("Next"),
closeBtnText: this.env._t("Cancel"),
},
});
this.addStep({
selector: ".o_cp_switch_buttons",
content: this.env._t("You can switch to different views here."),
});
}
}
registry.category("trips").add("user_trip", {
Trip: UserTrip,
selector: (model, viewType) => model === "res.users" && viewType === "list",
});