mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
2da6c2e84d
It is now automatic as the last step of the homepage tours.
Part of https://github.com/odoo/design-themes/pull/2
task-2491890
X-original-commit: 9ee8f97264
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
odoo.define("theme_kiddo.tour.kiddo", function (require) {
|
|
"use strict";
|
|
|
|
const core = require("web.core");
|
|
const _t = core._t;
|
|
const wTourUtils = require("website.tour_utils");
|
|
var tour = require("web_tour.tour");
|
|
|
|
const snippets = [
|
|
{
|
|
id: 's_banner',
|
|
name: 'Banner',
|
|
},
|
|
{
|
|
id: 's_image_text',
|
|
name: 'Image - Text',
|
|
},
|
|
{
|
|
id: 's_product_list',
|
|
name: 'Items',
|
|
},
|
|
{
|
|
id: 's_three_columns',
|
|
name: 'Columns',
|
|
},
|
|
{
|
|
id: 's_call_to_action',
|
|
name: 'Call to Action',
|
|
},
|
|
];
|
|
|
|
wTourUtils.registerThemeHomepageTour("kiddo_tour", [
|
|
wTourUtils.dragNDrop(snippets[0]),
|
|
wTourUtils.clickOnText(snippets[0], 'h1'),
|
|
wTourUtils.goBackToBlocks(),
|
|
wTourUtils.dragNDrop(snippets[1]),
|
|
wTourUtils.dragNDrop(snippets[2]),
|
|
wTourUtils.dragNDrop(snippets[3]),
|
|
wTourUtils.clickOnSnippet(snippets[3]),
|
|
wTourUtils.changeOption('ContainerWidth', 'we-button-group.o_we_user_value_widget', _t('width')),
|
|
wTourUtils.goBackToBlocks(),
|
|
wTourUtils.dragNDrop(snippets[4]),
|
|
]);
|
|
});
|