From 57fbbb065ad1c7b5ec57b27d323616b0bdddc897 Mon Sep 17 00:00:00 2001 From: maso Date: Wed, 2 Oct 2024 10:28:20 +0330 Subject: [PATCH] [fix] precommit --- .../job_direct_graph/job_direct_graph.esm.js | 18 +++++++++--------- queue_job/views/queue_job_views.xml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/queue_job/static/src/views/fields/job_direct_graph/job_direct_graph.esm.js b/queue_job/static/src/views/fields/job_direct_graph/job_direct_graph.esm.js index 7dc0b50815..86d336e3b0 100644 --- a/queue_job/static/src/views/fields/job_direct_graph/job_direct_graph.esm.js +++ b/queue_job/static/src/views/fields/job_direct_graph/job_direct_graph.esm.js @@ -1,13 +1,14 @@ /* @odoo-module */ /* global vis */ -import {_t} from "@web/core/l10n/translation"; -import {Component, onWillStart, onMounted, useRef, useState} from "@odoo/owl"; +import {Component, onMounted, onWillStart, useRef, useState} from "@odoo/owl"; import {loadCSS, loadJS} from "@web/core/assets"; + +import {_t} from "@web/core/l10n/translation"; import {registry} from "@web/core/registry"; import {standardFieldProps} from "@web/views/fields/standard_field_props"; -import {useService} from "@web/core/utils/hooks"; import {useRecordObserver} from "@web/model/relational_model/utils"; +import {useService} from "@web/core/utils/hooks"; export class JobDirectGraph extends Component { setup() { @@ -18,7 +19,6 @@ export class JobDirectGraph extends Component { this.network = null; this.state = useState({}); - onWillStart(async () => { await loadJS("/queue_job/static/lib/vis/vis-network.min.js"); loadCSS("/queue_job/static/lib/vis/vis-network.min.css"); @@ -59,13 +59,13 @@ export class JobDirectGraph extends Component { this.$el.empty(); } - let nodes = (this.state.value.nodes || []).map((node) => { + const nodes = (this.state.value.nodes || []).map((node) => { node.title = this.htmlTitle(node.title || ""); - node.label = _t("Job %(id)s", {'id': node.id}); + node.label = _t("Job %(id)s", {id: node.id}); return node; }); - let edges = (this.state.value.edges || []).map((edge) => { + const edges = (this.state.value.edges || []).map((edge) => { const edgeFrom = edge[0]; const edgeTo = edge[1]; return { @@ -98,9 +98,9 @@ export class JobDirectGraph extends Component { // job selected network.selectNodes([this.resId]); }); - network.on("click", (params) => { + network.on("click", (params) => { if (params.nodes.length > 0) { - let resId = params.nodes[0]; + const resId = params.nodes[0]; if (resId !== this.resId) { this.openDependencyJob(resId); } diff --git a/queue_job/views/queue_job_views.xml b/queue_job/views/queue_job_views.xml index 4fdf69a4f9..611ca0937f 100644 --- a/queue_job/views/queue_job_views.xml +++ b/queue_job/views/queue_job_views.xml @@ -67,7 +67,7 @@ - +