-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
147 lines (141 loc) · 4.19 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
const { input, text_attr } = require("@saltcorn/markup/tags");
const { features, getState } = require("@saltcorn/data/db/state");
//const db = require("@saltcorn/data/db");
const { sqlBinOp } = require("@saltcorn/data/plugin-helper");
const sql_name_function_allowed = !!sqlBinOp;
const locale = (req) => {
//console.log(req && req.getLocale ? req.getLocale() : undefined);
return req && req.getLocale ? req.getLocale() : undefined;
};
const money = {
name: "Money",
sql_name: sql_name_function_allowed
? ({ decimal_points }) =>
`decimal(${16 + (decimal_points || 2)}, ${+(decimal_points || 2)})`
: "decimal(18,2))", //legacy
fieldviews: {
show: {
configFields: (field) => {
return [
...(!field?.attributes?.currency
? [
{
type: "String",
name: "currency",
label: "Currency",
sublabel: "Optional. ISO 4217. Example: USD or EUR",
},
]
: []),
...(!field?.attributes?.decimal_points
? [
{
label: "Decimal points",
name: "decimal_points",
type: "Integer",
default: 2,
required: true,
sublabel:
"Once set this cannot be changed. Number of fractional decimal points",
},
]
: []),
{
type: "String",
name: "currencyDisplay",
label: "Currency display",
required: true,
attributes: {
options: ["symbol", "code", "narrrowSymbol", "name"],
},
},
];
},
isEdit: false,
run: (v, req, attrs = {}) => {
const v1 = typeof v === "string" ? +v : v;
if (typeof v1 === "number") {
const locale_ = attrs.locale || locale(req) || "en";
return v1.toLocaleString(locale_, {
style: attrs.currency ? "currency" : "decimal",
currency: attrs.currency || undefined,
currencyDisplay: attrs.currencyDisplay || "symbol",
maximumFractionDigits: attrs.decimal_points,
});
} else return "";
},
},
edit: {
isEdit: true,
run: (nm, v, attrs, cls, required, field) => {
const id = `input${text_attr(nm)}`;
const name = text_attr(nm);
return input({
type: attrs?.type || "number",
inputmode: attrs?.inputmode,
pattern: attrs?.pattern,
autocomplete: attrs?.autocomplete,
class: ["form-control", cls],
disabled: attrs.disabled,
readonly: attrs.readonly,
autofocus: attrs.autofocus,
"data-fieldname": text_attr(field.name),
name,
onChange: attrs.onChange,
id,
step: "any",
required: !!required,
value: text_attr(v),
});
},
},
},
attributes: [
{
label: "Decimal points",
name: "decimal_points",
type: "Integer",
default: 2,
required: true,
sublabel:
"Once set this cannot be changed. Number of fractional decimal points",
},
{
type: "String",
name: "currency",
label: "Currency",
sublabel: "Optional. ISO 4217. Example: USD or EUR",
},
],
read: (v, attrs) => {
switch (typeof v) {
case "string":
if (v === "") return null;
return +v;
default:
return v;
}
},
};
module.exports = {
sc_plugin_api_version: 1,
types: [money],
plugin_name: "pgvector",
/*onLoad() {
console.log("load");
db.pool.on("connect", async function (client) {
// https://github.com/pgvector/pgvector-node/blob/master/src/pg/index.js
const result = await client.query(
"SELECT typname, oid, typarray FROM pg_type WHERE typname = $1",
["vector"]
);
if (result.rowCount < 1) {
throw new Error("vector type not found in the database");
}
const oid = result.rows[0].oid;
client.setTypeParser(oid, "text", function (value) {
return JSON.stringify(value);
});
});
},*/
};