/** @odoo-module **/ /* Copyright 2021 ITerra - Sergey Shebanin * Copyright 2023 Onestein - Anjeel Haria * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */ import LegacyControlPanel from "web.ControlPanel"; import {ControlPanel} from "@web/search/control_panel/control_panel"; import {deviceContext} from "@web_responsive/components/ui_context.esm"; import {patch} from "web.utils"; import {Dropdown} from "@web/core/dropdown/dropdown"; const {useState} = owl; // In v15.0 there are two ControlPanel's. They are mostly the same and are used in legacy and new owl views. // We extend them two mostly the same way. // Patch legacy control panel to add states for mobile quick search patch(LegacyControlPanel.prototype, "web_responsive.LegacyControlPanelMobile", { setup() { this._super(); this.state = useState({ mobileSearchMode: this.props.withBreadcrumbs ? "" : "quick", }); this.ui = deviceContext; }, setMobileSearchMode(ev) { this.state.mobileSearchMode = ev.detail; }, }); // Patch control panel to add states for mobile quick search patch(ControlPanel.prototype, "web_responsive.ControlPanelMobile", { setup() { this._super(); this.state = useState({ mobileSearchMode: "", }); this.ui = deviceContext; }, setMobileSearchMode(ev) { this.state.mobileSearchMode = ev.detail; }, }); Object.assign(LegacyControlPanel.components, {Dropdown});