OWL
data_display
Form Controller
Odoo 19 OWL component — Form Controller (views)
Live preview
Interactive
Source excerpt
web/static/src/views/form/form_controller.js
import { _t } from "@web/core/l10n/translation";
import { hasTouch } from "@web/core/browser/feature_detection";
import { ConfirmationDialog } from "@web/core/confirmation_dialog/confirmation_dialog";
import { makeContext } from "@web/core/context";
import { useDebugCategory } from "@web/core/debug/debug_context";
import { registry } from "@web/core/registry";
import { SIZES } from "@web/core/ui/ui_service";
import { user } from "@web/core/user";
import { useBus, useService } from "@web/core/utils/hooks";
import { omit } from "@web/core/utils/objects";
import { createElement, parseXML } from "@web/core/utils/xml";
import { evaluateBooleanExpr } from "@web/core/py_js/py";
import { useSetupAction } from "@web/search/action_hook";
import { Layout } from "@web/search/layout";
import { usePager } from "@web/search/pager_hook";
import { standardViewProps } from "@web/views/standard_view_props";
import { isX2Many } from "@web/views/utils";
import { executeButtonCallback, useViewButtons } from "@web/views/view_button/view_button_hook";
import { ViewButton } from "@web/views/view_button/view_button";
import { Field } from "@web/views/fields/field";
import { useModel } from "@web/model/model";
import { addFieldDependencies, extractFieldsFromArchInfo } from "@web/model/relational_model/utils";
import { useViewCompiler } from "@web/views/view_compiler";
import { useDeleteRecords } from "@web/views/view_hook";
import { Widget } from "@web/views/widgets/widget";
import { STATIC_ACTIONS_GROUP_NUMBER } from "@web/search/action_menus/action_menus";
import { ButtonBox } from "./button_box/button_box";
import { FormCompiler } from "./form_compiler";
import { FormErrorDialog } from "./form_error_dialog/form_error_dialog";
import { FormStatusIndicator } from "./form_status_indicator/form_status_indicator";
import { FormCogMenu } from "./form_cog_menu/form_cog_menu";
import {
Component,
onError,
onMounted,
onRendered,
onWillUnmount,
status,
useComponent,
useEffect,
useRef,
useState,
useSubEnv,
} from "@odoo/owl";
import { FetchRecordError } from "@web/model/relational_model/errors";
import { effect } from "@web/core/utils/reactive";
const viewRegistry = registry.category("views");
export async function loadSubViews(fieldNodes, fields, context, resModel, viewService, isSmall) {
for (const fieldInfo of Object.values(fieldNodes)) {
const fieldName = fieldInfo.name;
const field = fields[fieldName];
if (!isX2Many(field)) {
continue; // what follows only concerns x2many fields
}
if (fieldInfo.invisible === "True" || fieldInfo.invisible === "1") {
continue; // no need to fetch the sub view if the field is always invisible
}
if (!fieldInfo.field.useSubView) {
continue; // the FieldComponent used to render the field doesn't need a sub view
}
fieldInfo.views = fieldInfo.views || {};
let viewType = fieldInfo.viewMode || "list,kanban";
if (viewType.includes(",")) {
viewType = isSmall ? "kanban" : "list";
}
fieldInfo.viewMode = viewType;
if (fieldInfo.views[viewType]) {
continue; // the sub view is inline in the main form view
}
// extract *_view_ref keys from field context, to fetch the adequate view
const fieldContext = {};
const regex = /'([a-z]*_view_ref)' *: *'(.*?)'/g;
let matches;
while ((matches = regex.exec(fieldInfo.context)) !== null) {
fieldContext[matches[1]] = matches[2];
}
// filter out *_view_ref keys from general context
const refinedContext = {};
for (const key in context) {
if (key.indexOf("_view_ref") === -1) {
refinedContext[key] = context[key];
}
}
const comodel = field.relation;
const {
fields: comodelFields,
relatedModels,
views,
} = await viewService.loadViews({
resModel: comodel,
views: [[false, viewType]],
context: makeContext([fieldContext, user.context, refinedContext]),
});
const { ArchParser } = viewRegistry.get(viewType);
const xmlDoc = parseXML(views[viewType].arch);
const archInfo = new ArchParser().parse(xmlDoc, relatedModels, comodel);
fieldInfo.views[viewType] = {
...archInfo,
limit: archInfo.limit || 40,
fields: comodelFields,
};
fieldInfo.relatedFields = comodelFields;
}
}
export function useFormViewInDialog() {
const component = useComponent();
onMounted(() => {
component.env.bus.trigger("FORM-CONTROLLER:FORM-IN-DIALOG:ADD");
});
onWillUnmount(() => {
component.env.bus.trigger("FORM-CONTROLLER:FORM-IN-DIALOG:REMOVE");
Registry / API
- Registry name
FormController- Category
—- Module
web- Slug
form-controller- Nav group
data_display