@effect-app/vue 2.17.4 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/index.d.ts +0 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -7
- package/dist/makeClient.d.ts +1 -1
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +26 -25
- package/dist/query.d.ts.map +1 -1
- package/dist/query.js +2 -2
- package/package.json +37 -99
- package/src/index.ts +0 -7
- package/src/makeClient.ts +26 -25
- package/src/query.ts +1 -1
- package/_cjs/errorReporter.cjs +0 -73
- package/_cjs/errorReporter.cjs.map +0 -1
- package/_cjs/form.cjs +0 -287
- package/_cjs/form.cjs.map +0 -1
- package/_cjs/index.cjs +0 -83
- package/_cjs/index.cjs.map +0 -1
- package/_cjs/lib.cjs +0 -50
- package/_cjs/lib.cjs.map +0 -1
- package/_cjs/makeClient.cjs +0 -293
- package/_cjs/makeClient.cjs.map +0 -1
- package/_cjs/makeContext.cjs +0 -16
- package/_cjs/makeContext.cjs.map +0 -1
- package/_cjs/makeIntl.cjs +0 -49
- package/_cjs/makeIntl.cjs.map +0 -1
- package/_cjs/mutate.cjs +0 -157
- package/_cjs/mutate.cjs.map +0 -1
- package/_cjs/query.cjs +0 -133
- package/_cjs/query.cjs.map +0 -1
- package/_cjs/routeParams.cjs +0 -47
- package/_cjs/routeParams.cjs.map +0 -1
- package/_cjs/runtime.cjs +0 -53
- package/_cjs/runtime.cjs.map +0 -1
package/src/makeClient.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
2
|
import * as Sentry from "@sentry/browser"
|
|
3
3
|
import { Cause, Effect, Exit, Match, Option, Runtime, S, Struct } from "effect-app"
|
|
4
|
-
import { CauseException, type SupportedErrors } from "effect-app/client"
|
|
5
4
|
import type { RequestHandler, RequestHandlerWithInput, TaggedRequestClassAny } from "effect-app/client/clientFor"
|
|
5
|
+
import { CauseException, type SupportedErrors } from "effect-app/client/errors"
|
|
6
6
|
import { constant, pipe, tuple } from "effect-app/Function"
|
|
7
7
|
import type { OperationFailure } from "effect-app/Operations"
|
|
8
8
|
import { OperationSuccess } from "effect-app/Operations"
|
|
@@ -196,9 +196,10 @@ export const makeClient = <Locale extends string, R>(
|
|
|
196
196
|
runtime: ShallowRef<Runtime.Runtime<R> | undefined>,
|
|
197
197
|
messages: Record<string, string | undefined> = {}
|
|
198
198
|
) => {
|
|
199
|
-
|
|
200
|
-
const
|
|
201
|
-
const
|
|
199
|
+
// making sure names do not collide with auto exports in nuxt apps, please do not rename..
|
|
200
|
+
const _useSafeMutation = makeMutation()
|
|
201
|
+
const _useSafeQuery = makeQuery(runtime)
|
|
202
|
+
const _useHandleRequestWithToast = () => {
|
|
202
203
|
const toast = useToast()
|
|
203
204
|
const { intl } = useIntl()
|
|
204
205
|
|
|
@@ -345,7 +346,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
345
346
|
* Pass a function that returns an Effect, e.g from a client action, give it a name.
|
|
346
347
|
* Returns a tuple with state ref and execution function which reports success and errors as Toast.
|
|
347
348
|
*/
|
|
348
|
-
const
|
|
349
|
+
const _useAndHandleMutation: {
|
|
349
350
|
<
|
|
350
351
|
I,
|
|
351
352
|
E extends ResponseErrors,
|
|
@@ -390,8 +391,8 @@ export const makeClient = <Locale extends string, R>(
|
|
|
390
391
|
action: any,
|
|
391
392
|
options?: Opts<any, any, any, any, any, any, any, any, any, any, any, any, any>
|
|
392
393
|
): any => {
|
|
393
|
-
const handleRequestWithToast =
|
|
394
|
-
const [a, b] =
|
|
394
|
+
const handleRequestWithToast = _useHandleRequestWithToast()
|
|
395
|
+
const [a, b] = _useSafeMutation({
|
|
395
396
|
...self,
|
|
396
397
|
handler: Effect.isEffect(self.handler)
|
|
397
398
|
? (pipe(
|
|
@@ -415,7 +416,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
415
416
|
* The same as @see useAndHandleMutation, but does not display any toasts by default.
|
|
416
417
|
* Messages for success, error and defect toasts can be provided in the Options.
|
|
417
418
|
*/
|
|
418
|
-
const
|
|
419
|
+
const _useAndHandleMutationSilently: {
|
|
419
420
|
<
|
|
420
421
|
I,
|
|
421
422
|
E extends ResponseErrors,
|
|
@@ -455,7 +456,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
455
456
|
action: string,
|
|
456
457
|
options?: Opts<A, E, R, void, A2, E2, R2, ESuccess, RSuccess, EError, RError, EDefect, RDefect>
|
|
457
458
|
): ActResp<void, never, R>
|
|
458
|
-
} =
|
|
459
|
+
} = _makeUseAndHandleMutation({
|
|
459
460
|
successMessage: suppressToast,
|
|
460
461
|
failMessage: suppressToast,
|
|
461
462
|
defectMessage: suppressToast
|
|
@@ -465,7 +466,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
465
466
|
* The same as @see useAndHandleMutation, but does not act on success, error or defect by default.
|
|
466
467
|
* Actions for success, error and defect can be provided in the Options.
|
|
467
468
|
*/
|
|
468
|
-
const
|
|
469
|
+
const _useAndHandleMutationCustom: {
|
|
469
470
|
<
|
|
470
471
|
I,
|
|
471
472
|
E extends ResponseErrors,
|
|
@@ -506,7 +507,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
506
507
|
options?: LowOptsOptional<A, E, R, void, A2, E2, R2, ESuccess, RSuccess, EError, RError, EDefect, RDefect>
|
|
507
508
|
): ActResp<A2, E2, R2>
|
|
508
509
|
} = (self: any, action: string, options: any) => {
|
|
509
|
-
const [a, b] =
|
|
510
|
+
const [a, b] = _useSafeMutation({
|
|
510
511
|
...self,
|
|
511
512
|
handler: Effect.isEffect(self.handler)
|
|
512
513
|
? (pipe(
|
|
@@ -531,11 +532,11 @@ export const makeClient = <Locale extends string, R>(
|
|
|
531
532
|
) as any
|
|
532
533
|
}
|
|
533
534
|
|
|
534
|
-
function
|
|
535
|
+
function _makeUseAndHandleMutation(
|
|
535
536
|
defaultOptions?: Opts<any, any, any, any, any, any, any, any, any>
|
|
536
537
|
) {
|
|
537
538
|
return ((self: any, action: any, options: any) => {
|
|
538
|
-
return
|
|
539
|
+
return _useAndHandleMutation(
|
|
539
540
|
self,
|
|
540
541
|
action,
|
|
541
542
|
{ ...defaultOptions, ...options }
|
|
@@ -582,10 +583,10 @@ export const makeClient = <Locale extends string, R>(
|
|
|
582
583
|
}
|
|
583
584
|
}
|
|
584
585
|
|
|
585
|
-
const
|
|
586
|
+
const _useSafeMutationWithState = <I, E, A, Request extends TaggedRequestClassAny>(
|
|
586
587
|
self: RequestHandlerWithInput<I, A, E, R, Request>
|
|
587
588
|
) => {
|
|
588
|
-
const [a, b] =
|
|
589
|
+
const [a, b] = _useSafeMutation(self)
|
|
589
590
|
|
|
590
591
|
return tuple(
|
|
591
592
|
computed(() => mutationResultToVue(a.value)),
|
|
@@ -593,7 +594,7 @@ export const makeClient = <Locale extends string, R>(
|
|
|
593
594
|
)
|
|
594
595
|
}
|
|
595
596
|
|
|
596
|
-
const
|
|
597
|
+
const _buildFormFromSchema = <
|
|
597
598
|
From extends Record<PropertyKey, any>,
|
|
598
599
|
To extends Record<PropertyKey, any>,
|
|
599
600
|
C extends Record<PropertyKey, any>,
|
|
@@ -650,14 +651,14 @@ export const makeClient = <Locale extends string, R>(
|
|
|
650
651
|
}
|
|
651
652
|
|
|
652
653
|
return {
|
|
653
|
-
useSafeMutationWithState,
|
|
654
|
-
useAndHandleMutation,
|
|
655
|
-
useAndHandleMutationSilently,
|
|
656
|
-
useAndHandleMutationCustom,
|
|
657
|
-
makeUseAndHandleMutation,
|
|
658
|
-
useHandleRequestWithToast,
|
|
659
|
-
buildFormFromSchema,
|
|
660
|
-
useSafeQuery,
|
|
661
|
-
useSafeMutation
|
|
654
|
+
useSafeMutationWithState: _useSafeMutationWithState,
|
|
655
|
+
useAndHandleMutation: _useAndHandleMutation,
|
|
656
|
+
useAndHandleMutationSilently: _useAndHandleMutationSilently,
|
|
657
|
+
useAndHandleMutationCustom: _useAndHandleMutationCustom,
|
|
658
|
+
makeUseAndHandleMutation: _makeUseAndHandleMutation,
|
|
659
|
+
useHandleRequestWithToast: _useHandleRequestWithToast,
|
|
660
|
+
buildFormFromSchema: _buildFormFromSchema,
|
|
661
|
+
useSafeQuery: _useSafeQuery,
|
|
662
|
+
useSafeMutation: _useSafeMutation
|
|
662
663
|
}
|
|
663
664
|
}
|
package/src/query.ts
CHANGED
|
@@ -13,8 +13,8 @@ import type {
|
|
|
13
13
|
} from "@tanstack/vue-query"
|
|
14
14
|
import { useQuery } from "@tanstack/vue-query"
|
|
15
15
|
import { Array, Cause, Effect, Option, Runtime, S } from "effect-app"
|
|
16
|
-
import { ServiceUnavailableError } from "effect-app/client"
|
|
17
16
|
import type { RequestHandler, RequestHandlerWithInput, TaggedRequestClassAny } from "effect-app/client/clientFor"
|
|
17
|
+
import { ServiceUnavailableError } from "effect-app/client/errors"
|
|
18
18
|
import { isHttpRequestError, isHttpResponseError } from "effect-app/http/http-client"
|
|
19
19
|
import { computed, ref, shallowRef, watch } from "vue"
|
|
20
20
|
import type { ComputedRef, ShallowRef, WatchSource } from "vue"
|
package/_cjs/errorReporter.cjs
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.captureException = captureException;
|
|
7
|
-
exports.logError = logError;
|
|
8
|
-
exports.reportError = reportError;
|
|
9
|
-
exports.reportMessage = reportMessage;
|
|
10
|
-
var Sentry = _interopRequireWildcard(require("@sentry/browser"));
|
|
11
|
-
var _effectApp = require("effect-app");
|
|
12
|
-
var _errors = require("effect-app/client/errors");
|
|
13
|
-
var _utils = require("effect-app/utils");
|
|
14
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
17
|
-
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
18
|
-
|
|
19
|
-
function reportError(name) {
|
|
20
|
-
return (cause, extras) => _effectApp.Effect.gen(function* () {
|
|
21
|
-
if (_effectApp.Cause.isInterruptedOnly(cause)) {
|
|
22
|
-
yield* _effectApp.Effect.logDebug("Interrupted").pipe(_effectApp.Effect.annotateLogs("extras", JSON.stringify(extras ?? {})));
|
|
23
|
-
return _effectApp.Cause.squash(cause);
|
|
24
|
-
}
|
|
25
|
-
const error = new _errors.CauseException(cause, name);
|
|
26
|
-
yield* reportSentry(error, extras);
|
|
27
|
-
yield* _effectApp.Effect.logError("Reporting error", cause).pipe(_effectApp.Effect.annotateLogs((0, _utils.dropUndefined)({
|
|
28
|
-
extras,
|
|
29
|
-
error: (0, _errors.tryToReport)(error),
|
|
30
|
-
cause: (0, _errors.tryToJson)(cause),
|
|
31
|
-
__error_name__: name
|
|
32
|
-
})));
|
|
33
|
-
error[_errors.ErrorReported] = true;
|
|
34
|
-
return error;
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
function reportSentry(error, extras) {
|
|
38
|
-
return _effectApp.Effect.sync(() => {
|
|
39
|
-
const scope = new Sentry.Scope();
|
|
40
|
-
if (extras) scope.setContext("extras", extras);
|
|
41
|
-
scope.setContext("error", (0, _errors.tryToReport)(error));
|
|
42
|
-
scope.setContext("cause", (0, _errors.tryToJson)(error.originalCause));
|
|
43
|
-
Sentry.captureException(error, scope);
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
function logError(name) {
|
|
47
|
-
return (cause, extras) => _effectApp.Effect.gen(function* () {
|
|
48
|
-
if (_effectApp.Cause.isInterruptedOnly(cause)) {
|
|
49
|
-
yield* _effectApp.Effect.logDebug("Interrupted").pipe(_effectApp.Effect.annotateLogs((0, _utils.dropUndefined)({
|
|
50
|
-
extras
|
|
51
|
-
})));
|
|
52
|
-
return;
|
|
53
|
-
}
|
|
54
|
-
yield* _effectApp.Effect.logWarning("Logging error", cause).pipe(_effectApp.Effect.annotateLogs((0, _utils.dropUndefined)({
|
|
55
|
-
extras,
|
|
56
|
-
cause: (0, _errors.tryToJson)(cause),
|
|
57
|
-
__error_name__: name
|
|
58
|
-
})));
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
function captureException(error) {
|
|
62
|
-
Sentry.captureException(error);
|
|
63
|
-
console.error(error);
|
|
64
|
-
}
|
|
65
|
-
function reportMessage(message, extras) {
|
|
66
|
-
return _effectApp.Effect.sync(() => {
|
|
67
|
-
const scope = new Sentry.Scope();
|
|
68
|
-
if (extras) scope.setContext("extras", extras);
|
|
69
|
-
Sentry.captureMessage(message, scope);
|
|
70
|
-
console.warn(message);
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
//# sourceMappingURL=errorReporter.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"errorReporter.cjs","names":["Sentry","_interopRequireWildcard","require","_effectApp","_errors","_utils","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","reportError","name","cause","extras","Effect","gen","Cause","isInterruptedOnly","logDebug","pipe","annotateLogs","JSON","stringify","squash","error","CauseException","reportSentry","logError","dropUndefined","tryToReport","tryToJson","__error_name__","ErrorReported","sync","scope","Scope","setContext","originalCause","captureException","logWarning","console","reportMessage","message","captureMessage","warn"],"sources":["../src/errorReporter.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
package/_cjs/form.cjs
DELETED
|
@@ -1,287 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.buildFieldInfoFromFields = buildFieldInfoFromFields;
|
|
7
|
-
exports.buildFieldInfoFromFieldsRoot = buildFieldInfoFromFieldsRoot;
|
|
8
|
-
exports.buildFormFromSchema = void 0;
|
|
9
|
-
exports.convertIn = convertIn;
|
|
10
|
-
exports.convertOut = convertOut;
|
|
11
|
-
exports.convertOutInt = convertOutInt;
|
|
12
|
-
exports.customSchemaErrors = void 0;
|
|
13
|
-
exports.getMetadataFromSchema = getMetadataFromSchema;
|
|
14
|
-
exports.translate = void 0;
|
|
15
|
-
var _intl = require("@formatjs/intl");
|
|
16
|
-
var JSONSchema = _interopRequireWildcard(require("effect/JSONSchema"));
|
|
17
|
-
var _effectApp = require("effect-app");
|
|
18
|
-
var _vue = require("vue");
|
|
19
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
20
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
21
|
-
// type GetSchemaFromProp<T> = T extends Field<infer S, any, any, any> ? S
|
|
22
|
-
// : never
|
|
23
|
-
function getTypeLiteralAST(ast) {
|
|
24
|
-
switch (ast._tag) {
|
|
25
|
-
case "TypeLiteral":
|
|
26
|
-
{
|
|
27
|
-
return ast;
|
|
28
|
-
}
|
|
29
|
-
case "Transformation":
|
|
30
|
-
{
|
|
31
|
-
// this may be not correct for transformations from a type literal to something
|
|
32
|
-
// that is not a type literal nor a class because we would prefer the from AST
|
|
33
|
-
return getTypeLiteralAST(ast.to) ?? getTypeLiteralAST(ast.from);
|
|
34
|
-
}
|
|
35
|
-
default:
|
|
36
|
-
{
|
|
37
|
-
return null;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
function convertIn(v, type) {
|
|
42
|
-
return v === null ? "" : type === "text" ? v : `${v}`;
|
|
43
|
-
}
|
|
44
|
-
function convertOutInt(v, type) {
|
|
45
|
-
v = v == null ? v : v.trim();
|
|
46
|
-
const c = v === "" ? null : type === "float" ? parseFloat(v) : type === "int" ? parseInt(v) : v;
|
|
47
|
-
return c;
|
|
48
|
-
}
|
|
49
|
-
function convertOut(v, set, type) {
|
|
50
|
-
return set(convertOutInt(v, type));
|
|
51
|
-
}
|
|
52
|
-
const f = Symbol();
|
|
53
|
-
function handlePropertySignature(propertySignature) {
|
|
54
|
-
const schema = _effectApp.S.make(propertySignature.type);
|
|
55
|
-
switch (schema.ast._tag) {
|
|
56
|
-
case "Transformation":
|
|
57
|
-
{
|
|
58
|
-
const tl = getTypeLiteralAST(schema.ast);
|
|
59
|
-
return tl ? handlePropertySignature(new _effectApp.S.AST.PropertySignature(propertySignature.name, tl, propertySignature.isOptional, propertySignature.isReadonly, propertySignature.annotations)) : buildFieldInfo(propertySignature);
|
|
60
|
-
}
|
|
61
|
-
case "TypeLiteral":
|
|
62
|
-
{
|
|
63
|
-
return buildFieldInfoFromFieldsRoot(schema);
|
|
64
|
-
}
|
|
65
|
-
case "Union":
|
|
66
|
-
{
|
|
67
|
-
const allTypeLiterals = schema.ast.types.every(getTypeLiteralAST);
|
|
68
|
-
if (allTypeLiterals) {
|
|
69
|
-
const members = schema.ast.types.map(elAst =>
|
|
70
|
-
// syntehtic property signature as if each union member were the only member
|
|
71
|
-
new _effectApp.S.AST.PropertySignature(propertySignature.name, elAst, propertySignature.isOptional, propertySignature.isReadonly, propertySignature.annotations)).flatMap(ps => {
|
|
72
|
-
// try to retrieve the _tag literal to set _infoTag later
|
|
73
|
-
const typeLiteral = getTypeLiteralAST(ps.type);
|
|
74
|
-
const tagPropertySignature = typeLiteral?.propertySignatures.find(_ => _.name === "_tag");
|
|
75
|
-
const tagLiteral = tagPropertySignature && _effectApp.S.AST.isLiteral(tagPropertySignature.type) && typeof tagPropertySignature.type.literal === "string" ? tagPropertySignature.type.literal : void 0;
|
|
76
|
-
const toRet = handlePropertySignature(ps);
|
|
77
|
-
if (toRet._tag === "UnionFieldInfo") {
|
|
78
|
-
return toRet.members;
|
|
79
|
-
} else if (toRet._tag === "NestedFieldInfo") {
|
|
80
|
-
return [{
|
|
81
|
-
...toRet,
|
|
82
|
-
_infoTag: tagLiteral
|
|
83
|
-
}];
|
|
84
|
-
} else if (toRet._tag === "DiscriminatedUnionFieldInfo") {
|
|
85
|
-
return Object.values(toRet.members);
|
|
86
|
-
} else {
|
|
87
|
-
return [toRet];
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
// support only _tag as discriminating key and it has to be a string
|
|
91
|
-
const isDiscriminatedUnion = members.every(_ => _._tag === "NestedFieldInfo" && _._infoTag !== undefined);
|
|
92
|
-
if (isDiscriminatedUnion) {
|
|
93
|
-
return {
|
|
94
|
-
members: members.reduce((acc, cur) => {
|
|
95
|
-
// see the definiton of isDiscriminatedUnion
|
|
96
|
-
const tag = cur._infoTag;
|
|
97
|
-
acc[tag] = cur;
|
|
98
|
-
return acc;
|
|
99
|
-
}, {}),
|
|
100
|
-
_tag: "DiscriminatedUnionFieldInfo"
|
|
101
|
-
};
|
|
102
|
-
} else {
|
|
103
|
-
return {
|
|
104
|
-
members,
|
|
105
|
-
_tag: "UnionFieldInfo"
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
} else {
|
|
109
|
-
return buildFieldInfo(propertySignature);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
default:
|
|
113
|
-
{
|
|
114
|
-
return buildFieldInfo(propertySignature);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
function buildFieldInfoFromFields(schema) {
|
|
119
|
-
return buildFieldInfoFromFieldsRoot(schema).fields;
|
|
120
|
-
}
|
|
121
|
-
function buildFieldInfoFromFieldsRoot(schema) {
|
|
122
|
-
const ast = getTypeLiteralAST(schema.ast);
|
|
123
|
-
if (!ast) throw new Error("not a struct type");
|
|
124
|
-
return ast.propertySignatures.reduce((acc, cur) => {
|
|
125
|
-
;
|
|
126
|
-
acc.fields[cur.name] = handlePropertySignature(cur);
|
|
127
|
-
return acc;
|
|
128
|
-
}, {
|
|
129
|
-
_tag: "NestedFieldInfo",
|
|
130
|
-
fields: {}
|
|
131
|
-
});
|
|
132
|
-
}
|
|
133
|
-
class PhantomTypeParameter {}
|
|
134
|
-
const defaultIntl = (0, _intl.createIntl)({
|
|
135
|
-
locale: "en"
|
|
136
|
-
});
|
|
137
|
-
const translate = exports.translate = (0, _vue.ref)(defaultIntl.formatMessage);
|
|
138
|
-
const customSchemaErrors = exports.customSchemaErrors = (0, _vue.ref)(new Map());
|
|
139
|
-
function buildFieldInfo(property) {
|
|
140
|
-
const propertyKey = property.name;
|
|
141
|
-
const schema = _effectApp.S.make(property.type);
|
|
142
|
-
const metadata = getMetadataFromSchema(property.type); // TODO
|
|
143
|
-
const parse = _effectApp.S.decodeUnknownEither(schema);
|
|
144
|
-
const nullableOrUndefined = _effectApp.S.AST.isUnion(property.type) && (property.type.types.includes(_effectApp.S.Null.ast) || property.type.types.some(_ => _._tag === "UndefinedKeyword"));
|
|
145
|
-
const realSelf = nullableOrUndefined && _effectApp.S.AST.isUnion(property.type) ? property.type.types.filter(_ => _ !== _effectApp.S.Null.ast && _._tag !== "UndefinedKeyword")[0] : property.type;
|
|
146
|
-
const id = _effectApp.S.AST.getIdentifierAnnotation(property.type);
|
|
147
|
-
const id2 = _effectApp.S.AST.getIdentifierAnnotation(realSelf);
|
|
148
|
-
function renderError(e, v) {
|
|
149
|
-
const err = e.toString();
|
|
150
|
-
const custom = customSchemaErrors.value.get(property.type) ?? customSchemaErrors.value.get(realSelf) ?? (_effectApp.Option.isSome(id) ? customSchemaErrors.value.get(id.value) : undefined) ?? (_effectApp.Option.isSome(id2) ? customSchemaErrors.value.get(id2.value) : undefined);
|
|
151
|
-
return custom ? custom(err, e, v) : translate.value({
|
|
152
|
-
defaultMessage: "The entered value is not a valid {type}: {message}",
|
|
153
|
-
id: "validation.not_a_valid"
|
|
154
|
-
}, {
|
|
155
|
-
type: translate.value({
|
|
156
|
-
defaultMessage: (0, _vue.capitalize)(propertyKey.toString()),
|
|
157
|
-
id: `fieldNames.${String(propertyKey)}`
|
|
158
|
-
}),
|
|
159
|
-
message: metadata.description ? "expected " + metadata.description : err.slice(err.indexOf("Expected")) // TODO: this is not translated.
|
|
160
|
-
});
|
|
161
|
-
}
|
|
162
|
-
const stringRules = [v => v === null || metadata.minLength === undefined || v.length >= metadata.minLength || translate.value({
|
|
163
|
-
defaultMessage: "The field requires at least {minLength} characters",
|
|
164
|
-
id: "validation.string.minLength"
|
|
165
|
-
}, {
|
|
166
|
-
minLength: metadata.minLength
|
|
167
|
-
}), v => v === null || metadata.maxLength === undefined || v.length <= metadata.maxLength || translate.value({
|
|
168
|
-
defaultMessage: "The field cannot have more than {maxLength} characters",
|
|
169
|
-
id: "validation.string.maxLength"
|
|
170
|
-
}, {
|
|
171
|
-
maxLength: metadata.maxLength
|
|
172
|
-
})];
|
|
173
|
-
const numberRules = [v => v === null || metadata.minimum === undefined && metadata.exclusiveMinimum === undefined || metadata.exclusiveMinimum !== undefined && v > metadata.exclusiveMinimum || metadata.minimum !== undefined && v >= metadata.minimum || translate.value({
|
|
174
|
-
defaultMessage: "The value should be {isExclusive, select, true {larger than} other {at least}} {minimum}",
|
|
175
|
-
id: "validation.number.min"
|
|
176
|
-
}, {
|
|
177
|
-
isExclusive: metadata.exclusiveMinimum !== undefined,
|
|
178
|
-
minimum: metadata.exclusiveMinimum ?? metadata.minimum
|
|
179
|
-
}), v => v === null || metadata.maximum === undefined && metadata.exclusiveMaximum === undefined || metadata.exclusiveMaximum !== undefined && v < metadata.exclusiveMaximum || metadata.maximum !== undefined && v <= metadata.maximum || translate.value({
|
|
180
|
-
defaultMessage: "The value should be {isExclusive, select, true {smaller than} other {at most}} {maximum}",
|
|
181
|
-
id: "validation.number.max"
|
|
182
|
-
}, {
|
|
183
|
-
isExclusive: metadata.exclusiveMaximum !== undefined,
|
|
184
|
-
maximum: metadata.exclusiveMaximum ?? metadata.maximum
|
|
185
|
-
})];
|
|
186
|
-
const parseRule = v => (0, _effectApp.pipe)(parse(v), _effectApp.Either.match({
|
|
187
|
-
onLeft: _ => renderError(_, v),
|
|
188
|
-
onRight: () => true
|
|
189
|
-
}));
|
|
190
|
-
const rules = [...(metadata.type === "text" ? stringRules : metadata.type === "float" || metadata.type === "int" ? numberRules : []), parseRule];
|
|
191
|
-
const info = {
|
|
192
|
-
type: metadata.type,
|
|
193
|
-
rules: [v => !metadata.required || v !== "" || translate.value({
|
|
194
|
-
defaultMessage: "The field cannot be empty",
|
|
195
|
-
id: "validation.empty"
|
|
196
|
-
}), v => {
|
|
197
|
-
const converted = convertOutInt(v, metadata.type);
|
|
198
|
-
for (const r of rules) {
|
|
199
|
-
const res = r(converted);
|
|
200
|
-
if (res !== true) {
|
|
201
|
-
return res;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
return true;
|
|
205
|
-
}],
|
|
206
|
-
metadata,
|
|
207
|
-
_tag: "FieldInfo"
|
|
208
|
-
};
|
|
209
|
-
return info;
|
|
210
|
-
}
|
|
211
|
-
const buildFormFromSchema = (s, state, onSubmit) => {
|
|
212
|
-
const fields = buildFieldInfoFromFieldsRoot(s).fields;
|
|
213
|
-
const parse = _effectApp.S.decodeUnknownSync(_effectApp.S.Struct(_effectApp.Struct.omit(s.fields, "_tag")));
|
|
214
|
-
const isDirty = (0, _vue.ref)(false);
|
|
215
|
-
const isValid = (0, _vue.ref)(true);
|
|
216
|
-
const submit1 = onSubmit => async e => {
|
|
217
|
-
const r = await e;
|
|
218
|
-
if (!r.valid) return;
|
|
219
|
-
return onSubmit(new s(parse(state.value)));
|
|
220
|
-
};
|
|
221
|
-
const submit = submit1(onSubmit);
|
|
222
|
-
(0, _vue.watch)(state, v => {
|
|
223
|
-
// TODO: do better
|
|
224
|
-
isDirty.value = JSON.stringify(v) !== JSON.stringify(state.value);
|
|
225
|
-
}, {
|
|
226
|
-
deep: true
|
|
227
|
-
});
|
|
228
|
-
const submitFromState = () => submit(Promise.resolve({
|
|
229
|
-
valid: isValid.value
|
|
230
|
-
}));
|
|
231
|
-
return {
|
|
232
|
-
fields,
|
|
233
|
-
/** optimized for Vuetify v-form submit callback */
|
|
234
|
-
submit,
|
|
235
|
-
/** optimized for Native form submit callback or general use */
|
|
236
|
-
submitFromState,
|
|
237
|
-
isDirty,
|
|
238
|
-
isValid
|
|
239
|
-
};
|
|
240
|
-
};
|
|
241
|
-
exports.buildFormFromSchema = buildFormFromSchema;
|
|
242
|
-
function getMetadataFromSchema(ast) {
|
|
243
|
-
const nullable = _effectApp.S.AST.isUnion(ast) && ast.types.includes(_effectApp.S.Null.ast);
|
|
244
|
-
const realSelf = nullable && _effectApp.S.AST.isUnion(ast) ? ast.types.filter(_ => _ !== _effectApp.S.Null.ast)[0] : ast;
|
|
245
|
-
let jschema;
|
|
246
|
-
try {
|
|
247
|
-
jschema = JSONSchema.make(_effectApp.S.make(realSelf));
|
|
248
|
-
} catch (err) {
|
|
249
|
-
jschema = {};
|
|
250
|
-
// console.warn("error getting jsonschema from ", err, ast)
|
|
251
|
-
}
|
|
252
|
-
while (jschema["$ref"] && jschema["$ref"].startsWith("#/$defs/")) {
|
|
253
|
-
const {
|
|
254
|
-
$ref: _,
|
|
255
|
-
...rest
|
|
256
|
-
} = jschema;
|
|
257
|
-
jschema = {
|
|
258
|
-
...jschema["$defs"][jschema["$ref"].replace("#/$defs/", "")],
|
|
259
|
-
...rest
|
|
260
|
-
};
|
|
261
|
-
}
|
|
262
|
-
// or we need to add these info directly in the refinement like the minimum
|
|
263
|
-
// or find a jsonschema parser whojoins all of them
|
|
264
|
-
// todo, we have to use $ref: "#/$defs/Int"
|
|
265
|
-
// and look up
|
|
266
|
-
// $defs: {
|
|
267
|
-
// "Int": {
|
|
268
|
-
// "type": "integer", <--- integer!!
|
|
269
|
-
// "description": "an integer",
|
|
270
|
-
// "title": "Int"
|
|
271
|
-
// }
|
|
272
|
-
// }
|
|
273
|
-
const isNumber = jschema.type === "number" || jschema.type === "integer";
|
|
274
|
-
const isInt = jschema.type === "integer";
|
|
275
|
-
return {
|
|
276
|
-
type: isInt ? "int" : isNumber ? "float" : "text",
|
|
277
|
-
minimum: jschema.minimum,
|
|
278
|
-
exclusiveMinimum: jschema.exclusiveMinimum,
|
|
279
|
-
maximum: jschema.maximum,
|
|
280
|
-
exclusiveMaximum: jschema.exclusiveMaximum,
|
|
281
|
-
minLength: jschema.minLength,
|
|
282
|
-
maxLength: jschema.maxLength,
|
|
283
|
-
description: jschema.description,
|
|
284
|
-
required: !nullable
|
|
285
|
-
};
|
|
286
|
-
}
|
|
287
|
-
//# sourceMappingURL=form.cjs.map
|
package/_cjs/form.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form.cjs","names":["_intl","require","JSONSchema","_interopRequireWildcard","_effectApp","_vue","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","getTypeLiteralAST","ast","_tag","to","from","convertIn","v","type","convertOutInt","trim","c","parseFloat","parseInt","convertOut","f","Symbol","handlePropertySignature","propertySignature","schema","S","make","tl","AST","PropertySignature","name","isOptional","isReadonly","annotations","buildFieldInfo","buildFieldInfoFromFieldsRoot","allTypeLiterals","types","every","members","map","elAst","flatMap","ps","typeLiteral","tagPropertySignature","propertySignatures","find","_","tagLiteral","isLiteral","literal","toRet","_infoTag","values","isDiscriminatedUnion","undefined","reduce","acc","cur","tag","buildFieldInfoFromFields","fields","Error","PhantomTypeParameter","defaultIntl","createIntl","locale","translate","exports","ref","formatMessage","customSchemaErrors","Map","property","propertyKey","metadata","getMetadataFromSchema","parse","decodeUnknownEither","nullableOrUndefined","isUnion","includes","Null","some","realSelf","filter","id","getIdentifierAnnotation","id2","renderError","err","toString","custom","value","Option","isSome","defaultMessage","capitalize","String","message","description","slice","indexOf","stringRules","minLength","length","maxLength","numberRules","minimum","exclusiveMinimum","isExclusive","maximum","exclusiveMaximum","parseRule","pipe","Either","match","onLeft","onRight","rules","info","required","converted","res","buildFormFromSchema","s","state","onSubmit","decodeUnknownSync","Struct","omit","isDirty","isValid","submit1","valid","submit","watch","JSON","stringify","deep","submitFromState","Promise","resolve","nullable","jschema","startsWith","$ref","rest","replace","isNumber","isInt"],"sources":["../src/form.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
package/_cjs/index.cjs
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _lib = require("./lib.cjs");
|
|
7
|
-
Object.keys(_lib).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _lib[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function () {
|
|
13
|
-
return _lib[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
var _makeClient = require("./makeClient.cjs");
|
|
18
|
-
Object.keys(_makeClient).forEach(function (key) {
|
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
|
20
|
-
if (key in exports && exports[key] === _makeClient[key]) return;
|
|
21
|
-
Object.defineProperty(exports, key, {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function () {
|
|
24
|
-
return _makeClient[key];
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
|
-
var _makeContext = require("./makeContext.cjs");
|
|
29
|
-
Object.keys(_makeContext).forEach(function (key) {
|
|
30
|
-
if (key === "default" || key === "__esModule") return;
|
|
31
|
-
if (key in exports && exports[key] === _makeContext[key]) return;
|
|
32
|
-
Object.defineProperty(exports, key, {
|
|
33
|
-
enumerable: true,
|
|
34
|
-
get: function () {
|
|
35
|
-
return _makeContext[key];
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
});
|
|
39
|
-
var _makeIntl = require("./makeIntl.cjs");
|
|
40
|
-
Object.keys(_makeIntl).forEach(function (key) {
|
|
41
|
-
if (key === "default" || key === "__esModule") return;
|
|
42
|
-
if (key in exports && exports[key] === _makeIntl[key]) return;
|
|
43
|
-
Object.defineProperty(exports, key, {
|
|
44
|
-
enumerable: true,
|
|
45
|
-
get: function () {
|
|
46
|
-
return _makeIntl[key];
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
});
|
|
50
|
-
var _mutate = require("./mutate.cjs");
|
|
51
|
-
Object.keys(_mutate).forEach(function (key) {
|
|
52
|
-
if (key === "default" || key === "__esModule") return;
|
|
53
|
-
if (key in exports && exports[key] === _mutate[key]) return;
|
|
54
|
-
Object.defineProperty(exports, key, {
|
|
55
|
-
enumerable: true,
|
|
56
|
-
get: function () {
|
|
57
|
-
return _mutate[key];
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
});
|
|
61
|
-
var _query = require("./query.cjs");
|
|
62
|
-
Object.keys(_query).forEach(function (key) {
|
|
63
|
-
if (key === "default" || key === "__esModule") return;
|
|
64
|
-
if (key in exports && exports[key] === _query[key]) return;
|
|
65
|
-
Object.defineProperty(exports, key, {
|
|
66
|
-
enumerable: true,
|
|
67
|
-
get: function () {
|
|
68
|
-
return _query[key];
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
var _runtime = require("./runtime.cjs");
|
|
73
|
-
Object.keys(_runtime).forEach(function (key) {
|
|
74
|
-
if (key === "default" || key === "__esModule") return;
|
|
75
|
-
if (key in exports && exports[key] === _runtime[key]) return;
|
|
76
|
-
Object.defineProperty(exports, key, {
|
|
77
|
-
enumerable: true,
|
|
78
|
-
get: function () {
|
|
79
|
-
return _runtime[key];
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
//# sourceMappingURL=index.cjs.map
|
package/_cjs/index.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","names":["_lib","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_makeClient","_makeContext","_makeIntl","_mutate","_query","_runtime"],"sources":["../src/index.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|