Most TS devs don't understand 'satisfies'

Поділитися
Вставка
  • Опубліковано 10 лип 2024
  • 00:00 Intro
    00:33 Variable annotations
    00:53 What satisfies does
    02:01 When satisfies is GOOD
    02:39 When variable annotations are BAD
    03:41 Outro
    New Tutorial: www.totaltypescript.com/tutor...
    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
  • Наука та технологія

КОМЕНТАРІ • 132

  • @nazaka9904
    @nazaka9904 6 місяців тому +120

    I wish you added that 'satisfies' can be combined with 'as const'. It is obvious, but still nice to mention i think

    • @Niksorus
      @Niksorus 6 місяців тому +4

      It's not that obvious, it was only recently allowed 😂 It should have worked from the start though, clearly.

    • @Mitsunee_
      @Mitsunee_ 6 місяців тому +2

      afaik it basically already does that, other than the part where `as const` also makes stuff readonly, which usually just adds additional confusion

    • @NikiHerl
      @NikiHerl 6 місяців тому

      What does the combination do?

    • @nazaka9904
      @nazaka9904 6 місяців тому

      @@NikiHerl there are some situations where you want to infer the type as closely as you can, while ensuring the object you create follows some other type. That is where i use it

  • @liornz462
    @liornz462 6 місяців тому +47

    You have made such an impact on the TS community, and enriched us all with your courses, articles and UA-cam content. Thank you so much!! I wish us all a wonderful new TypeScript year 🎉

  • @tonimaunde
    @tonimaunde 6 місяців тому

    Happy new year, Matt. Thanks a lot for your work, and I have to say that satifies still eludes me, but this video provided a nice use case.

  • @samirmishra9946
    @samirmishra9946 6 місяців тому

    Happy new year matt! the typescript 🐐

  • @mikael.sevigny
    @mikael.sevigny 6 місяців тому

    Fantastic content once more, thanks Matt! I appreciate the single-topic video format as well. I'm also looking forward to the book release, especially since the premium TT courses are a bit too expensive for me to purchase at the moment.

  • @SudeeptoDutta
    @SudeeptoDutta 6 місяців тому

    Thank you for this clear explanation. Please continue making such videos focusing on a specific topic only.

  • @BoudewijnDanser
    @BoudewijnDanser 6 місяців тому

    All the best for 2024 Matt, hope you keep making awesome content for all the wizards!

  • @budivoogt491
    @budivoogt491 3 місяці тому

    Great explanation Matt! Thanks. Will try to narrow my types further where possible to get more autocompletion.

  • @Cahnisama
    @Cahnisama 6 місяців тому

    This video has been very satisfying, thanks Matt

  • @locotes
    @locotes Місяць тому

    Brilliant explanation, thanks!

  • @TheedonCritic
    @TheedonCritic 6 місяців тому +1

    You're a champ, Matt. Thanks!

  • @alexjohnson-bassworship3150
    @alexjohnson-bassworship3150 6 місяців тому

    I've been waiting for more satisfies videos!!

  • @Matiast9477
    @Matiast9477 6 місяців тому

    I’m trying to step up my TS game and your videos are really helping me!

  • @xbsidesx
    @xbsidesx 6 місяців тому

    I started using satisfies more because of its “const” value as well. This is such a good tip. Awesome video as always!

  • @re.liable
    @re.liable 6 місяців тому

    Happy holidays Matt

  • @Dev-Siri
    @Dev-Siri 6 місяців тому +5

    typing a word like "satisfies" is satisfying

  • @harvenius
    @harvenius 6 місяців тому

    Love your work!

  • @ContortionistIX
    @ContortionistIX 6 місяців тому

    i needed this, thank u brother

  • @YeloPartyHat
    @YeloPartyHat 6 місяців тому

    Oh wow, great stuff! Nice explanation and use case!

  • @laminecherif7724
    @laminecherif7724 6 місяців тому

    The best explanation regarding satisties I have encountered so far!

  • @edgeeffect
    @edgeeffect 6 місяців тому

    Seems like ages since you last popped up in my feed and said "what's up wizards".... welcome back. :)

  • @ShivKumar-qg3mt
    @ShivKumar-qg3mt 6 місяців тому

    You don't know how much you helped me with this. I didn't know about this `satisfies` keyword and I had to write duplicate code to get object constraint with autocompletion as typing out `Record` on variable I always loose keys autocompletion.

  • @JacobDrebin
    @JacobDrebin 3 місяці тому

    Thanks for this explanation! In essence, this is like writing:
    const name: extends string = "sam";
    Which is something I've always wanted to be able to do.

  • @ibgib
    @ibgib 6 місяців тому +2

    `satisfies Partial` phenomenally useful

  • @cool_scatter
    @cool_scatter 6 місяців тому +6

    I would have loved you to show off satisfies's power a little more at the end by showing one of those massive config objects! It can get really useful when combined with discriminated unions for different types of config options as well

  • @n4bb12
    @n4bb12 6 місяців тому +13

    Before "satisfies" you had to make a choice whether you want something to adhere to a type OR be of the more specific type. With "satisfies" you get both.

    • @QwDragon
      @QwDragon 6 місяців тому

      You could've done both, but in a very odd manner.

  • @budi6881
    @budi6881 6 місяців тому

    hi Matt, totally love ur content! im curious how did you had those `// ^? (property) ...`?

  • @mamlzy
    @mamlzy 6 місяців тому

    thank you!

  • @dechobarca
    @dechobarca 5 місяців тому

    This video satisfies any TypeScript developer. Thumbs up for you Matt.

  • @jonathanadamsson6201
    @jonathanadamsson6201 6 місяців тому +1

    I found it useful sometimes when asserting string literals, say I have something like `type State = 'Idle' | 'Succes' | 'Error'`, then in another place in the code I might have `'Idle' satisfies State`, which will assure the type error is caught if I ever change the string literal
    There are better ways to handle this typically but in some situations it can be pretty useful

  • @scosee2u
    @scosee2u 6 місяців тому

    Nice one!

  • @rohitsengar9968
    @rohitsengar9968 6 місяців тому

    really good topic

  • @ederEngine
    @ederEngine 5 місяців тому

    excelent video

  • @3Shivs
    @3Shivs 5 місяців тому

    You’re great 👍

  • @Kuwaaito
    @Kuwaaito 6 місяців тому +31

    Being unfamiliar with being able to satisfy seems to be a common issue with programmers.

    • @dog4ik
      @dog4ik 6 місяців тому

      primeagen have 4 kinds lol

  • @jonathangamble
    @jonathangamble 6 місяців тому

    Would be cool to see TS tricks for each framework like SvelteKit

  • @QwDragon
    @QwDragon 6 місяців тому

    It would be great if they had some way of type propagation. Take a look on an issue 54976, please.

  • @sarimsarimsarim
    @sarimsarimsarim 6 місяців тому +15

    Can you describe how satisfies is different from "as const" which also seems to narrow the type. Thanks and happy new year :)

    • @mattpocockuk
      @mattpocockuk  6 місяців тому +22

      as const makes a value deeply readonly
      satisfies checks that a value satisfies a type

    • @WaltersWatching
      @WaltersWatching 6 місяців тому +2

      And sometimes it's nice to use both at once.

    • @snake1625b
      @snake1625b 6 місяців тому

      So if you know that your objects field are never going to be mutated then use as const. If you're adding new fields then use colon. If your mutating existing fields then use satisfies?

  • @kevinnguyen2249
    @kevinnguyen2249 5 місяців тому

    Is the "^?" comment to display the variable type an extension you're using?

  • @omergronich778
    @omergronich778 6 місяців тому

    The satisfies keyword was one of the things i was missing the most in typescript

  • @ARLX-yo1wr
    @ARLX-yo1wr 6 місяців тому

    Thanks

  • @adi96adi
    @adi96adi 6 місяців тому

    Looking forward to that book Matt. Do you plan on pushing out physical copies or will it just be digital?

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      Physical! Signing with a publisher.

    • @adi96adi
      @adi96adi 6 місяців тому

      @@mattpocockuk hell yeah that's what I wanted to hear

  • @kunodragon4355
    @kunodragon4355 6 місяців тому

    Recently I discovered using satisfies with generic types also seems to narrow the type parameters if they would otherwise be inferred as any.

  • @hatemtraif4164
    @hatemtraif4164 Місяць тому

    The way I read this now, this is similar to as const, but with as const you are narrowing the entire thing as a value while this will narrow the types for you only ? I saw also another comment that satisfies can be mixed with as const, what are actual use cases were combining both is desired?

  • @Di-yes
    @Di-yes 6 місяців тому

    Never heard about this. Cool🤔

  • @ExponentialWorkload
    @ExponentialWorkload 6 місяців тому

    instead of the variable annotation in the first example, it is possible to also just use `as` - although this can cause other issues

  • @it_masterz
    @it_masterz 6 місяців тому

    This is very useful, 🎉🎉
    What maybe the difference from as MyType ?

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      as MyType acts like ':', but also allows for illegal stuff. It's a way of lying to TS.

  • @anj000
    @anj000 6 місяців тому +2

    How `as const` plays into this? When to use one over the other or both at the same time?

    • @anj000
      @anj000 6 місяців тому

      Right now I'm using `as const` for my config and I have something like this:
      ```
      const MY_NAMES = { A: 'a', B: 'b' } as const;
      type MyNames = ValueOf;
      const MY_CONFIG: Record = {
      [MY_NAMES.A]: { id: 'a', name: 'a' },
      [MY_NAMES.B]: { id: 'b', name: 'b' },
      } as const;
      ```
      Does it makes sense to use satisfy in that scenario? Is it providing any benefit?

  • @CasualCosta
    @CasualCosta 6 місяців тому

    1:20 What is that extension that "translate" errors?

    • @shayanzamani9907
      @shayanzamani9907 3 місяці тому

      I guess it's "ts-error-translator", which is developed by Matt!

  • @Tarabass
    @Tarabass 6 місяців тому

    So with satisfies you just say the object has to satisfy the type declaration, like a template?

  • @darkwoodmovies
    @darkwoodmovies 6 місяців тому

    Good to know, actually. I feel like it should be used as a niche kind of thing more than regularly though. Inferred typing if you can!

  • @acrosstundras
    @acrosstundras 6 місяців тому

    It's like type validation for variable declaration.

  • @elina6969
    @elina6969 6 місяців тому

    Another thing about satisfies is that using it with well defined interfaces means you don't accidentally widen the type but also get type safety and errors at the correct place. If your config object is passed to a function that expects a Config type but the object does not satisfy Config type, it'll error at the call site, how've you really want it to tell you at the declaration site

  • @scrapsplaysgames
    @scrapsplaysgames 6 місяців тому +1

    One of the big issues I keep encountering with set value objects is if I want to declare a shape on an object or array, I can't also use as const. It loses those exact values. But using as const without setting the shape, it doesn't error if not all values of an enum are used. I wonder if satisfies could help here in some way

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      Absolutely!
      {} as const satisfies MyType
      is what you need.

    • @QwDragon
      @QwDragon 6 місяців тому

      You have some enum and want an array to have a single element per each enum value?
      Take a look at srtackoverflow questions 59032886 and 58437445.

  • @Ked_gaming
    @Ked_gaming 6 місяців тому

    I wish this wasn't a totally different syntax from variable annotation, this is going to confuse the hell of out people not used to typescript

  • @samuelgunter
    @samuelgunter 6 місяців тому +2

    satisfies any

  • @i_Amazin_
    @i_Amazin_ 6 місяців тому

    Hmm ok. So it's almost like a slightly less strict `as const`. It lets you keep your type strictness (or not leaving it up to inferred), while still having devtool capabilities.

  • @sinthoras91
    @sinthoras91 6 місяців тому

    I think i didnt get the difference between omitting the satisfied keyword on your second example vs specifying it? You have intelisense on both options and type-safety - right?

    • @acrosstundras
      @acrosstundras 6 місяців тому

      Without "satisfies" it would be "{ wide: string; narrow: number }. Satisfies lets you make both of them "string | number".

    • @mattpocockuk
      @mattpocockuk  6 місяців тому +4

      The difference is that without satisfies, there's no type checking on the value itself. So I could add a boolean there without it erroring.

    • @jasinrefiku2914
      @jasinrefiku2914 6 місяців тому +1

      The difference is that when you insert keys/values, the keys/values can be only of that `satisfy` type you've inserted, meanwhile, if you omit the satisfies keyword, you can have any type as keys/values.
      Edit: Hadn't refreshed the video, OP has responded.

  • @Metruzanca
    @Metruzanca 6 місяців тому

    The title is true. Solidstart used it for its new RouteDefinition and I replaced it with :Routedefinition because I didn't understand it.

  • @adiadiadi
    @adiadiadi 6 місяців тому

    hey matt, how do you get the type to show up in the comment?

    • @chrisfrancisbass8991
      @chrisfrancisbass8991 6 місяців тому +1

      Try the Twoslash extension for your IDE. I just installed Twoslash Query Comments for VS Code and it looks great.

    • @adiadiadi
      @adiadiadi 6 місяців тому

      thanks

  • @Wielorybkek
    @Wielorybkek 6 місяців тому

    interesting, might be useful

  • @ilkrsrc081
    @ilkrsrc081 6 місяців тому +1

    If the type is known before hand, why would I use satisfies instead of something like this : { [key: "wide" | "narrow"]: string | number }

    • @mattpocockuk
      @mattpocockuk  6 місяців тому +3

      Note that in your version, both 'wide' and 'narrow' would be string | number.
      And you'd have a duplication between your types and your runtime (of wide and narrow).
      satisfies is really useful when you have MASSIVE config objects you need to make sure are the correct shape.

  • @recursiv
    @recursiv 6 місяців тому

    Seems like you could use `satisfies T as T` to get the originally desired behavior too.

  • @riessnico
    @riessnico 6 місяців тому

    Can you point out the difference when using as const?

    • @mattpocockuk
      @mattpocockuk  6 місяців тому +1

      as const makes a value deeply readonly.
      satisfies ensures that a value matches a given type.

    • @riessnico
      @riessnico 6 місяців тому

      @@mattpocockuk Thanks! Huge fan of your work

  • @rusicsemenov
    @rusicsemenov 6 місяців тому

    Hi, yes it works, but if we take type from object as typeof config, where we will have ab boolean, it can get an error: `Type boolean is not assignable to type false` (you can try to use it)

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      Could you elaborate?

    • @rusicsemenov
      @rusicsemenov 6 місяців тому

      @@mattpocockuk
      ```javascript
      const initialState = {
      isBoolean: false,
      someText: 'text',
      } satisfies Record;
      type TInitialState = typeof initialState;
      const state: TInitialState = initialState;
      state.isBoolean = true;
      state.someText = 'other text';
      ```

    • @rusicsemenov
      @rusicsemenov 6 місяців тому

      In my case something like than, but in the react, where we can use useReducer and later can't update state because boolean can't be as fasle

  • @Ahmed-fq3kz
    @Ahmed-fq3kz 6 місяців тому

    Your channel need some playlists to sort your content based on topics
    I need to learn more about ts, but don't know what are you talking about in your videos from the title

  • @tieTYT
    @tieTYT 6 місяців тому

    I feel like I can remember what satisfies does or I can remember what as const does, but I can't retain both at the same time.
    I have a terrible memory, but I think another part of the problem is these keyword names seem arbitrary relative to their behavior. They may as well be a magic number.

    • @snake1625b
      @snake1625b 6 місяців тому

      Satisfies allow you to mutate fields, const you can't mutate

  • @yadusolparterre
    @yadusolparterre 6 місяців тому

    Yeah I still don't get it 😕

  • @perfectomprg
    @perfectomprg 6 місяців тому

    I don’t use JavaScript and I’m the most satisfied 😅

  • @adamcetinkent
    @adamcetinkent 6 місяців тому

    So much of TS seems to be about wanting autocomplete options. It just seems very... backwards...

  • @dewke17
    @dewke17 6 місяців тому

    How do the “^?” comments work? Is that some sort of vscode extension? I have been looking for it for ages but couldn’t find it.
    Apart from that, nice video!

  • @Voidstroyer
    @Voidstroyer 6 місяців тому +2

    I'm a bit confused though. What is the difference between const config: {wide: string, narrow: number} = {wide: "100px", narrow: 0} and your example using satisfies?

    • @Voidstroyer
      @Voidstroyer 6 місяців тому +1

      For example, you mentioned that satisfies is good for keeping the type annotations narrow, while variable annotation is for keeping it wide, however, that would only apply for objects where the keys are not known beforehand if I understand it correctly. Your example with satisfies seems to already have predetermined keys so why would I use satisfies over my own example, or are they the same in this case?

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      If you have a large config object that you want to make sure is constrained to be a certain type, satisfies is great!

    • @Voidstroyer
      @Voidstroyer 6 місяців тому

      @@mattpocockuk I guess I need to dig in deeper. Satisfies might be better when you are working with an object of which the keys are not known yet and so in that case it might work if you use something like Record. But if you already know the keys and what types they accept, what would the difference be between?:
      1. const config: { a: string, b: string | number } = {a: "example", b: 1}
      2. const config = { a: "example", b: 1 } satisfies Record

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      @@Voidstroyer Good question!
      The difference is one of ergonomics. In your example, every time you add a new key you need to update it in two places - the type and the value. With satisfies, you just update the value and you're good to go.

    • @Voidstroyer
      @Voidstroyer 6 місяців тому

      @@mattpocockuk Oh I see. That's a good point.

  • @WendiCahyono-yf7xc
    @WendiCahyono-yf7xc Місяць тому

    as the name suggests

  • @az8560
    @az8560 6 місяців тому

    Of course I don't understand 'satisfies', it's literally the first time I see it, and only because of youtube recommendations.

  • @s4ndeep1203
    @s4ndeep1203 6 місяців тому

    Thanks for explaining! I’m still confused about the meaning of widening and narrowing though..

  • @pxkqd
    @pxkqd 6 місяців тому

    If this is the only use case, it seems pretty niche to the point of uselessness

    • @jasinrefiku2914
      @jasinrefiku2914 6 місяців тому +1

      Depends, if you've got a configuration as the uploader mentioned, and other developers will add stuff into it (you're not the only one, or even if you're the only one, you wanna limit yourself), you would want to limit stuff into being only of specific types.

    • @danko95bgd
      @danko95bgd 6 місяців тому

      thats basically whole typescript, majority is useless

  • @win_ini
    @win_ini 6 місяців тому

    ... I don't even use typescript; why is this getting recommended to me, alongside _python_ of all languages??

    • @mattpocockuk
      @mattpocockuk  6 місяців тому

      Probably because you're engaging with it?

  • @Bliss467
    @Bliss467 6 місяців тому

    I still don’t really see the point of this. You can get inlay hints on members by not explicitly stating the type as record, too, and I suggest you often do intentionally let typescript determine the type for you.

  • @platonvin1022
    @platonvin1022 6 місяців тому

    i feel like languages that have guides for syntax and it is an actual problem should not exist. Programming should be programming, not spelling, syntax, punctuation or codestyle

  • @diadetediotedio6918
    @diadetediotedio6918 6 місяців тому +1

    Every day I feel more and more that TypeScript is a big workaround and messy language

  • @joshua7884
    @joshua7884 6 місяців тому

    weird , typescript became over-engineer javascript linter

  • @my_area-fenix9482
    @my_area-fenix9482 6 місяців тому

    First

  • @poenaeco
    @poenaeco 6 місяців тому +2

    Yes, because we have a life.

  • @paxdriver
    @paxdriver 6 місяців тому

    Longer is better. Not a fan of these st all tbh

  • @danylo.s
    @danylo.s 6 місяців тому +5

    TypeScript seems bloated. I use like 10% of what I learned about it in your course. We use Angular for our project.

    • @specy_
      @specy_ 6 місяців тому +3

      It isn't bloated, it's really expressive and I use 100% of it, if you think about it, the language itself doesn't add even too much on top of js, but it allows you to express things that no other language can

    • @lohar5055
      @lohar5055 6 місяців тому +1

      Skill issue.

    • @ra2enjoyer708
      @ra2enjoyer708 6 місяців тому +5

      This can be said for any programming language.

    • @SkyyySi
      @SkyyySi 6 місяців тому +8

      A programming language containing features you don't use? Wow, it's almost as if the world doesn't center around you and programming languages are made for many different people.

    • @anhdunghisinh
      @anhdunghisinh 6 місяців тому +4

      Your statement only true with application project. For libraries and utils in which needs lots of generics and advance typed stuff, all those features you deemed unnecessary are very very needed.

  • @aztecsalvador
    @aztecsalvador 29 днів тому

    Fuq typescript!!