-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
82 lines (72 loc) · 1.82 KB
/
index.ts
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
import * as t from "io-ts"
import { Schema, signalInvalidType } from "@underlay/apg"
import { ul } from "@underlay/namespaces"
import table, { OptionalProperty } from "@underlay/apg-codec-table"
import { Block } from "../../types.js"
type Table = typeof table["_A"]
export type State = t.TypeOf<typeof state>
export type Inputs = {}
export type Outputs = { output: Table }
const state = t.type({
uri: t.union([t.null, t.string]),
key: t.string,
header: t.boolean,
columns: t.array(
t.union([
t.null,
t.type({
key: t.string,
nullValue: t.union([t.null, t.string]),
type: t.union([
t.type({ kind: t.literal("uri") }),
t.type({ kind: t.literal("literal"), datatype: t.string }),
]),
}),
])
),
})
const block: Block<State, Inputs, Outputs> = {
name: "CSV Import",
backgroundColor: "lavender",
state: state,
inputs: {},
outputs: { output: table },
initialValue: {
uri: null,
key: "",
header: true,
columns: [],
},
async validate({ uri, key, columns }, {}) {
if (uri === null) {
throw new Error("Missing file from CSV import block")
}
try {
new URL(key)
} catch (err) {
throw new Error("The row class key must be a valid URI")
}
const components: Record<string, OptionalProperty> = {}
for (const column of columns) {
if (column !== null) {
const property =
column.type.kind === "uri"
? Schema.uri()
: column.type.kind === "literal"
? Schema.literal(column.type.datatype)
: signalInvalidType(column.type)
if (column.nullValue === null) {
components[column.key] = property
} else {
components[column.key] = Schema.coproduct({
[ul.none]: Schema.product({}),
[ul.some]: property,
})
}
}
}
const schema = { [key]: Schema.product(components) }
return { output: { schema } }
},
}
export default block