(value: unknown)
| 59 | * on the artifact is the honest outcome. |
| 60 | */ |
| 61 | const bindingsFromColumn = (value: unknown): ArtifactBindings | null => { |
| 62 | if (value === null || value === undefined) return null; |
| 63 | const json = typeof value === "string" ? decodeJsonString(value) : Option.some(value); |
| 64 | return Option.flatMap(json, decodeBindings).pipe(Option.getOrElse(() => ({}))); |
| 65 | }; |
| 66 | |
| 67 | /** |
| 68 | * What the gallery draws for an artifact, when it has anything to draw. |