@ddd-qc/agent-directory 6.0.0 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent_directory.zvm.d.ts +24 -24
- package/dist/agent_directory.zvm.js +41 -41
- package/dist/agent_directory.zvm.js.map +1 -1
- package/dist/bindings/agent_directory.fn.d.ts +7 -7
- package/dist/bindings/agent_directory.fn.js +18 -18
- package/dist/bindings/agent_directory.proxy.d.ts +10 -10
- package/dist/bindings/agent_directory.proxy.js +13 -13
- package/dist/bindings/agent_directory.types.d.ts +1 -1
- package/dist/bindings/agent_directory.types.js +2 -2
- package/dist/elements/agent-directory-list.d.ts +20 -20
- package/dist/elements/agent-directory-list.js +53 -53
- package/dist/elements/agent-directory-list.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -1
@@ -1,24 +1,24 @@
|
|
1
|
-
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
2
|
-
import { AgentPubKeyB64 } from "@holochain/client";
|
3
|
-
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
|
-
/** */
|
5
|
-
export interface AgentDirectoryPerspective {
|
6
|
-
agents: AgentPubKeyB64[];
|
7
|
-
}
|
8
|
-
/**
|
9
|
-
*
|
10
|
-
*/
|
11
|
-
export declare class AgentDirectoryZvm extends ZomeViewModel {
|
12
|
-
static readonly ZOME_PROXY: typeof AgentDirectoryProxy;
|
13
|
-
get zomeProxy(): AgentDirectoryProxy;
|
14
|
-
/** -- Fields -- */
|
15
|
-
private _agents;
|
16
|
-
/** -- Methods -- */
|
17
|
-
get perspective(): AgentDirectoryPerspective;
|
18
|
-
/** */
|
19
|
-
protected hasChanged(): boolean;
|
20
|
-
/** */
|
21
|
-
probeAll(): Promise<void>;
|
22
|
-
/** */
|
23
|
-
probeRegisteredAgents(): Promise<void>;
|
24
|
-
}
|
1
|
+
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
2
|
+
import { AgentPubKeyB64 } from "@holochain/client";
|
3
|
+
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
|
+
/** */
|
5
|
+
export interface AgentDirectoryPerspective {
|
6
|
+
agents: AgentPubKeyB64[];
|
7
|
+
}
|
8
|
+
/**
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
export declare class AgentDirectoryZvm extends ZomeViewModel {
|
12
|
+
static readonly ZOME_PROXY: typeof AgentDirectoryProxy;
|
13
|
+
get zomeProxy(): AgentDirectoryProxy;
|
14
|
+
/** -- Fields -- */
|
15
|
+
private _agents;
|
16
|
+
/** -- Methods -- */
|
17
|
+
get perspective(): AgentDirectoryPerspective;
|
18
|
+
/** */
|
19
|
+
protected hasChanged(): boolean;
|
20
|
+
/** */
|
21
|
+
probeAll(): Promise<void>;
|
22
|
+
/** */
|
23
|
+
probeRegisteredAgents(): Promise<void>;
|
24
|
+
}
|
@@ -1,42 +1,42 @@
|
|
1
|
-
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
2
|
-
import { encodeHashToBase64 } from "@holochain/client";
|
3
|
-
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
|
-
/**
|
5
|
-
*
|
6
|
-
*/
|
7
|
-
export class AgentDirectoryZvm extends ZomeViewModel {
|
8
|
-
constructor() {
|
9
|
-
super(...arguments);
|
10
|
-
/** -- Fields -- */
|
11
|
-
this._agents = [];
|
12
|
-
}
|
13
|
-
get zomeProxy() {
|
14
|
-
return this._zomeProxy;
|
15
|
-
}
|
16
|
-
/** -- Methods -- */
|
17
|
-
/* */
|
18
|
-
get perspective() {
|
19
|
-
return { agents: this._agents };
|
20
|
-
}
|
21
|
-
/** */
|
22
|
-
hasChanged() {
|
23
|
-
if (!this._previousPerspective)
|
24
|
-
return true;
|
25
|
-
let hasChanged = JSON.stringify(this.perspective.agents) !== JSON.stringify(this._previousPerspective.agents);
|
26
|
-
return hasChanged;
|
27
|
-
}
|
28
|
-
/** */
|
29
|
-
async probeAll() {
|
30
|
-
await this.probeRegisteredAgents();
|
31
|
-
}
|
32
|
-
/** */
|
33
|
-
async probeRegisteredAgents() {
|
34
|
-
let agents = await this.zomeProxy.getRegisteredAgents();
|
35
|
-
this._agents = agents.map((agentKey) => encodeHashToBase64(agentKey));
|
36
|
-
// Debug add a random string to the perspective
|
37
|
-
// this._agents.push(String.fromCharCode("A".charCodeAt(0) + Math.floor(Math.random() * 26)))
|
38
|
-
this.notifySubscribers();
|
39
|
-
}
|
40
|
-
}
|
41
|
-
AgentDirectoryZvm.ZOME_PROXY = AgentDirectoryProxy;
|
1
|
+
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
2
|
+
import { encodeHashToBase64 } from "@holochain/client";
|
3
|
+
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
|
+
/**
|
5
|
+
*
|
6
|
+
*/
|
7
|
+
export class AgentDirectoryZvm extends ZomeViewModel {
|
8
|
+
constructor() {
|
9
|
+
super(...arguments);
|
10
|
+
/** -- Fields -- */
|
11
|
+
this._agents = [];
|
12
|
+
}
|
13
|
+
get zomeProxy() {
|
14
|
+
return this._zomeProxy;
|
15
|
+
}
|
16
|
+
/** -- Methods -- */
|
17
|
+
/* */
|
18
|
+
get perspective() {
|
19
|
+
return { agents: this._agents };
|
20
|
+
}
|
21
|
+
/** */
|
22
|
+
hasChanged() {
|
23
|
+
if (!this._previousPerspective)
|
24
|
+
return true;
|
25
|
+
let hasChanged = JSON.stringify(this.perspective.agents) !== JSON.stringify(this._previousPerspective.agents);
|
26
|
+
return hasChanged;
|
27
|
+
}
|
28
|
+
/** */
|
29
|
+
async probeAll() {
|
30
|
+
await this.probeRegisteredAgents();
|
31
|
+
}
|
32
|
+
/** */
|
33
|
+
async probeRegisteredAgents() {
|
34
|
+
let agents = await this.zomeProxy.getRegisteredAgents();
|
35
|
+
this._agents = agents.map((agentKey) => encodeHashToBase64(agentKey));
|
36
|
+
// Debug add a random string to the perspective
|
37
|
+
// this._agents.push(String.fromCharCode("A".charCodeAt(0) + Math.floor(Math.random() * 26)))
|
38
|
+
this.notifySubscribers();
|
39
|
+
}
|
40
|
+
}
|
41
|
+
AgentDirectoryZvm.ZOME_PROXY = AgentDirectoryProxy;
|
42
42
|
//# sourceMappingURL=agent_directory.zvm.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"agent_directory.zvm.js","sourceRoot":"","sources":["../src/agent_directory.zvm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAkB,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvE,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AASrE;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,aAAa;IAApD;;QASE,mBAAmB;QAEX,YAAO,GAAqB,EAAE,CAAC;IAkCzC,CAAC;IAzCC,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAiC,CAAC;IAChD,CAAC;IAQD,oBAAoB;IAEpB,KAAK;IACL,IAAI,WAAW;QACb,OAAO,EAAC,MAAM,EAAE,IAAI,CAAC,OAAO,EAAC,CAAA;IAC/B,CAAC;IAGD,MAAM;IACI,UAAU;QAClB,IAAI,CAAC,IAAI,CAAC,oBAAoB;YAAE,OAAO,IAAI,CAAC;QAC5C,IAAI,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,IAAI,CAAC,SAAS,CAAE,IAAI,CAAC,oBAAkD,CAAC,MAAM,CAAC,CAAA;QAC5I,OAAO,UAAU,CAAA;IACnB,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,QAAQ;QACZ,MAAM,IAAI,CAAC,qBAAqB,EAAE,CAAA;IACpC,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,qBAAqB;QACzB,IAAI,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,mBAAmB,EAAE,CAAC;QACxD,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,CAAC;QACtE,+CAA+C;QAC/C,6FAA6F;QAC7F,IAAI,CAAC,iBAAiB,EAAE,CAAA;IAC1B,CAAC;;AAzCe,4BAAU,GAAG,mBAAmB,
|
1
|
+
{"version":3,"file":"agent_directory.zvm.js","sourceRoot":"","sources":["../src/agent_directory.zvm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAkB,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvE,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AASrE;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,aAAa;IAApD;;QASE,mBAAmB;QAEX,YAAO,GAAqB,EAAE,CAAC;IAkCzC,CAAC;IAzCC,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAiC,CAAC;IAChD,CAAC;IAQD,oBAAoB;IAEpB,KAAK;IACL,IAAI,WAAW;QACb,OAAO,EAAC,MAAM,EAAE,IAAI,CAAC,OAAO,EAAC,CAAA;IAC/B,CAAC;IAGD,MAAM;IACI,UAAU;QAClB,IAAI,CAAC,IAAI,CAAC,oBAAoB;YAAE,OAAO,IAAI,CAAC;QAC5C,IAAI,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,IAAI,CAAC,SAAS,CAAE,IAAI,CAAC,oBAAkD,CAAC,MAAM,CAAC,CAAA;QAC5I,OAAO,UAAU,CAAA;IACnB,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,QAAQ;QACZ,MAAM,IAAI,CAAC,qBAAqB,EAAE,CAAA;IACpC,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,qBAAqB;QACzB,IAAI,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,mBAAmB,EAAE,CAAC;QACxD,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,CAAC;QACtE,+CAA+C;QAC/C,6FAA6F;QAC7F,IAAI,CAAC,iBAAiB,EAAE,CAAA;IAC1B,CAAC;;AAzCe,4BAAU,GAAG,mBAAmB,AAAtB,CAAuB","sourcesContent":["import {ZomeViewModel} from \"@ddd-qc/lit-happ\";\nimport { AgentPubKeyB64, encodeHashToBase64 } from \"@holochain/client\";\nimport {AgentDirectoryProxy} from \"./bindings/agent_directory.proxy\";\n\n\n/** */\nexport interface AgentDirectoryPerspective {\n agents: AgentPubKeyB64[],\n}\n\n\n/**\n *\n */\nexport class AgentDirectoryZvm extends ZomeViewModel {\n\n static readonly ZOME_PROXY = AgentDirectoryProxy;\n\n get zomeProxy(): AgentDirectoryProxy {\n return this._zomeProxy as AgentDirectoryProxy;\n }\n\n\n /** -- Fields -- */\n\n private _agents: AgentPubKeyB64[] = [];\n\n\n /** -- Methods -- */\n\n /* */\n get perspective(): AgentDirectoryPerspective {\n return {agents: this._agents}\n }\n\n\n /** */\n protected hasChanged(): boolean {\n if (!this._previousPerspective) return true;\n let hasChanged = JSON.stringify(this.perspective.agents) !== JSON.stringify((this._previousPerspective as AgentDirectoryPerspective).agents)\n return hasChanged\n }\n\n\n /** */\n async probeAll(): Promise<void> {\n await this.probeRegisteredAgents()\n }\n\n\n /** */\n async probeRegisteredAgents() {\n let agents = await this.zomeProxy.getRegisteredAgents();\n this._agents = agents.map((agentKey) => encodeHashToBase64(agentKey));\n // Debug add a random string to the perspective\n // this._agents.push(String.fromCharCode(\"A\".charCodeAt(0) + Math.floor(Math.random() * 26)))\n this.notifySubscribers()\n }\n\n}"]}
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import { ZomeName, FunctionName } from '@holochain/client';
|
2
|
-
/** Array of all zome function names in "agentDirectory" */
|
3
|
-
export declare const agentDirectoryFunctionNames: FunctionName[];
|
4
|
-
/** Generate tuple array of function names with given zomeName */
|
5
|
-
export declare function generateAgentDirectoryZomeFunctionsArray(zomeName: ZomeName): [ZomeName, FunctionName][];
|
6
|
-
/** Tuple array of all zome function names with default zome name "agent_directory" */
|
7
|
-
export declare const agentDirectoryZomeFunctions: [ZomeName, FunctionName][];
|
1
|
+
import { ZomeName, FunctionName } from '@holochain/client';
|
2
|
+
/** Array of all zome function names in "agentDirectory" */
|
3
|
+
export declare const agentDirectoryFunctionNames: FunctionName[];
|
4
|
+
/** Generate tuple array of function names with given zomeName */
|
5
|
+
export declare function generateAgentDirectoryZomeFunctionsArray(zomeName: ZomeName): [ZomeName, FunctionName][];
|
6
|
+
/** Tuple array of all zome function names with default zome name "agent_directory" */
|
7
|
+
export declare const agentDirectoryZomeFunctions: [ZomeName, FunctionName][];
|
@@ -1,19 +1,19 @@
|
|
1
|
-
/* This file is generated by zits. Do not edit manually */
|
2
|
-
/** Array of all zome function names in "agentDirectory" */
|
3
|
-
export const agentDirectoryFunctionNames = [
|
4
|
-
"entry_defs",
|
5
|
-
"get_zome_info",
|
6
|
-
"get_dna_info",
|
7
|
-
"get_registered_agents",
|
8
|
-
];
|
9
|
-
/** Generate tuple array of function names with given zomeName */
|
10
|
-
export function generateAgentDirectoryZomeFunctionsArray(zomeName) {
|
11
|
-
const fns = [];
|
12
|
-
for (const fn of agentDirectoryFunctionNames) {
|
13
|
-
fns.push([zomeName, fn]);
|
14
|
-
}
|
15
|
-
return fns;
|
16
|
-
}
|
17
|
-
/** Tuple array of all zome function names with default zome name "agent_directory" */
|
18
|
-
export const agentDirectoryZomeFunctions = generateAgentDirectoryZomeFunctionsArray("agent_directory");
|
1
|
+
/* This file is generated by zits. Do not edit manually */
|
2
|
+
/** Array of all zome function names in "agentDirectory" */
|
3
|
+
export const agentDirectoryFunctionNames = [
|
4
|
+
"entry_defs",
|
5
|
+
"get_zome_info",
|
6
|
+
"get_dna_info",
|
7
|
+
"get_registered_agents",
|
8
|
+
];
|
9
|
+
/** Generate tuple array of function names with given zomeName */
|
10
|
+
export function generateAgentDirectoryZomeFunctionsArray(zomeName) {
|
11
|
+
const fns = [];
|
12
|
+
for (const fn of agentDirectoryFunctionNames) {
|
13
|
+
fns.push([zomeName, fn]);
|
14
|
+
}
|
15
|
+
return fns;
|
16
|
+
}
|
17
|
+
/** Tuple array of all zome function names with default zome name "agent_directory" */
|
18
|
+
export const agentDirectoryZomeFunctions = generateAgentDirectoryZomeFunctionsArray("agent_directory");
|
19
19
|
//# sourceMappingURL=agent_directory.fn.js.map
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { AgentPubKey } from '@holochain/client';
|
2
|
-
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
-
/**
|
4
|
-
*
|
5
|
-
*/
|
6
|
-
export declare class AgentDirectoryProxy extends ZomeProxy {
|
7
|
-
static readonly DEFAULT_ZOME_NAME = "agent_directory";
|
8
|
-
static readonly FN_NAMES: string[];
|
9
|
-
getRegisteredAgents(): Promise<AgentPubKey[]>;
|
10
|
-
}
|
1
|
+
import { AgentPubKey } from '@holochain/client';
|
2
|
+
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
+
/**
|
4
|
+
*
|
5
|
+
*/
|
6
|
+
export declare class AgentDirectoryProxy extends ZomeProxy {
|
7
|
+
static readonly DEFAULT_ZOME_NAME = "agent_directory";
|
8
|
+
static readonly FN_NAMES: string[];
|
9
|
+
getRegisteredAgents(): Promise<AgentPubKey[]>;
|
10
|
+
}
|
@@ -1,14 +1,14 @@
|
|
1
|
-
/* This file is generated by zits. Do not edit manually */
|
2
|
-
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
-
import { agentDirectoryFunctionNames } from './agent_directory.fn';
|
4
|
-
/**
|
5
|
-
*
|
6
|
-
*/
|
7
|
-
export class AgentDirectoryProxy extends ZomeProxy {
|
8
|
-
async getRegisteredAgents() {
|
9
|
-
return this.call('get_registered_agents', null);
|
10
|
-
}
|
11
|
-
}
|
12
|
-
AgentDirectoryProxy.DEFAULT_ZOME_NAME = "agent_directory";
|
13
|
-
AgentDirectoryProxy.FN_NAMES = agentDirectoryFunctionNames;
|
1
|
+
/* This file is generated by zits. Do not edit manually */
|
2
|
+
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
+
import { agentDirectoryFunctionNames } from './agent_directory.fn';
|
4
|
+
/**
|
5
|
+
*
|
6
|
+
*/
|
7
|
+
export class AgentDirectoryProxy extends ZomeProxy {
|
8
|
+
async getRegisteredAgents() {
|
9
|
+
return this.call('get_registered_agents', null);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
AgentDirectoryProxy.DEFAULT_ZOME_NAME = "agent_directory";
|
13
|
+
AgentDirectoryProxy.FN_NAMES = agentDirectoryFunctionNames;
|
14
14
|
//# sourceMappingURL=agent_directory.proxy.js.map
|
@@ -1 +1 @@
|
|
1
|
-
export declare const AGENT_DIRECTORY_PATH = "registered_agents";
|
1
|
+
export declare const AGENT_DIRECTORY_PATH = "registered_agents";
|
@@ -1,3 +1,3 @@
|
|
1
|
-
/* This file is generated by zits. Do not edit manually */
|
2
|
-
export const AGENT_DIRECTORY_PATH = "registered_agents";
|
1
|
+
/* This file is generated by zits. Do not edit manually */
|
2
|
+
export const AGENT_DIRECTORY_PATH = "registered_agents";
|
3
3
|
//# sourceMappingURL=agent_directory.types.js.map
|
@@ -1,20 +1,20 @@
|
|
1
|
-
import { ZomeElement } from "@ddd-qc/lit-happ";
|
2
|
-
import { AgentDirectoryPerspective, AgentDirectoryZvm } from "../agent_directory.zvm";
|
3
|
-
/**
|
4
|
-
* @element agent-directory-list
|
5
|
-
*/
|
6
|
-
export declare class AgentDirectoryList extends ZomeElement<AgentDirectoryPerspective, AgentDirectoryZvm> {
|
7
|
-
/** Ctor */
|
8
|
-
constructor();
|
9
|
-
/** -- Fields -- */
|
10
|
-
private _initialized;
|
11
|
-
/** -- Methods -- */
|
12
|
-
/** After first call to render() */
|
13
|
-
firstUpdated(): Promise<void>;
|
14
|
-
/** After each call to render() */
|
15
|
-
updated(changedProperties: any): Promise<void>;
|
16
|
-
/** */
|
17
|
-
refresh(_e?: any): Promise<void>;
|
18
|
-
/** */
|
19
|
-
render(): import("lit-html").TemplateResult<1>;
|
20
|
-
}
|
1
|
+
import { ZomeElement } from "@ddd-qc/lit-happ";
|
2
|
+
import { AgentDirectoryPerspective, AgentDirectoryZvm } from "../agent_directory.zvm";
|
3
|
+
/**
|
4
|
+
* @element agent-directory-list
|
5
|
+
*/
|
6
|
+
export declare class AgentDirectoryList extends ZomeElement<AgentDirectoryPerspective, AgentDirectoryZvm> {
|
7
|
+
/** Ctor */
|
8
|
+
constructor();
|
9
|
+
/** -- Fields -- */
|
10
|
+
private _initialized;
|
11
|
+
/** -- Methods -- */
|
12
|
+
/** After first call to render() */
|
13
|
+
firstUpdated(): Promise<void>;
|
14
|
+
/** After each call to render() */
|
15
|
+
updated(changedProperties: any): Promise<void>;
|
16
|
+
/** */
|
17
|
+
refresh(_e?: any): Promise<void>;
|
18
|
+
/** */
|
19
|
+
render(): import("lit-html").TemplateResult<1>;
|
20
|
+
}
|
@@ -1,58 +1,58 @@
|
|
1
|
-
import { __decorate } from "tslib";
|
2
|
-
import { html } from "lit";
|
3
|
-
import { state, customElement } from "lit/decorators.js";
|
4
|
-
import { ZomeElement } from "@ddd-qc/lit-happ";
|
5
|
-
import { AgentDirectoryZvm } from "../agent_directory.zvm";
|
6
|
-
/**
|
7
|
-
* @element agent-directory-list
|
8
|
-
*/
|
9
|
-
let AgentDirectoryList = class AgentDirectoryList extends ZomeElement {
|
10
|
-
/** Ctor */
|
11
|
-
constructor() {
|
12
|
-
super(AgentDirectoryZvm.DEFAULT_ZOME_NAME);
|
13
|
-
/** -- Fields -- */
|
14
|
-
this._initialized = false;
|
15
|
-
}
|
16
|
-
/** -- Methods -- */
|
17
|
-
/** After first call to render() */
|
18
|
-
async firstUpdated() {
|
19
|
-
//this._viewModel.subscribe(this, 'perspective');
|
20
|
-
await this.refresh();
|
21
|
-
this._initialized = true;
|
22
|
-
}
|
23
|
-
/** After each call to render() */
|
24
|
-
async updated(changedProperties) {
|
25
|
-
// n/a
|
26
|
-
}
|
27
|
-
/** */
|
28
|
-
async refresh(_e) {
|
29
|
-
//console.log("refresh(): Pulling data from DHT")
|
30
|
-
await this._zvm.probeAll();
|
31
|
-
}
|
32
|
-
/** */
|
33
|
-
render() {
|
34
|
-
console.log("agent-directory-list render() START");
|
35
|
-
if (!this._initialized) {
|
36
|
-
return html `<span>Loading...</span>`;
|
37
|
-
}
|
38
|
-
/* Agents */
|
39
|
-
const agentLi = Object.entries(this.perspective.agents).map(([_index, agentIdB64]) => {
|
40
|
-
//console.log("" + index + ". " + agentIdB64)
|
41
|
-
return html `<li value="${agentIdB64}">${agentIdB64}</li>`;
|
42
|
-
});
|
43
|
-
/** render all */
|
1
|
+
import { __decorate } from "tslib";
|
2
|
+
import { html } from "lit";
|
3
|
+
import { state, customElement } from "lit/decorators.js";
|
4
|
+
import { ZomeElement } from "@ddd-qc/lit-happ";
|
5
|
+
import { AgentDirectoryZvm } from "../agent_directory.zvm";
|
6
|
+
/**
|
7
|
+
* @element agent-directory-list
|
8
|
+
*/
|
9
|
+
let AgentDirectoryList = class AgentDirectoryList extends ZomeElement {
|
10
|
+
/** Ctor */
|
11
|
+
constructor() {
|
12
|
+
super(AgentDirectoryZvm.DEFAULT_ZOME_NAME);
|
13
|
+
/** -- Fields -- */
|
14
|
+
this._initialized = false;
|
15
|
+
}
|
16
|
+
/** -- Methods -- */
|
17
|
+
/** After first call to render() */
|
18
|
+
async firstUpdated() {
|
19
|
+
//this._viewModel.subscribe(this, 'perspective');
|
20
|
+
await this.refresh();
|
21
|
+
this._initialized = true;
|
22
|
+
}
|
23
|
+
/** After each call to render() */
|
24
|
+
async updated(changedProperties) {
|
25
|
+
// n/a
|
26
|
+
}
|
27
|
+
/** */
|
28
|
+
async refresh(_e) {
|
29
|
+
//console.log("refresh(): Pulling data from DHT")
|
30
|
+
await this._zvm.probeAll();
|
31
|
+
}
|
32
|
+
/** */
|
33
|
+
render() {
|
34
|
+
console.log("agent-directory-list render() START");
|
35
|
+
if (!this._initialized) {
|
36
|
+
return html `<span>Loading...</span>`;
|
37
|
+
}
|
38
|
+
/* Agents */
|
39
|
+
const agentLi = Object.entries(this.perspective.agents).map(([_index, agentIdB64]) => {
|
40
|
+
//console.log("" + index + ". " + agentIdB64)
|
41
|
+
return html `<li value="${agentIdB64}">${agentIdB64}</li>`;
|
42
|
+
});
|
43
|
+
/** render all */
|
44
44
|
return html `
|
45
45
|
<ul>
|
46
46
|
${agentLi}
|
47
47
|
</ul>
|
48
|
-
`;
|
49
|
-
}
|
50
|
-
};
|
51
|
-
__decorate([
|
52
|
-
state()
|
53
|
-
], AgentDirectoryList.prototype, "_initialized", void 0);
|
54
|
-
AgentDirectoryList = __decorate([
|
55
|
-
customElement("agent-directory-list")
|
56
|
-
], AgentDirectoryList);
|
57
|
-
export { AgentDirectoryList };
|
48
|
+
`;
|
49
|
+
}
|
50
|
+
};
|
51
|
+
__decorate([
|
52
|
+
state()
|
53
|
+
], AgentDirectoryList.prototype, "_initialized", void 0);
|
54
|
+
AgentDirectoryList = __decorate([
|
55
|
+
customElement("agent-directory-list")
|
56
|
+
], AgentDirectoryList);
|
57
|
+
export { AgentDirectoryList };
|
58
58
|
//# sourceMappingURL=agent-directory-list.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"agent-directory-list.js","sourceRoot":"","sources":["../../src/elements/agent-directory-list.ts"],"names":[],"mappings":";AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAW,KAAK,EAAE,aAAa,EAAC,MAAM,mBAAmB,CAAC;AACjE,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAA4B,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AAEpF;;GAEG;AAEI,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,WAAyD;IAC/F,WAAW;IACX;QACE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;QAI7C,mBAAmB;QAEF,iBAAY,GAAG,KAAK,CAAC;IALtC,CAAC;IASD,oBAAoB;IAEpB,mCAAmC;IACnC,KAAK,CAAC,YAAY;QAChB,iDAAiD;QACjD,MAAM,IAAI,CAAC,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAGD,kCAAkC;IAClC,KAAK,CAAC,OAAO,CAAC,iBAAsB;QAClC,MAAM;IACR,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,OAAO,CAAC,EAAQ;QACpB,iDAAiD;QACjD,MAAM,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;IAC7B,CAAC;IAGD,MAAM;IACN,MAAM;QACJ,OAAO,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;QAEnD,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE;YACtB,OAAO,IAAI,CAAA,yBAAyB,CAAC;SACtC;QAED,YAAY;QACZ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,CACvD,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE,EAAE;YACvB,6CAA6C;YAC7C,OAAO,IAAI,CAAC,cAAc,UAAU,KAAK,UAAU,OAAO,CAAA;QAC5D,CAAC,CACJ,CAAA;QAED,iBAAiB;QACjB,OAAO,IAAI,CAAA;;YAEH,OAAO;;KAEd,CAAC;IACJ,CAAC;CACF,CAAA;
|
1
|
+
{"version":3,"file":"agent-directory-list.js","sourceRoot":"","sources":["../../src/elements/agent-directory-list.ts"],"names":[],"mappings":";AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAW,KAAK,EAAE,aAAa,EAAC,MAAM,mBAAmB,CAAC;AACjE,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAA4B,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AAEpF;;GAEG;AAEI,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,WAAyD;IAC/F,WAAW;IACX;QACE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;QAI7C,mBAAmB;QAEF,iBAAY,GAAG,KAAK,CAAC;IALtC,CAAC;IASD,oBAAoB;IAEpB,mCAAmC;IACnC,KAAK,CAAC,YAAY;QAChB,iDAAiD;QACjD,MAAM,IAAI,CAAC,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAGD,kCAAkC;IAClC,KAAK,CAAC,OAAO,CAAC,iBAAsB;QAClC,MAAM;IACR,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,OAAO,CAAC,EAAQ;QACpB,iDAAiD;QACjD,MAAM,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;IAC7B,CAAC;IAGD,MAAM;IACN,MAAM;QACJ,OAAO,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;QAEnD,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE;YACtB,OAAO,IAAI,CAAA,yBAAyB,CAAC;SACtC;QAED,YAAY;QACZ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,CACvD,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE,EAAE;YACvB,6CAA6C;YAC7C,OAAO,IAAI,CAAC,cAAc,UAAU,KAAK,UAAU,OAAO,CAAA;QAC5D,CAAC,CACJ,CAAA;QAED,iBAAiB;QACjB,OAAO,IAAI,CAAA;;YAEH,OAAO;;KAEd,CAAC;IACJ,CAAC;CACF,CAAA;AAlDkB;IAAhB,KAAK,EAAE;wDAA8B;AAT3B,kBAAkB;IAD9B,aAAa,CAAC,sBAAsB,CAAC;GACzB,kBAAkB,CA2D9B","sourcesContent":["import {html} from \"lit\";\nimport {property, state, customElement} from \"lit/decorators.js\";\nimport {ZomeElement} from \"@ddd-qc/lit-happ\";\nimport {AgentDirectoryPerspective, AgentDirectoryZvm} from \"../agent_directory.zvm\";\n\n/**\n * @element agent-directory-list\n */\n@customElement(\"agent-directory-list\")\nexport class AgentDirectoryList extends ZomeElement<AgentDirectoryPerspective, AgentDirectoryZvm> {\n /** Ctor */\n constructor() {\n super(AgentDirectoryZvm.DEFAULT_ZOME_NAME);\n }\n\n\n /** -- Fields -- */\n\n @state() private _initialized = false;\n\n\n\n /** -- Methods -- */\n\n /** After first call to render() */\n async firstUpdated() {\n //this._viewModel.subscribe(this, 'perspective');\n await this.refresh();\n this._initialized = true;\n }\n\n\n /** After each call to render() */\n async updated(changedProperties: any) {\n // n/a\n }\n\n\n /** */\n async refresh(_e?: any) {\n //console.log(\"refresh(): Pulling data from DHT\")\n await this._zvm.probeAll();\n }\n\n\n /** */\n render() {\n console.log(\"agent-directory-list render() START\");\n\n if (!this._initialized) {\n return html`<span>Loading...</span>`;\n }\n\n /* Agents */\n const agentLi = Object.entries(this.perspective.agents).map(\n ([_index, agentIdB64]) => {\n //console.log(\"\" + index + \". \" + agentIdB64)\n return html `<li value=\"${agentIdB64}\">${agentIdB64}</li>`\n }\n )\n\n /** render all */\n return html` \n <ul>\n ${agentLi}\n </ul>\n `;\n }\n}\n"]}
|
package/dist/index.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from './agent_directory.zvm';
|
2
|
-
export * from './elements/agent-directory-list';
|
1
|
+
export * from './agent_directory.zvm';
|
2
|
+
export * from './elements/agent-directory-list';
|
package/dist/index.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
export * from './agent_directory.zvm';
|
2
|
-
export * from './elements/agent-directory-list';
|
1
|
+
export * from './agent_directory.zvm';
|
2
|
+
export * from './elements/agent-directory-list';
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ddd-qc/agent-directory",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.1.0",
|
4
4
|
"license" : "CAL-1.0",
|
5
5
|
"keywords": ["holochain", "zome"],
|
6
6
|
"main": "./dist/index.js",
|
@@ -20,6 +20,7 @@
|
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
22
|
"lit-analyzer": "^1.2.1",
|
23
|
+
"@types/libsodium-wrappers" : "~0.7.13",
|
23
24
|
"watch-cli": "^0.2.3"
|
24
25
|
},
|
25
26
|
"dependencies": {
|