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

49 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-04-27 07:50:35 +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_banner',
name: 'Banner',
groupName: "Intro",
2021-05-10 15:45:35 +02:00
},
{
id: 's_picture',
name: 'Title - Image',
groupName: "Images",
2021-05-10 15:45:35 +02:00
},
2021-07-22 14:33:03 +00:00
{
id: 's_numbers',
name: 'Numbers',
groupName: "Content",
2021-07-22 14:33:03 +00:00
},
2021-05-10 15:45:35 +02:00
{
id: 's_text_image',
name: 'Text - Image',
groupName: "Content",
2021-05-10 15:45:35 +02:00
},
{
id: 's_images_wall',
2021-07-22 14:33:03 +00:00
name: 'Images Wall',
groupName: "Images",
2021-05-10 15:45:35 +02:00
},
{
id: 's_call_to_action',
name: 'Call to Action',
groupName: "Content",
2021-05-10 15:45:35 +02:00
},
];
wTourUtils.registerThemeHomepageTour("enark_tour", () => [
wTourUtils.assertCssVariable('--color-palettes-name', '"enark-1"'),
2024-07-01 14:02:37 +02:00
...wTourUtils.dragNDrop(snippets[0]),
...wTourUtils.clickOnText(snippets[0], 'h1'),
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.dragNDrop(snippets[3]),
...wTourUtils.dragNDrop(snippets[4]),
...wTourUtils.dragNDrop(snippets[5]),
2021-05-10 15:45:35 +02:00
]);