Nesting server side functions in namespaces or any kind of block of code.
Is there any way to make nested server functions for example I would like to have an namespace called Users and then I could use
.all()
or .query()
server-side function. It would make my code much cleaner after all. I tried to implement the namespaces like so:
Library database code
src/lib/db.ts
Example usage
src/routes/index.tsx
, but I get an error: ^ Server Functions cannot be nested in other blocks or functions
. Is there aby other way to make it cleaner?7 Replies
Namespaces are simply named JavaScript objects in the global namespace.https://www.typescriptlang.org/docs/handbook/namespaces-and-modules.html#using-namespaces Perhaps use a namespace import instead: Perhaps this may work, I don't know:
MDN Web Docs
import - JavaScript | MDN
The static import declaration is used to import read-only live bindings which are exported by another module. The imported bindings are called live bindings because they are updated by the module that exported the binding, but cannot be re-assigned by the importing module.
Documentation - Namespaces and Modules
How to organize code in TypeScript via modules or namespaces
Thanks! I’m aware that namespaces in JS are objects, which can introduce some performance overhead. However, I wanted to keep everything in db.ts without creating additional files. Either way, I’ll give it a try I had forgotten about
import * as alias from 'somewhere';
. I’ll test it and let you know if it works. 👍I’m aware that namespaces in JS are objects,It's worse than that. This is what your code transpiles to: TS
namespace
has no equivalent in ECMAScript, so TS has to add it's own runtime constructs that create additional barriers for tooling.
My personal bias is to use TS namespace
only when it is absolutely necessary to explain design time properties of a run time ES value to TypeScript.
Given that TS is mostly about DX it makes more sense to treat it as a markup language for ES rather than a programming language.Sure! Thanks for that. Also the enums at runtime compiles to very strange object like thing if you do not use
const
modifier.
Or if you preserve
them.
I was just looking for a stucture like partern where I could write cleaner code.In modern TypeScript, you may not need anhttps://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enumsenum
when anobject
withas const
could suffice:
Handbook - Enums
How TypeScript enums work
Sure, and you may just get away with explicitly adding the functions to an object literal (rather than having TS doing the work for you).
Though that may have undesirable implications for tree-shaking. Typically ES modules with separate values is the way to go.
I was thinking about that, but maybe I will just leave it as it is. No need to use more performance overhead abstraction in my opinion. It would work better without it. 👍