forked from codedot/xmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
what.js
69 lines (58 loc) · 1.11 KB
/
what.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"use strict";
exports.command = "what <string>";
exports.desc = "Tell what a string means";
exports.aliases = [
"parse"
];
exports.builder = yargs => yargs;
exports.handler = connect((config, xmm) => {
const arg = xmm.parse(config.string);
const human = arg.human;
const msg = [];
let type, asset, issuer, key, tag;
if (human) {
msg.push(human);
msg.push("is");
}
type = arg.type;
msg.push(type);
switch (type) {
case "offer":
msg.push(arg.seq);
msg.push("of");
msg.push(arg.cost);
asset = arg.base;
msg.push(asset.code);
issuer = asset.issuer;
if (issuer) {
msg.push("issued by");
msg.push(issuer);
}
msg.push("for");
case "value":
msg.push(arg.value);
case "asset":
asset = arg.asset;
msg.push(asset.code);
issuer = asset.issuer;
if (issuer) {
msg.push("issued by");
msg.push(issuer);
}
msg.push("in wallet");
case "wallet":
msg.push(arg.wallet);
tag = arg.tag;
if (tag) {
msg.push("tagged as");
msg.push(tag);
}
key = arg.key;
if (key) {
msg.push("with key");
msg.push(key);
}
}
console.info(msg.join(" "));
process.exit();
});