/** @odoo-module **/ import wTourUtils from "@website/js/tours/tour_utils"; const snippets = [ { id: 's_banner', name: 'Banner', groupName: "Intro", }, { id: 's_picture', name: 'Title - Image', groupName: "Images", }, { id: 's_numbers', name: 'Numbers', groupName: "Content", }, { id: 's_text_image', name: 'Text - Image', groupName: "Content", }, { id: 's_images_wall', name: 'Images Wall', groupName: "Images", }, { id: 's_call_to_action', name: 'Call to Action', groupName: "Content", }, ]; wTourUtils.registerThemeHomepageTour("enark_tour", () => [ wTourUtils.assertCssVariable('--color-palettes-name', '"enark-1"'), ...wTourUtils.dragNDrop(snippets[0]), ...wTourUtils.clickOnText(snippets[0], 'h1'), wTourUtils.goBackToBlocks(), ...wTourUtils.dragNDrop(snippets[1]), ...wTourUtils.dragNDrop(snippets[2]), ...wTourUtils.dragNDrop(snippets[3]), ...wTourUtils.dragNDrop(snippets[4]), ...wTourUtils.dragNDrop(snippets[5]), ]);