Untlsn
Explore posts from serversAarktype
•Created by Untlsn on 3/19/2025 in #questions
Redundant match default
Match has a default case
But it is something completely different from .default, which makes sense
However, it can lead to writing the same code 2 times.
In particular, this can be seen in the Fluent API:
Is there a build-in way to do this? E.g.
Or is it best to just make a wrapper that adds these 2 versions like (untyped):
5 replies
Forced typesafe body
Has anyone tried to make inferable typesafe body using nuxt $fetch?
Most of the methods I tried did not work. The only one that seems promising is a wrapper around defineEventHandler that pollutes response
There is a simple prototype:
Usage:
Frontend access:
5 replies
Aarktype
•Created by Untlsn on 3/12/2025 in #questions
Match `.in` with loose type
In docs there is example
Its work good because match know how rest of the type will look like, so we have acess to oneValue or twoValue
But when i change it to:
Typescript say that only id exist
Is this an issue, or intentional?
Probably second one, because i need to make to get anything else then never from typescript
Then what should I use as alternative?
3 replies
[h3] [unhandled] TypeError [ERR_INVALID_CHAR]: Invalid character in header content ["X-Error"]
For some reason in dev mode i cannot throw errors in server functions. After build it work as expected. For some reason i get this error always, but i cannot find anyone with same problem
5 replies
Sugestion for Repeat component
On last stream Ryan show a Repeat components and I like it. Specially that I ofter need to just render something X times.
I've check solid-primitive@range, but it's Repeat not work like I expected
Can someone tell if this self made component will work good, have any major bugs or just strait up is worst then <For>
From my tests it's render properly, dispose only points that are pop'ed and I don't see any warns in console about missing root ect.
4 replies