Files
design-themes/theme_bistro/static/src/js/tour.js
T

53 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-06-29 08:48:44 +00:00
/** @odoo-module */
2021-05-10 15:45:35 +02:00
2023-07-13 06:53:15 +00:00
import wTourUtils from '@website/js/tours/tour_utils';
2021-05-10 15:45:35 +02:00
const snippets = [
{
id: 's_cover',
name: 'Cover',
groupName: "Intro",
2021-05-10 15:45:35 +02:00
},
{
id: 's_features',
name: 'Features',
groupName: "Content",
2021-05-10 15:45:35 +02:00
},
{
id: 's_picture',
name: 'Title - Image',
groupName: "Images",
2021-05-10 15:45:35 +02:00
},
{
id: 's_product_catalog',
name: 'Pricelist',
groupName: "Content",
2021-05-10 15:45:35 +02:00
},
{
id: 's_text_block',
name: 'Text',
groupName: "Text",
2021-05-10 15:45:35 +02:00
},
{
id: 's_quotes_carousel',
name: 'Quotes',
groupName: "People",
2021-05-10 15:45:35 +02:00
},
];
wTourUtils.registerThemeHomepageTour("bistro_tour", () => [
wTourUtils.assertCssVariable('--color-palettes-name', '"bistro-5"'),
2024-07-01 14:02:37 +02:00
...wTourUtils.dragNDrop(snippets[0]),
...wTourUtils.clickOnText(snippets[0], 'h1', 'top'),
2021-05-10 15:45:35 +02:00
wTourUtils.goBackToBlocks(),
2024-07-01 14:02:37 +02:00
...wTourUtils.dragNDrop(snippets[1]),
...wTourUtils.dragNDrop(snippets[2]),
...wTourUtils.clickOnSnippet(snippets[2]),
2021-06-29 08:48:44 +00:00
wTourUtils.changeBackgroundColor(),
wTourUtils.selectColorPalette(),
wTourUtils.goBackToBlocks(),
2024-07-01 14:02:37 +02:00
...wTourUtils.dragNDrop(snippets[3]),
...wTourUtils.dragNDrop(snippets[4]),
...wTourUtils.dragNDrop(snippets[5]),
2021-05-10 15:45:35 +02:00
]);