Dynamic objects should NOT be this hard

Поделиться
HTML-код
  • Опубликовано: 9 авг 2023
  • Full article:
    www.totaltypescript.com/conce...
    Become a TypeScript Wizard with my free beginners TypeScript Course:
    www.totaltypescript.com/tutor...
    Follow Matt on Twitter
    / mattpocockuk
    Join the Discord:
    mattpocock.com/discord
  • НаукаНаука

Комментарии • 89

  • @Relaxantify
    @Relaxantify 10 месяцев назад +31

    "Technically you could index into my object with D"
    That's a pick up line I haven't heard before

  • @helleye311
    @helleye311 10 месяцев назад +27

    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 10 месяцев назад

      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 10 месяцев назад

      I Generally avoid using the keyword as unless it's some communication with the external world like db or api

  • @jon1867
    @jon1867 10 месяцев назад +6

    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 10 месяцев назад +3

      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 10 месяцев назад

      @@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 10 месяцев назад

      ​​​​@@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.

  • @Nabulio85
    @Nabulio85 7 месяцев назад

    Thank you very much.
    Great work.

  • @culi7068
    @culi7068 10 месяцев назад +1

    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
    ```

  • @gitgudchannel
    @gitgudchannel 10 месяцев назад +2

    Yet another BANGER

  • @kylelambert__
    @kylelambert__ 10 месяцев назад

    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  10 месяцев назад +3

      This is coming in my Advanced React workshop! Though a YT video here would be great too.

    • @kylelambert__
      @kylelambert__ 10 месяцев назад

      Amazing! Can't wait for this.

  • @Benverge
    @Benverge 10 месяцев назад

    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.

  • @mahadevovnl
    @mahadevovnl 10 месяцев назад +19

    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 10 месяцев назад +4

      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 10 месяцев назад

      @@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 10 месяцев назад

      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 10 месяцев назад +2

      @@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 10 месяцев назад +1

      ​@@mahadevovnlyes some people overtype things

  • @n3ko74
    @n3ko74 10 месяцев назад

    What about writing `Record` instead? Doing to much or too little is always cause trouble and confusion.

  • @sam.0021
    @sam.0021 10 месяцев назад

    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.

  • @darenbaker4569
    @darenbaker4569 10 месяцев назад +1

    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

  • @FlyingPenguino
    @FlyingPenguino 10 месяцев назад +1

    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  10 месяцев назад +4

      That'll leak an 'any' into the rest of the codebase! Best avoided.

  • @linkfang9300
    @linkfang9300 10 месяцев назад

    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 10 месяцев назад

      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")[]

  • @rahulreticent5034
    @rahulreticent5034 10 месяцев назад

    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  10 месяцев назад +1

      mattpocock.com/discord is the best spot for this stuff

    • @eqprog
      @eqprog 10 месяцев назад

      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

  • @edgeeffect
    @edgeeffect 10 месяцев назад +1

    Anybody else from Python or PHP saying "wow, I wish we had something like TypeScript in our world"?

  • @dzdeathray
    @dzdeathray 10 месяцев назад

    How are those solutions written? Is it just markdown in a code editor?

    • @mattpocockuk
      @mattpocockuk  10 месяцев назад

      Yeah it's markdown in a CMS

  • @sergiigolembiovskyi1365
    @sergiigolembiovskyi1365 10 месяцев назад

    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  10 месяцев назад

      Interfaces disappear at runtime, so this is unlikely to work

  • @ColinRichardson
    @ColinRichardson 10 месяцев назад +7

    "TS things it's a number"... **Thinks**

  • @vahan-sahakyan
    @vahan-sahakyan 10 месяцев назад

    2:56 A quick question: Will there ever be a time when FOR..IN loop will be typed?

    • @mattpocockuk
      @mattpocockuk  10 месяцев назад

      No - TypeScript would have to support exact object types, which I don't think it will ever do.

  • @Endrju219
    @Endrju219 10 месяцев назад +1

    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  10 месяцев назад +3

      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 10 месяцев назад +1

      @@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  10 месяцев назад +2

      @@Endrju219 Exactly!

    • @lengors7327
      @lengors7327 10 месяцев назад

      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 10 месяцев назад +1

      @@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`

  • @Tazzad
    @Tazzad 10 месяцев назад

    What about dynamic components in react with typescript?

    • @mattpocockuk
      @mattpocockuk  10 месяцев назад

      What kinds of dynamism are you thinking about?

    • @Tazzad
      @Tazzad 10 месяцев назад

      @@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, RUclips 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  10 месяцев назад

      @@Tazzad A big discriminated union

  • @eqprog
    @eqprog 10 месяцев назад

    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.

  • @ahmedennab9745
    @ahmedennab9745 10 месяцев назад

    why not use as const?

    • @mattpocockuk
      @mattpocockuk  10 месяцев назад

      Because it's supposed to be dynamic - and as const is for creating static objects.

  • @TheRavageFang
    @TheRavageFang 10 месяцев назад

    as const?

    • @mattpocockuk
      @mattpocockuk  10 месяцев назад

      Check out my other video on it

  • @mixed_nuts
    @mixed_nuts 10 месяцев назад

    This is making me so frustrated....why can't TS just infer the index signature of an object, especially with as const.

  • @thepetesmith
    @thepetesmith 10 месяцев назад +54

    If you ask me, working at Vercel is higher than FAANG.

    • @gitgudchannel
      @gitgudchannel 10 месяцев назад +2

    • @brokula1312
      @brokula1312 10 месяцев назад +10

      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 10 месяцев назад +6

      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 10 месяцев назад +1

      ​​@@brokula1312examples of such technologies?

    • @BeepBoop2221
      @BeepBoop2221 10 месяцев назад

      ​@@brokula1312such as?

  • @QwDragon
    @QwDragon 10 месяцев назад +1

    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 10 месяцев назад

      Why the wrap exclude in a array/tuple?

    • @QwDragon
      @QwDragon 10 месяцев назад +1

      @@lengors7327 because you can't distribute never. It's the standard way to check never.

  • @adkuca
    @adkuca 10 месяцев назад

    keyword "as" should have an alias "trustmebro"

  • @simpingsyndrome
    @simpingsyndrome 10 месяцев назад

    typecool

  • @karmandev
    @karmandev 10 месяцев назад

    I thing you made a spelling mistake in the last example

  • @dkazmer2
    @dkazmer2 10 месяцев назад

    Typo 😉 in the comment of your last example: "TS things..."

  • @mx-dvl
    @mx-dvl 10 месяцев назад +1

    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

  • @bronzekoala9141
    @bronzekoala9141 10 месяцев назад

    or - in this example - just
    const myMap = new Map([
    ["a", 1],
    ["b", 1],
    ])

  • @andreilucasgoncalves1416
    @andreilucasgoncalves1416 10 месяцев назад +2

    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

  • @samarbid13
    @samarbid13 10 месяцев назад

    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? 👀🔧

  • @xushenxin
    @xushenxin 10 месяцев назад +5

    I think it is waste of time. I would rather spend the time on making sure the features for business requirement.

    • @FlyingPenguino
      @FlyingPenguino 10 месяцев назад +3

      Good luck

    • @DarkSwordsman
      @DarkSwordsman 10 месяцев назад +1

      What is a waste of time?

    • @carlogustavovalenzuelazepe5774
      @carlogustavovalenzuelazepe5774 10 месяцев назад +1

      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

  • @chrisbirkenmaier2277
    @chrisbirkenmaier2277 7 месяцев назад

    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?

  • @sqlazer
    @sqlazer 10 месяцев назад

    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