Open rjamesnw opened 5 years ago
@rbuckton thoughts?
Wouldn't this possibly involve needing to parse and rebind during check if the imported file wasn't previously part of the compilation? I could only see this work for files already included in the program.
@RyanCavanaugh: Should we consider this for files included in the program? Would we need a distinct error message for files not included in the program (possibly only related to an implicit any
)?
Usually the way I'd work around this today would be something like:
const id = 'foo';
const foo = (await import(id)) as typeof import('foo');
The only other approach I could see would be an extra step in processImportedModules
in program to scan the SourceFile for import(x)
and then scan for an x
constant in scope before we even get to the binder.
scan for an x constant in scope before we even get to the binder.
You'd need to duplicate the whole logic for scopes, shadowing and symbol lookup. That becomes even more difficult if the import in within a namespace because that changes the lookup completely.
Precisely, it wouldn't be 100% reliable.
@rbuckton I tried that also, but imagine having to do that 20 times in many files. It would be best to have a shared module, or global file, with constants to module paths. Using your example you would still have "../../../../very/long/paths" in 2 places (and scattered around code everywhere) - all of which must be updated when files move around, which is bad.
A better work-around might be:
const id = 'foo';
type TFoo = typeof import('foo');
const foo = (await import(id)) as TFoo;
Unfortunate extra work, but at least the path is only ever in 2 places in the whole app.
I might add, I'm trying to create an API for people to use, and I will be auto generating modules dynamically. So far, my best option is this:
abstract class Modules {
static get CUSTOMMODULE() { return import("../../2677A76EE8A34818873FB0587B8C3108/shared/CUSTOMMODULE"); };
}
Then the end user in their code only has to do this:
var module = await Modules.CUSTOMMODULE;
Except I hit another wall where "module" is "not a valid namespace" for types:
var foo: module.foo; // ERROR :(
(which I admit is another issue) Yes, there are workarounds (using InstanceType<typeof module.foo>
), but it's a lot of unnecessary extra coding that should not have to be. This would be better:
import module = await Modules.CUSTOMMODULE;
var foo: module.foo; // YAY :)
That is actually my biggest issue right now.
Just to throw my use case in as well as i'd actually really like generics in import types.
I.E type importOf<T extends string> = typeof import(T);
This will allow incredible new possibilities for my isomorphic projects because i'll be able to do this...
const fetchUsers = api("./api/get-name")
const api<T extends string>(url: string): Promise<ReturnType<typeof import(T)["default"]>> => {
return fetch(url.replace(".", "")
}
Where all my API endpoints export a default endpoint and which returns some data. If anyone uses NextJS with typescript they'll know this would be an insanely useful feature because NextJS enforces file-path routing therefore all endpoints export a default and are from the same file as the url path.
Seeing the new import stuff land in TypeScript 5.3 is awesome, I quickly scrolled through the change notes to see if const strings were usable in import statements, alas no such feature landed.
Would love to be able to use this as part of an RPC project that imports libraries as Workers. Currently it's something to the effect of:
function importWorker<T, F extends keyof T>(url: URL, workFunction: F) -> T[F]{ ... }
importWorker<typeof import('./worker.js'), 'worker'>(new URL('./worker.js'), 'worker')
It would be great to be able to use the following instead:
importWorker(new URL('./worker.js'), 'worker')
Search Terms
Use constant string in place of string literal for dynamic import statements.
Suggestion
Honestly I don’t know if this is a bug or a suggestion.
Is there a way to allow constant string to represent string literals? I’m thinking this should work, but it doesn’t. For example:
In the case above, "mod" is of type "any" because the compiler doesn't recognize the string literal in the constant
moduleName
(for literal strings, the types are correctly pulled). I'm not sure if this was an oversight, but it makes sense to allow it, since constant strings cannot be reassigned. The only workaround is to wrapawait import("../../../Project/src/Mod");
in a function:I may also add, it seems very difficult to import namespaces using dynamic imports, which I think is another terrible oversight.
That doesn't even make sense. A namespace, while a type, is still a reference under the hood, and thus should still be importable dynamically somehow; perhaps like:
I think all this would aim to better support dynamic imports "on demand" instead of modules forcibly loading every single module when some may not be needed at all, It could also help promote faster initial page loads in many cases. ;)
Checklist
My suggestion meets these guidelines: