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

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-06-29 08:48:44 +00:00
/** @odoo-module */
2021-05-10 15:45:35 +02:00
import * as wTourUtils from '@website/js/tours/tour_utils';
2021-05-10 15:45:35 +02:00
const snippets = [
{
2024-09-19 10:58:09 +02:00
id: 's_image_title',
name: 'Image Title',
groupName: "Images",
2021-05-10 15:45:35 +02:00
},
{
2024-09-19 10:58:09 +02:00
id: 's_key_images',
name: 'Key Images',
groupName: "Columns",
2021-05-10 15:45:35 +02:00
},
{
2024-09-19 10:58:09 +02:00
id: 's_pricelist_cafe',
name: 'Pricelist cafe',
groupName: "Content",
2021-05-10 15:45:35 +02:00
},
{
id: 's_quotes_carousel',
name: 'Quotes',
groupName: "People",
2021-05-10 15:45:35 +02:00
},
2024-09-19 10:58:09 +02:00
{
id: 's_quadrant',
name: 'Quadrant',
groupName: "Images",
},
2021-05-10 15:45:35 +02:00
];
wTourUtils.registerThemeHomepageTour("bistro_tour", () => [
2024-09-19 10:58:09 +02:00
wTourUtils.assertCssVariable('--color-palettes-name', '"default-22"'),
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]),
2021-05-10 15:45:35 +02:00
]);