feat: creating the rest of the sdk

This commit is contained in:
BluJ
2023-05-09 11:42:26 -06:00
parent 72df4cb502
commit 07493551b1
30 changed files with 568 additions and 504 deletions

View File

@@ -4,13 +4,7 @@ import { List } from "../config/builder/list"
import { Value } from "../config/builder/value"
import { Variants } from "../config/builder/variants"
import { ValueSpec } from "../config/configTypes"
import { Parser } from "ts-matches"
import {
createWrapperDataContract,
neverWrapperDataContract,
} from "../wrapperData/wrapperDataContract"
type test = unknown | { test: 5 }
describe("builder tests", () => {
test("text", async () => {
const bitcoinPropertiesBuilt: {
@@ -303,7 +297,7 @@ describe("values", () => {
utils: "utils",
} as any
test("toggle", async () => {
const value = Value.dynamicToggle(neverWrapperDataContract, async () => ({
const value = Value.dynamicToggle(async () => ({
name: "Testing",
description: null,
warning: null,
@@ -321,7 +315,7 @@ describe("values", () => {
})
})
test("text", async () => {
const value = Value.dynamicText(neverWrapperDataContract, async () => ({
const value = Value.dynamicText(async () => ({
name: "Testing",
required: { default: null },
}))
@@ -337,7 +331,7 @@ describe("values", () => {
})
})
test("text with default", async () => {
const value = Value.dynamicText(neverWrapperDataContract, async () => ({
const value = Value.dynamicText(async () => ({
name: "Testing",
required: { default: "this is a default value" },
}))
@@ -352,7 +346,7 @@ describe("values", () => {
})
})
test("optional text", async () => {
const value = Value.dynamicText(neverWrapperDataContract, async () => ({
const value = Value.dynamicText(async () => ({
name: "Testing",
required: false,
}))
@@ -368,7 +362,7 @@ describe("values", () => {
})
})
test("color", async () => {
const value = Value.dynamicColor(neverWrapperDataContract, async () => ({
const value = Value.dynamicColor(async () => ({
name: "Testing",
required: false,
description: null,
@@ -387,20 +381,17 @@ describe("values", () => {
})
})
test("datetime", async () => {
const value = Value.dynamicDatetime(
createWrapperDataContract<{ test: "a" }>(),
async ({ utils }) => {
;async () => {
;(await utils.getOwnWrapperData("/test").once()) satisfies "a"
}
const value = Value.dynamicDatetime<{ test: "a" }>(async ({ utils }) => {
;async () => {
;(await utils.store.getOwn("/test").once()) satisfies "a"
}
return {
name: "Testing",
required: { default: null },
inputmode: "date",
}
},
)
return {
name: "Testing",
required: { default: null },
inputmode: "date",
}
})
const validator = value.validator
validator.unsafeCast("2021-01-01")
validator.unsafeCast(null)
@@ -415,18 +406,15 @@ describe("values", () => {
})
})
test("textarea", async () => {
const value = Value.dynamicTextarea(
neverWrapperDataContract,
async () => ({
name: "Testing",
required: false,
description: null,
warning: null,
minLength: null,
maxLength: null,
placeholder: null,
}),
)
const value = Value.dynamicTextarea(async () => ({
name: "Testing",
required: false,
description: null,
warning: null,
minLength: null,
maxLength: null,
placeholder: null,
}))
const validator = value.validator
validator.unsafeCast("test text")
expect(() => validator.unsafeCast(null)).toThrowError()
@@ -437,7 +425,7 @@ describe("values", () => {
})
})
test("number", async () => {
const value = Value.dynamicNumber(neverWrapperDataContract, () => ({
const value = Value.dynamicNumber(() => ({
name: "Testing",
required: { default: null },
integer: false,
@@ -511,7 +499,6 @@ describe("values", () => {
describe("filtering", () => {
test("union", async () => {
const value = Value.filteredUnion(
neverWrapperDataContract,
() => ["a", "c"],
{
name: "Testing",
@@ -620,7 +607,7 @@ describe("Builder List", () => {
describe("dynamic", () => {
test("text", async () => {
const value = Value.list(
List.dynamicText(neverWrapperDataContract, () => ({
List.dynamicText(() => ({
name: "test",
spec: { patterns: [] },
})),
@@ -638,7 +625,7 @@ describe("Builder List", () => {
})
test("number", async () => {
const value = Value.list(
List.dynamicNumber(neverWrapperDataContract, () => ({
List.dynamicNumber(() => ({
name: "test",
spec: { integer: true },
})),