mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
31 lines
921 B
JavaScript
31 lines
921 B
JavaScript
/** @odoo-module **/
|
|
/* Copyright 2022 Tecnativa - Alexandre D. Díaz
|
|
* Copyright 2022 Tecnativa - Carlos Roca
|
|
* Copyright 2023 Taras Shabaranskyi
|
|
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
|
|
|
|
import {ControlPanel} from "@web/search/control_panel/control_panel";
|
|
import {Refresher} from "./refresher.esm";
|
|
import {patch} from "@web/core/utils/patch";
|
|
|
|
patch(ControlPanel, {
|
|
components: {...ControlPanel.components, Refresher},
|
|
});
|
|
|
|
patch(ControlPanel.prototype, {
|
|
/**
|
|
* @returns {{searchModel: Object<*>, pagerProps: Object<*>}|null}
|
|
*/
|
|
get refresherProps() {
|
|
const {config, searchModel} = this.env;
|
|
const forbiddenSubType = ["base_settings"];
|
|
if (forbiddenSubType.includes(config.viewSubType)) {
|
|
return null;
|
|
}
|
|
return {
|
|
searchModel: searchModel,
|
|
pagerProps: this.pagerProps,
|
|
};
|
|
},
|
|
});
|