Raqueebuddin Aziz
Explore posts from serversAarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
makes sense
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
will try later to document ctx.reject but don't understand it myself enough XD, I think it's a discriminated union but the autocomplete doesn't help at all lol
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
created a PR, can also create accompanying issue if would help https://github.com/arktypeio/arktype/pull/1302
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
got it
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
is there an issue where doc stuff is assigned or tracked? so multiple people don't try to write docs for the same thing
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
thanks
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
is there a getting started for how to contribute? maybe even doc specific
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
and maybe an FAQ for the async morph stuff
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
yes, I think a lof these questions could be handled better in docs, for example ctx.reject isn't documented at all afaik
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
thanks, appreciate the quick reply
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
or afterwards myself ig
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a way to have an async morph?
got it, makes sense, any recommendations you would have for my usecase, would you recommend to just encrypt it before passing to the validator?
22 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a mustNotBe
Yeah I think interpolating actual isnt that bad, just kinda annoying
13 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a mustNotBe
Got it, thanks for the insights
13 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a mustNotBe
And error summaries in ark already so good that they can be show verbatim on a form so I'd rather not implement custom formatters just for this case
13 replies
Aarktype
•Created by Raqueebuddin Aziz on 2/9/2025 in #questions
is there a mustNotBe
Thats what I thought as well but "a string" isnt a nice message for like showing form errors for example sicne most people wouldn't know what a string is
13 replies
disable untrack when param changes
I think what you need is ephemeral state, check this out: https://primitives.solidjs.community/package/memo/#createwritablememo
Basically in your editor create a writabl memo like
createWritableMemo(() => props.data)
and remove the untrack from
5 replies