Can you build a web app with vanilla Web Components in 2024?!?

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

ความคิดเห็น • 89

  • @RedBlade3
    @RedBlade3 7 หลายเดือนก่อน +2

    Web components are growing on me, these last few tutorials are a really great intro to them.
    Your teaching style is great!
    I also like that you take accessibility into consideration as well as documenting your code!
    Thank you for your videos, I'm seriously considering subscribing to your courses.

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      Thanks for the kind words, and glad you're enjoying the videos!

  • @IainSimmons
    @IainSimmons 7 หลายเดือนก่อน +11

    Great video, it's awesome to see it all come together, and in a very approachable way.
    This is the kind of thing we should be teaching new devs instead of throwing them into React bootcamps.
    Looking forward to the rest of this series!

  • @CarCinCal
    @CarCinCal หลายเดือนก่อน

    I love how your tutorials always include accessibility considerations 👏🏽 👏🏽 👏🏽

    • @gomakethings
      @gomakethings  29 วันที่ผ่านมา

      Glad to hear that!

  • @stacherski
    @stacherski 7 หลายเดือนก่อน

    Man, this is brilliant! Just what I’ve been looking for! Keep up!

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      Delighted to hear it! Thanks!

  • @CristianKirk
    @CristianKirk 7 หลายเดือนก่อน +4

    Hello there, I just discovered your channel in twitter because of your critique of HTMX. I'm kind of a web developer that only likes to use pure (I hate the term vanilla) html+css+js for the frontend and uses PHP for the backend (because that's what they use at my workplace, I'm actually okay with it). For several years now I haven't been able to "connect" with js frameworks, partially maybe due to the fact that I haven't got the need for it. Now, at the beginning of the year, I started working on a project that made me go "okay, this is it, this has to be modern website, with no page reloads, interactive and all of that good stuff, we will have to use a framework." In the middle of that process, I became aware of HTMX, and I just fell in love with it. HTMX allowed me to build the site only using html+css+js and make it as interactive as I needed. I don't see HTMX as a framework at all, I see it as a library that makes ajax requests super easy. So, my question for you is, if you wouldn't use HTMX, then how would you build a modern webapp without a js framework that requires to retrieve data from the server? Thanks in advance!

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +3

      I actually just use PHP, a Web Component, and the fetch() method for that. No library needed.
      gomakethings.com/a-simpler-way-to-build-dynamic-user-interactions/

    • @CristianKirk
      @CristianKirk 7 หลายเดือนก่อน +1

      @@gomakethings thanks a lot, I'm gonna try to explore and learn about this

    • @ba8e
      @ba8e 6 หลายเดือนก่อน

      I highly suggest you look at Svelte. I am EXACTLY like you, absolutely fucking hating React and company... But Svelte saved my life, I almost gave up on programming.

  • @emechem
    @emechem 7 หลายเดือนก่อน

    That was super useful, thanks! 🙏 For self-interested reasons, I'm looking forward to hearing you cover local web storage in future episodes. Thanks again 🙂

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      Glad to hear it! Anything in particular you'd like to learn about local storage? If it doesn't fit into the next video, I'm happy to make a separate one specifically about it.

  • @tomknowlton2426
    @tomknowlton2426 7 หลายเดือนก่อน

    Are you on a Mac? But my real question is...around time index 6:51, what are you using to search for "gmt uuid" -- is that some sort of custom search engine you wrote? Or built into Macs? How did it know what gmt was?
    TIA
    Tom

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +2

      Hi Tom! I am on a Mac, and that's a shortcut I setup in Alfred (a macOS productivity app) that redirects to the search page on my site. It appends a query string to the URL, and my site takes over and does the search from there.

    • @tomknowlton2426
      @tomknowlton2426 7 หลายเดือนก่อน

      @@gomakethings Very cool!

  • @mrsauli
    @mrsauli 7 หลายเดือนก่อน

    Love it Chris.. Great video once again. Only thing I'm wondering about, why not use a more pure this.items array as a data source, instead of going into the DOM and getting the items from there?

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +3

      I didn't really plan this project out. You saw me coding it on-the-fly, thinking through it as I went.
      But even if I planned it, keeping the data in an array means I know have a JS object in memory that I need to keep in-sync with the DOM (and vice-versa). It's much simpler, IMO, to use the DOM as the source of truth.

  • @BenHewart
    @BenHewart 6 หลายเดือนก่อน +2

    I think its great that a youtube channel is finally doing native web components! I love it... and love web components but
    I think I disagree with the shadow dom being an anti pattern and styling is way easier being encapsulated... components are mean't to be self contained so they can be used through out any project without clashes with global code.
    if you want global styling the you simply create a global style sheet and use custom properties ( or css variables )
    Global style sheet:
    :root {
    --bg-blue: ##4187f7;
    }
    component styles:
    background-color: var(bg-blue);
    Another issue mixing light and shadow dom is CLS obviously light dom will load first loading content first and then loads in shadom dom after this causing jumping, as far as I can see its better to stick to the shadom dom or the light not to mix them.... otherwise you will have to constantly reserve space for the shadow dom
    Open if anyone has any other solutions? Still learning all the awesomeness of web components
    thanks and keep up the great work!

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน

      I think this is a symptom of thinking about Web Components as React components rather than their own, unique thing. React has poisoned the web well.
      gomakethings.com/html-web-components/

    • @BenHewart
      @BenHewart 6 หลายเดือนก่อน

      Oh I totally agree that react has ruined the web.... I am massive on core web vitals and have built a web app using only native web components with html CSS and vanilla js.... That scores 100 across the board...
      The problem I found and if you have any suggestions is that if you mix the light Dom and the shadow dom it causes CLS... So the only way was to use web components that are self contained.

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน +2

      @@BenHewart Forgive me, but what does CLS stand for?

    • @BenHewart
      @BenHewart 6 หลายเดือนก่อน

      CLS (Cumulative Layout Shift) measures visual stability in Core Web Vitals. It quantifies how much elements on a page move unexpectedly as it loads. High CLS means a poor user experience, as content shifting can disrupt interactions.
      As the light Dom loads first and then native web components it can make elements jump about as the page loads hence I went for a full shadow dom component to fix this

    • @BenHewart
      @BenHewart 6 หลายเดือนก่อน

      Happy to show you if your interested no pressure 😉

  • @netssrmrz
    @netssrmrz 7 หลายเดือนก่อน +1

    Nice video. 100% agree on shadow dom usage.

    • @pragmasoft
      @pragmasoft 7 หลายเดือนก่อน

      Shadow dom is not all black or white. It very much depends on the functionality of your web components. Web components scope is not limited to only wrapping forms and inputs, even if in majority of cases it is.

    • @netssrmrz
      @netssrmrz 7 หลายเดือนก่อน +1

      @@pragmasoft I've been using Web Components for several years (to build full apps ;) and I agree with "Go Make Things" that shadow DOM functionality is only required in edge cases, for the same reasons he stated. Unfortunately, most tutorials overcomplicate things by appearing to make shadow DOM mandatory.

  • @O_Eduardo
    @O_Eduardo 2 หลายเดือนก่อน

    Great Video!
    From my understanding, web components it's a browser api, it's not a component application abstraction despite the name.
    The problem with web development in front-end today is that: either you need a heavy and difficult framework or you have to write it from scratch like the example in the video.
    I wrote that exacly same app in jails-js. Which is a library that's pretty much closer to "vanilla" development.
    It's about 63 lines of code compared with the video which has 175. The problem with vanilla style is that you have to create everything on your own... but I really believe that there's a space for libraries that can automate that with just 8kb.

    • @gomakethings
      @gomakethings  2 หลายเดือนก่อน +1

      I don't really know how to respond when developers seem to dislike writing code, to be honest.
      That aside: Jails is, frankly, a completely different mental model for building UI. The app like the one I built in this video is probably better suited to state-based UI like Jails, but so much of what ships on the web is not.

    • @O_Eduardo
      @O_Eduardo 2 หลายเดือนก่อน

      @@gomakethings Fair enough

    • @gomakethings
      @gomakethings  2 หลายเดือนก่อน +1

      @@O_Eduardo Sorry, that was a convoluted way of saying, "state-based UI was probably a better choice for this one, but Web Components are still awesome for many use-cases."

  • @patrickojeh
    @patrickojeh 4 หลายเดือนก่อน

    I liked the accessibility bits you had going on

    • @gomakethings
      @gomakethings  4 หลายเดือนก่อน +1

      Thanks! It's far too often an afterthought.

  • @bourge
    @bourge 6 หลายเดือนก่อน

    I ran into problems when i tried to use a vanilla WC in a Next.js. Turns out SSR apps are not to friendly to WCs. Are there any thing we can do to solve this?

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน +1

      I'd need more specifics about the errors you're seeing to answer that.

    • @bourge
      @bourge 6 หลายเดือนก่อน

      @@gomakethings There are flash effects on every page loads. This is only for Nextjs apparently due to the way it handles hydration of the DOM.

    • @gomakethings
      @gomakethings  5 หลายเดือนก่อน +1

      @@bourge I wonder if you're seeing flashes of unstyled content, or if the Web Components are being replaced and re-rendered because of hydration.

    • @bourge
      @bourge 5 หลายเดือนก่อน

      @@gomakethings it is the rerendering during hydration. I heard that a new spec called declarative shadow dom could help. I wish though that NextJs would better support web components.

  • @devOlatunji
    @devOlatunji 7 หลายเดือนก่อน

    Chris is a great programmer. Thanks for sharing

  • @cb73
    @cb73 7 หลายเดือนก่อน +4

    I’m not sure how you can say the shadow dom is an anti-pattern - whatever that means. I would think the reason why most devs reach for web components, myself included, is to make our components usable on other peoples websites, the sites we have zero control over. I work for a company that does personalization and it’s critical that our components look and feel are not at all affected by the host site - and vice versa. I don’t think this is an edge case, it’s the promise web components offer.

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +2

      The Shadow DOM...
      1. Adds additional complexity to the Web Component authoring experience.
      2. Can introduce accessibility issues.
      3. Makes components much harder to style.
      4. Prevents the component from taking advantage of global styles.
      5. Is often a solution in search of a problem.
      6. Tries to let WC's do things "the React way," but React does those things better.

    • @netssrmrz
      @netssrmrz 7 หลายเดือนก่อน +1

      I agree with GoMakeThings. I've worked on several WC projects at various companies including building component libraries and 90% of the time we've needed to deliver highly customisable components. From my experience Shadow DOM feels like an edge case. Anyway, once you have "open" components its trivial to wrap them in a closed Shadow DOM version.

    • @cb73
      @cb73 6 หลายเดือนก่อน +2

      The very first paragraph on the web components documentation page immediately highlights encapsulation as its primary feature. I think you’re just trying to sound controversial by calling it an anti-pattern. It’s fine if you don’t prefer to use it that way but please don’t tell your audience they are doing it wrong. Do they make things more complex? Maybe but compared to what? Not all complexity is bad. It depends on the context.

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน +2

      @@cb73 Nope. I've built a LOT of Web Components. The benefits of the Shadow DOM, in my experience, are grossly outweighed by its many disadvantages.
      Isn't it strange how Web Components have been around for years, but only really started taking off once a bunch of folks started saying, "Hey, you don't actually need the Shadow DOM"?

  • @rupen42
    @rupen42 7 หลายเดือนก่อน +4

    I'd love to watch this but I can't look at a white screen for 30 minutes

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      Sorry about that! I use a white background for my videos because it has better contrast and is thus a better choice for folks with certain vision issues. I do recognize the white can be intense, though.

    • @d.o.nmuzic3802
      @d.o.nmuzic3802 7 หลายเดือนก่อน +1

      😂 100%!

  • @FlorianSchommertz
    @FlorianSchommertz 6 หลายเดือนก่อน

    Am I correct that not using shadow DOM forces you to run the script after the DOM has loaded?

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน

      No, that's just how DOM manipulation works in general. It's not specific to the shadow DOM (or lack thereof).
      If you target elements that don't exist yet, you'll get errors.

  • @0Orion
    @0Orion 7 หลายเดือนก่อน

    This is great. As much as I dislike the massive boiler plate, large file sizes, complexity etc, from old Redux and React. The complaints about React gets tiring after a while. It's great to see this hands-on video showing how to get things done.

  • @k16e
    @k16e 7 หลายเดือนก่อน

    Can you define all your custom elements in one file and then import them into whatever file they may be used?... Or really in the context of web components, just define all logic for a "component"/custom element in its own one file?

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      Yes, but the the customElements.define() method doesn't return anything, so you'd probably want to wrap it in a function so that you have something to export with your ES Module.
      function PickAtRandom () {
      customElements.define(...);
      }
      export {PickAtRandom};

  • @aniltheblogger
    @aniltheblogger 7 หลายเดือนก่อน

    what about lit framework?

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      I don't like it, personally: gomakethings.com/what-about-lit-for-web-components/

  • @sanderlissenburg1608
    @sanderlissenburg1608 7 หลายเดือนก่อน

    It's better to use the connectedCallback instead of the constructor. I ran into an issue that the javascript was loaded before the dom was loaded/ready. This is because I load the javascript in the head instead of the bottom of the page. I know I know I should change that. Either way I think using the connectedCallback is still better.

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +1

      "Better" isn't the word you're looking for. "Can prevent issues in certain contexts."
      The problem you're describing can still happen even when using connectedCallback. There are a bunch of strategies to fix it.
      But in your case, DOM scripts should be loaded in the footer or use async/defer or be wrapped in a DOMContentLoaded event. What you're describing would happen if you were using plain old DOM manipulation methods, too.
      More on all of that here: gomakethings.com/the-different-ways-to-instantiate-a-web-component/

    • @sanderlissenburg1608
      @sanderlissenburg1608 7 หลายเดือนก่อน

      Thnx for the reply and extra info!

  • @pragmasoft
    @pragmasoft 7 หลายเดือนก่อน +23

    Frankly, I'm disappointed. This video shows how to build a web component (not even reuseable), of which there is a ton of on YT, instead of telling what its title promises - how to build a full web app, which is a lot more than building simple web component. Under a web app I expected to see a composition of components, routing, state management, client to server interaction, caching, auth, packaging, building, publishing, deployment, version updates, and so on.

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +10

      That’s not a YT video. That’s a whole course. 😂

    • @netssrmrz
      @netssrmrz 7 หลายเดือนก่อน +1

      I agree the video title is not accurate but most of what you want is beyond the scope of the Web Components API and are handled by other APIs.

    • @pragmasoft
      @pragmasoft 7 หลายเดือนก่อน

      @@netssrmrz Yes that was my point about the title. So we may then conclude the answer on question in title is "no" ;) ? Basically it depends on what we assume are vanilla web components. Web components without any dependencies except web components api? Without dependencies on 3rd party web components?

    • @netssrmrz
      @netssrmrz 7 หลายเดือนก่อน

      @@pragmasoft the definition of Web Components is quite strict, as defined by the standard. in any case, if you feel you cant build a full app without resorting to third party libraries or dependencies, then as you state, the answer for you is "no".

  • @ClubMedia
    @ClubMedia 3 วันที่ผ่านมา

    شكراً لك💐

  • @nuvotion-live
    @nuvotion-live หลายเดือนก่อน

    Answer: yes but it won’t be SEO friendly unless you somehow manage to server side render them. Also have fun dealing with CLS

    • @gomakethings
      @gomakethings  หลายเดือนก่อน

      It won't be any more or less SEO friendly than your typical React app (most of which are NOT server rendered, either).
      And depending on your approach to Web Components, it could actually be more SEO friendly.
      Thank you, next.

  • @k16e
    @k16e 7 หลายเดือนก่อน +1

    This line `this.form.addEventListener('submit', this)` is like magic and just like magic it just magically picks up the `handleEvent()` function defined down there? So I must be missing some knowledge

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน +2

      I wrote about it and how it works here: gomakethings.com/the-handleevent-method-is-the-absolute-best-way-to-handle-events-in-web-components/

  • @MDABDULMOMINRiyadh
    @MDABDULMOMINRiyadh 5 หลายเดือนก่อน

    Love It!

  • @tubeta028
    @tubeta028 6 หลายเดือนก่อน

    I like this, good video thanks

  • @jsega-di6lu
    @jsega-di6lu 7 หลายเดือนก่อน

    Great, thanks.

  • @CyberTechBits
    @CyberTechBits 7 หลายเดือนก่อน

    Nice!

  • @etherweb6796
    @etherweb6796 6 หลายเดือนก่อน

    The answer is yes

  • @muhaimincs
    @muhaimincs 7 หลายเดือนก่อน

    How do you organize the code? How do you load the data? How to handle racing condition? How do you handle state of components without shadow dom? How about you just rephrase this YT video title?

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      1. I addressed state directly in this video already.
      2. As I mentioned IN THE VIDEO, there's a part two coming that will cover loading the data.
      3. There's no race conditions to worry about in this simple app.
      4. This isn't a video about organizing code.
      5. How about I just leave the title as is.

  • @HeribertSchuetz
    @HeribertSchuetz 7 หลายเดือนก่อน

    Are you planning to use the shuffled array for further functionality? Currently it feels like overkill. It should suffice to just use a random index to pick an item. The `shuffle` method could be removed and the body of the `onclick` method would just become
    let items = this.list.querySelectorAll('li');
    let item = items[Math.floor(Math.random() * items.length)];
    this.result.textContent = `You picked ${item.textContent}`;

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      I could do that, yea. Historically, `Math.random()` has provided a less uniformly random shuffle than the Fisher-Yates algorithm. I'm not worried about the 473 extra bytes, personally.

    • @HeribertSchuetz
      @HeribertSchuetz 7 หลายเดือนก่อน

      @@gomakethings I wasn't worried about the extra bytes, at least not primarily. Sometimes 20%+ extra code might well be worthwhile if the code becomes more readable. But my impression was that the added complexity makes the code harder to read for people who will have to maintain it or, in this particular case, for your audience.
      And regarding Fisher-Yates: It may well be true that Fisher-Yates is better than other shuffling methods. But here no shuffling is needed. (And BTW, the shuffle method uses Math.random() as well.)
      Finally, please don't get me wrong if I appear to be nit-picking. I like your videos and I just wanted to help improving. (Unfortunately youtube has no versioning support...)

    • @gomakethings
      @gomakethings  7 หลายเดือนก่อน

      @@HeribertSchuetz I took this as a kindly discussion among peers, so no worries at all! I agree about making the code harder to read.

  • @ba8e
    @ba8e 6 หลายเดือนก่อน

    Why shuffle the array when you can just get a random index? array[Math.floor(Math.random() * array.length)]

    • @gomakethings
      @gomakethings  6 หลายเดือนก่อน

      Historically, the Fisher-Yates shuffle produced more random results than a simple Math.random(), which tends to skew towards the middle over time.
      MDN used to have details about this on their site, but they're not longer there.