Dynamic objects should NOT be this hard

  Рет қаралды 38,495

Matt Pocock

Matt Pocock

Күн бұрын

Пікірлер: 89
@Relaxantify
@Relaxantify Жыл бұрын
"Technically you could index into my object with D" That's a pick up line I haven't heard before
@helleye311
@helleye311 Жыл бұрын
I've done all 3, for different use cases. Last one in particular is nice if you really just want TS to shut up and let you handle it. Sometimes there's some fancy logic in the function above to check if it'll work, but you still want autocomplete on the results in one form or another, and these might not agree with the object type, and typescript doesn't quite narrow things down as much as I'd like it to. Then as keyof typeof obj is a real life saver. You could do it in a safer manner, but it would almost always involve very abstract types and a lot of headache. Definitely a sharp knife that one, that's a great analogy.
@FlyingPenguino
@FlyingPenguino Жыл бұрын
Sometimes putting `// @ts-expect-ignore` above the line is nice as well ;) If you're casting, you're ignoring type-safety anyway. Use it wisely!
@brucewayne2480
@brucewayne2480 Жыл бұрын
I Generally avoid using the keyword as unless it's some communication with the external world like db or api
@jon1867
@jon1867 Жыл бұрын
Something confusing but actually kind of necessary (due to how JS works) that I think you could have mentioned here is how Record is still technically creating strings that point to type T. It's why I think for dynamic options, Map can be a little nicer to work with in Typescript.
@jaroslavoswald7566
@jaroslavoswald7566 Жыл бұрын
Can you elaborate more? I tried to read that statement few time, but it doesnt make sense to me. How is `Record` creating string that point to T?
@jon1867
@jon1867 Жыл бұрын
@@jaroslavoswald7566 The idea is any time you go to take a dynamic record and turn it into something useful for calculating something, it gets deserialized to a string. Object.keys({1: "hello"}) turns into ["1"]
@gmoniava
@gmoniava Жыл бұрын
​​​​@@jaroslavoswald7566I think he means in js if use number as index it gets converted to string. So the type of key will be string | number in the case he refers to. But can't check now.
@vahan-sahakyan
@vahan-sahakyan Жыл бұрын
2:56 A quick question: Will there ever be a time when FOR..IN loop will be typed?
@mattpocockuk
@mattpocockuk Жыл бұрын
No - TypeScript would have to support exact object types, which I don't think it will ever do.
@culi7068
@culi7068 Жыл бұрын
Solution #4 is ugly because of problems with conditional types as return types but you can do: ```ts const myObj = { a: 12, b: 'hello' }; type Unlocked = T extends keyof typeof myObj ? typeof myObj[T] : undefined; const access = (key: T): Unlocked => myObj[key] as Unlocked ; ``` And then you get ```ts const something = access('a'); // ^? number const somethingElse = access('b'); // ^? string ```
@edgeeffect
@edgeeffect Жыл бұрын
Anybody else from Python or PHP saying "wow, I wish we had something like TypeScript in our world"?
@FlyingPenguino
@FlyingPenguino Жыл бұрын
4th option: `// @ts-expect-error` above the line. It's almost explicit sign for people reading the code that the developer just wanted typescript to shut up. It might lead to leaner code tbh. As long as such stuff is contained in small edge-case functions. It's probably fine :)
@mattpocockuk
@mattpocockuk Жыл бұрын
That'll leak an 'any' into the rest of the codebase! Best avoided.
@n3ko74
@n3ko74 Жыл бұрын
What about writing `Record` instead? Doing to much or too little is always cause trouble and confusion.
@NaorBK
@NaorBK Жыл бұрын
When will you ever use option 3 instead of option 1? I'm not quite sure how the `for loop` you mentioned could lead you to use 3. after all, the iterator should have an array of all possible types of keys.
@sam.0021
@sam.0021 Жыл бұрын
This is something I've found extremely annoying when using string flags where I want undefined, null, or empty string to be an option and then I want to index an object with these strings. TS almost always makes me either lie to it (and thus force me to always remember my lie) or create a "dummy" key in my object.
@mahadevovnl
@mahadevovnl Жыл бұрын
Honestly, this kind of example shows how absolutely batshit insane TS is for newcomers. Its error messages so very often don't make a shred of sense. They really need to either make TS better (they are continually doing so anyway) or make the error messages more sensible. I'm almost never reading TS errors anymore. It goes straight into ChatGPT and then it makes sense about 5 seconds later.
@disinfect777
@disinfect777 Жыл бұрын
TS is an attempt to fix a crappy language but it's so crappy there's always gonna be these weird quirks and bugs. What needs to be done is getting rid of JS and let us use a proper language in the browser. If i could use c# both back and front end I'd be so happy.
@mahadevovnl
@mahadevovnl Жыл бұрын
@@disinfect777 I have no issues with JavaScript, and I don't need TypeScript. The only reason I use it is because companies insist on it.
@Delphi80SVK
@Delphi80SVK Жыл бұрын
and without TS you will get noticed at runtime with plain JS about such string|undefined errors, especially in production. TS tries to help you when writing code.
@mahadevovnl
@mahadevovnl Жыл бұрын
@@Delphi80SVK I've worked with vanilla JavaScript for over 16 years. Coding conventions, naming conventions, JSDoc, etc. all did the trick perfectly fine. TypeScript also COSTS a lot of time trying to figure out its stupidities (like pointed out in this video), and trying to figure out some genius's 5 nested single-letter generics.
@gmoniava
@gmoniava Жыл бұрын
​@@mahadevovnlyes some people overtype things
@josipX
@josipX Жыл бұрын
Yet another BANGER
@eqprog
@eqprog Жыл бұрын
One “gotcha” of keyof is that you can not use keyof Whatever if Whatever[key] is a private member. Extremely frustrating in certain scenarios. Another is if you are using a mapped types and then the corresponding keyof Type as a function parameter. “Type string cannot be used to access type string | number | Symbol” This one is particularly perplexing.
@linkfang9300
@linkfang9300 Жыл бұрын
I just used the last one today and I did not come up with another solution. In short, it could be very useful when typescript can not infer the type correctly, when using Object.keys() or some array method (filter(), etc.). So my case is that I have a constant object (defined using as const) and its key and value are strict type (let's say, key is "a | b", value is "1| 2"). I would like to generate an array of object, like this {label: "a" | "b", value: 1 | 2}[], to be used as the option for a select component. The easiest way I can think of is to use "Object.keys()" or "Object.entities()" and then map through it to get the array. The issue then starts, typescript will NOT infer the type of the key to be "a" | "b" but string (the value will be inferred as 1 | 2 though). And because of the string, I can not use it as a index to get the value and or make the new array to have the strict type I would like to have. The type would be {label: string, value: 1 | 2}[] which is far from perfect. So I have to cast the type of the key to be "a" | "b" and it will only be this because the whole object is readonly and nothing can be changed.
@jaroslavoswald7566
@jaroslavoswald7566 Жыл бұрын
For this situations I have always in utils my own `keys` or `entries` functions. But they are generic and they are correctly infering key as string literals. It loooks like this: const keys = (obj: T) => { return Object.keys(obj) as Array } const result = keys({ a: 1, b: 2 }) // ^? const result: ("a" | "b")[]
@Endrju219
@Endrju219 Жыл бұрын
Isn't there a funky way to define `myObj` type as a Record intersected with the `typeof myObj`? For example with a mapped type? So that any string is a legal key returning some default value type, but `a` and `b` keys have a particular value type.
@mattpocockuk
@mattpocockuk Жыл бұрын
It's actually pretty hard to do this, and might be impossible - because the index signature HAS to match up with any defined types.
@Endrju219
@Endrju219 Жыл бұрын
@@mattpocockuk thx! so **until that constraint is dropped**, my idea is only possible for a case where the type of the properties of `myObj` is the same as the value type defined in Record... which is basically just a Record 😄
@mattpocockuk
@mattpocockuk Жыл бұрын
@@Endrju219 Exactly!
@lengors7327
@lengors7327 Жыл бұрын
Until you can exclude literal types from their respective general types, I don't see how you would be able to do this, tbh
@ApprendreSansNecessite
@ApprendreSansNecessite Жыл бұрын
@@mattpocockuk `{ [k: string]: string } & { a: number, b: number }` is valid TS. the properties `a` and `b` will be of type number and any supernumerary property will be of type `string`
@rahulreticent5034
@rahulreticent5034 Жыл бұрын
Hi Matt Pocock I'm stuck with creating a type which determines the args types of callback function so while calling the callback function it should give type error while passing wrong arguments for eg : const main=(cb)=>{ cb("abc", "232"); // not giving type mismatch error } function cb(a: number, b: number){ return a+b } Thanks in advance
@mattpocockuk
@mattpocockuk Жыл бұрын
mattpocock.com/discord is the best spot for this stuff
@eqprog
@eqprog Жыл бұрын
Check out the “Parameters” utility type. You can use it with a spread operator (ie something like function(…args: Parameters[]) or you can even index the different args of the function Parameters[0] to get a specific argument
@Nabulio85
@Nabulio85 Жыл бұрын
Thank you very much. Great work.
@dzdeathray
@dzdeathray Жыл бұрын
How are those solutions written? Is it just markdown in a code editor?
@mattpocockuk
@mattpocockuk Жыл бұрын
Yeah it's markdown in a CMS
@thepetesmith
@thepetesmith Жыл бұрын
If you ask me, working at Vercel is higher than FAANG.
@josipX
@josipX Жыл бұрын
@brokula1312
@brokula1312 Жыл бұрын
Why? Most of tech influencer don't really have extensive experience. Also, Vercel is overrated as is Next. There are far better, easer and more intuitive technologies out there.
@steamer2k319
@steamer2k319 Жыл бұрын
The guys from JetBrains are really sharp, too. It depends on who you get from FAANG. Those are big companies with a lot of variation across the many engineering teams.
@CHAPI929292
@CHAPI929292 Жыл бұрын
​​@@brokula1312examples of such technologies?
@BeepBoop2221
@BeepBoop2221 Жыл бұрын
​@@brokula1312such as?
@chrisbirkenmaier2277
@chrisbirkenmaier2277 Жыл бұрын
Is there a way to (un)safely access the object with a unknown key, and to check if the result is defined? Like, ```if(!myObj.at(key)){return;} continue```. In other words, I know that I don't know if my key is a keyof my object, so I want to check to see if my object is defined at this key. Disabling 'noUncheckedIndexedAccess' or type-casting can't really be the only option, or?
@adkuca
@adkuca Жыл бұрын
keyword "as" should have an alias "trustmebro"
@Tazzad
@Tazzad Жыл бұрын
What about dynamic components in react with typescript?
@mattpocockuk
@mattpocockuk Жыл бұрын
What kinds of dynamism are you thinking about?
@Tazzad
@Tazzad Жыл бұрын
@@mattpocockuk Say you recieve an object from a server that you need to show your end user. And the types could be Dynamic Text, Image, Video, KZbin embed, PDF document, Audio etc. You could solve it with a switch case but that gets really messy really fast. Are there other ways you could solve it?
@mattpocockuk
@mattpocockuk Жыл бұрын
@@Tazzad A big discriminated union
@kylelambert__
@kylelambert__ Жыл бұрын
Love your videos, really great work. Could you possibly do a tutorial on how to create polymorphic types for a React box component. It seems since the release of Typescript v5, the old ways for handling these types don't work anymore. I've been banging my head against the keyboard for days trying to figure it out. Thanks for the content! :D
@mattpocockuk
@mattpocockuk Жыл бұрын
This is coming in my Advanced React workshop! Though a YT video here would be great too.
@kylelambert__
@kylelambert__ Жыл бұрын
Amazing! Can't wait for this.
@sergiigolembiovskyi1365
@sergiigolembiovskyi1365 Жыл бұрын
Hey Matt, thanks for your videos, it’s so simple explaining of so difficult understanding topics. BTW It will be cool to know your point of view on the following case: there are interfaces - one is base, and others are extended from it. Also, we have classes that implement all the interfaces. What is your suggestion to implement some generic method (typeOf) in the base class via which we can check what the actual interface of this instance is? I’m sure it must be interesting to most TS developers. Thanks in advance! interface IBaseComponent interface IComponent1 extends IBaseComponent interface IComponent2 extends IBaseComponent abstract class BaseComponent implements IBaseComponent { public abstract typeOf():this is T } class Component1 extends BaseComponent class Component2 extends BaseComponent //___________________________________ const factory = new ComponentFactory(); const component1 = factory.newComponent1(); // component1: IBaseComponent const component2 = factory.newComponent2(); // component2: IBaseComponent component1.typeOf // false component1.typeOf // true && component1 is IComponent1
@mattpocockuk
@mattpocockuk Жыл бұрын
Interfaces disappear at runtime, so this is unlikely to work
@ahmedennab9745
@ahmedennab9745 Жыл бұрын
why not use as const?
@mattpocockuk
@mattpocockuk Жыл бұрын
Because it's supposed to be dynamic - and as const is for creating static objects.
@darenbaker4569
@darenbaker4569 Жыл бұрын
Why couldn't I have seem this 4 hours ago when I run into this problem 😂 anyway solved it using as constant on the object which seems to work, sure it will bite me at some point, but it's only a next13 pocket. Many thanks love your videos
@ColinRichardson
@ColinRichardson Жыл бұрын
"TS things it's a number"... **Thinks**
@ColinRichardson
@ColinRichardson Жыл бұрын
at 2:55
@djazz0
@djazz0 Жыл бұрын
Internet of Thinks!
@TheRavageFang
@TheRavageFang Жыл бұрын
as const?
@mattpocockuk
@mattpocockuk Жыл бұрын
Check out my other video on it
@QwDragon
@QwDragon Жыл бұрын
I would've do this: const obj = {  a: 1,  b: 2, } function access(key: K): typeof obj[K & keyof typeof obj] | ([Exclude] extends [never] ? never : undefined) {  return (obj as any)[key] } access("a") // number access("b") // number access("c") // undefined declare var str: string; access(str) // number | undefined declare var abx: 'a' | 'b' | 'x' access(abx) // number | undefined
@lengors7327
@lengors7327 Жыл бұрын
Why the wrap exclude in a array/tuple?
@QwDragon
@QwDragon Жыл бұрын
@@lengors7327 because you can't distribute never. It's the standard way to check never.
@karmandev
@karmandev Жыл бұрын
I thing you made a spelling mistake in the last example
@andreilucasgoncalves1416
@andreilucasgoncalves1416 Жыл бұрын
In the end all my ts problems are solved using "as any" and tests. Typescript does not replace tests and the mental effort to make all types correctly it's not worth most of the time
@simpingsyndrome
@simpingsyndrome Жыл бұрын
typecool
@bronzekoala9141
@bronzekoala9141 Жыл бұрын
or - in this example - just const myMap = new Map([ ["a", 1], ["b", 1], ])
@dkazmer2
@dkazmer2 Жыл бұрын
Typo 😉 in the comment of your last example: "TS things..."
@mx-dvl
@mx-dvl Жыл бұрын
I’d take the opposite stance to this video and actually argue that dynamic objects should be this hard. I’d probably implement a simple `key in obj ? obj[key] : undefined` - but I think TS is correct in forcing you to make a decision, and future travellers will be thankful you were explicit about expectations
@samarbid13
@samarbid13 Жыл бұрын
Unpopular opinion: I think AI or Copilot in the editor should handle TS. Developers shouldn't sweat over these types. 😅 It feels like we spend more time than the actual perks we get. Anyone else feel this way? And oh, anyone know a killer VSCode extension for this type madness? 👀🔧
@sqlazer
@sqlazer Жыл бұрын
The actual solution is none of the above; the actual issue here is that we have a requirement here to have non-compile-time type-checking. The real solution, without pulling an external library like zod, is to combine runtime-type-checking with compile-time-type-casting. For example: ```typescript const access = (key: string) => { if (!Object.keys(myObj).includes(key)) { throw new Error(`Invalid key for myObj: ${key}`); } return myObj[key as keyof typeof myObj]; }; ``` That said, as another commenter said, this is some batshit insane stuff for typescript. I know there's projects out there like zod and ts-reflect, but I really wish the TS devs would add to the core of typescript, optional runtime type structures. Something like this: ```typescript import "@total-typescript/ts-reset/array-includes"; const access = (keyString: string) => { const key = typescript.toKeyType(keyString); // ^?: "a" | "b" return myObj[key] } ``` They really seem against this idea but it's a massive, glaring hole in the whole system. Hell, even if we had a single typescript runtime function that just dumps the type information as a data structure, that would go a long way, then we could have a library like `clark` or something: ```typescript const myObjTypedef = typescript.dump(); assert.intersects(myObjTypedef, { kind: "Object", keys: [ "a", "b" ] }) const access = (key: string) => { return clark(myObj).indexPropertyViaString(key) } ``` I dunno. It's a major problem with typescript that gets swept over too often
@xushenxin
@xushenxin Жыл бұрын
I think it is waste of time. I would rather spend the time on making sure the features for business requirement.
@FlyingPenguino
@FlyingPenguino Жыл бұрын
Good luck
@DarkSwordsman
@DarkSwordsman Жыл бұрын
What is a waste of time?
@carlogustavovalenzuelazepe5774
@carlogustavovalenzuelazepe5774 Жыл бұрын
some of these solutions make the code work for years, the line between a simple yet brilliant solution and overenginnering things is thin I guess
Infer is easier than you think
13:38
Matt Pocock
Рет қаралды 94 М.
Enums considered harmful
9:23
Matt Pocock
Рет қаралды 213 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 93 МЛН
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 14 МЛН
Чистка воды совком от денег
00:32
FD Vasya
Рет қаралды 4,9 МЛН
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 37 МЛН
Most TS devs don't understand 'satisfies'
4:10
Matt Pocock
Рет қаралды 58 М.
7 Awesome TypeScript Types You Should Know
8:57
Josh tried coding
Рет қаралды 89 М.
Everyone's talking about gql.tada
5:06
Matt Pocock
Рет қаралды 44 М.
TypeScript Utility Types You Must Learn
14:07
TomDoesTech
Рет қаралды 18 М.
as const: the most underrated TypeScript feature
5:38
Matt Pocock
Рет қаралды 125 М.
The Dangers Of Promise.all()
6:15
Theo - t3․gg
Рет қаралды 69 М.
Looking Under the Hood of JavaScript
6:34
ThePrimeagen
Рет қаралды 187 М.
TypeScript 5.5 is a BANGER
9:16
Matt Pocock
Рет қаралды 67 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 93 МЛН