mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
make ajax emit rpc events
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
import { EventBus } from "../core/event_bus";
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// Types
|
// Types
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
@@ -17,8 +19,11 @@ export interface RPCControllerQuery {
|
|||||||
|
|
||||||
export type RPCQuery = RPCModelQuery | RPCControllerQuery;
|
export type RPCQuery = RPCModelQuery | RPCControllerQuery;
|
||||||
|
|
||||||
|
type AjaxStatus = "loading" | "notloading";
|
||||||
|
|
||||||
export interface IAjax {
|
export interface IAjax {
|
||||||
rpc(rpc: RPCQuery): Promise<any>;
|
rpc(rpc: RPCQuery): Promise<any>;
|
||||||
|
on(event: "rpc_status", owner: any, callback: (status: AjaxStatus) => void);
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RequestParameters {
|
interface RequestParameters {
|
||||||
@@ -32,16 +37,27 @@ export type FetchMethod = (route: string, params: any) => Promise<any>;
|
|||||||
// Ajax
|
// Ajax
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
export class Ajax implements IAjax {
|
export class Ajax extends EventBus implements IAjax {
|
||||||
fetch: FetchMethod;
|
fetch: FetchMethod;
|
||||||
|
counter: number = 0;
|
||||||
|
|
||||||
constructor(fetch: FetchMethod) {
|
constructor(fetch: FetchMethod) {
|
||||||
|
super();
|
||||||
this.fetch = fetch;
|
this.fetch = fetch;
|
||||||
}
|
}
|
||||||
|
|
||||||
rpc(rpc: RPCQuery): Promise<any> {
|
async rpc(rpc: RPCQuery): Promise<any> {
|
||||||
const request = this.prepareRequest(rpc);
|
const request = this.prepareRequest(rpc);
|
||||||
return this.fetch(request.route, request.params);
|
if (this.counter === 0) {
|
||||||
|
this.trigger("rpc_status", "loading");
|
||||||
|
}
|
||||||
|
this.counter++;
|
||||||
|
const result = await this.fetch(request.route, request.params);
|
||||||
|
this.counter--;
|
||||||
|
if (this.counter === 0) {
|
||||||
|
this.trigger("rpc_status", "notloading");
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private prepareRequest(query: RPCQuery): RequestParameters {
|
private prepareRequest(query: RPCQuery): RequestParameters {
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import { readFile } from "fs";
|
import { readFile } from "fs";
|
||||||
import { Ajax, RPCQuery } from "../src/ts/services/ajax";
|
|
||||||
import { WEnv } from "../src/ts/core/component";
|
import { WEnv } from "../src/ts/core/component";
|
||||||
import { Callback } from "../src/ts/core/event_bus";
|
import { Callback } from "../src/ts/core/event_bus";
|
||||||
import { NotificationManager } from "../src/ts/core/notifications";
|
import { NotificationManager } from "../src/ts/core/notifications";
|
||||||
import { QWeb } from "../src/ts/core/qweb_vdom";
|
import { QWeb } from "../src/ts/core/qweb_vdom";
|
||||||
import { actionRegistry } from "../src/ts/registries";
|
|
||||||
import { IRouter, Query, RouterEvent } from "../src/ts/core/router";
|
import { IRouter, Query, RouterEvent } from "../src/ts/core/router";
|
||||||
import { idGenerator } from "../src/ts/core/utils";
|
import { idGenerator } from "../src/ts/core/utils";
|
||||||
import { getMenuInfo } from "../src/ts/init";
|
import { getMenuInfo } from "../src/ts/init";
|
||||||
|
import { actionRegistry } from "../src/ts/registries";
|
||||||
import { ActionManager } from "../src/ts/services/action_manager";
|
import { ActionManager } from "../src/ts/services/action_manager";
|
||||||
|
import { Ajax } from "../src/ts/services/ajax";
|
||||||
import { MenuInfo } from "../src/ts/widgets/root";
|
import { MenuInfo } from "../src/ts/widgets/root";
|
||||||
import { Env } from "../src/ts/widgets/widget";
|
import { Env } from "../src/ts/widgets/widget";
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
import { Ajax } from "../../src/ts/services/ajax";
|
||||||
|
import { nextMicroTick } from "../helpers";
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Setup and helpers
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
function mockFetch(route: string, params: any): Promise<any> {
|
||||||
|
return Promise.resolve(`${route}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Tests
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
describe("parameters conversion", () => {
|
||||||
|
test("properly translate query in route", async () => {
|
||||||
|
const ajax = new Ajax(mockFetch);
|
||||||
|
const result = await ajax.rpc({ model: "test", method: "hey" });
|
||||||
|
expect(result).toBe("/web/dataset/call_kw/test/hey");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("event and status", () => {
|
||||||
|
test("trigger proper events", async () => {
|
||||||
|
const ajax = new Ajax(mockFetch);
|
||||||
|
const events: string[] = [];
|
||||||
|
ajax.on("rpc_status", null, s => {
|
||||||
|
events.push(s);
|
||||||
|
});
|
||||||
|
expect(events).toEqual([]);
|
||||||
|
ajax.rpc({ model: "test", method: "hey" });
|
||||||
|
expect(events).toEqual(["loading"]);
|
||||||
|
await nextMicroTick();
|
||||||
|
expect(events).toEqual(["loading", "notloading"]);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user