• virku@lemmy.world
    link
    fedilink
    English
    arrow-up
    39
    ·
    edit-2
    17 hours ago

    As a backend developer this could equally be real front end stuff or satire to take the piss out of it. To me the entire DOM stuff is as understandable as magical lore anyway.

      • virku@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        11 hours ago

        It wasn’t meant as shitting on front end. I love a good gui. I just don’t understand half of the things you guys work with.

        I work mostly with business logic. Integtations, APIs and process automation etc. GUI stuff is quite far from my day to day so I don’t have any incentives to learn at work either.

        • Strawberry@lemmy.blahaj.zone
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 hours ago

          I know, I wasn’t being sarcastic or anything. Many times when frontend comes up in online spaces, the comments are flooded with people shitting on frontend out of ignorance. You didn’t do that, and it was refreshing.

    • DarkenLM@kbin.earth
      link
      fedilink
      arrow-up
      14
      ·
      16 hours ago

      Shadow DOM trees are very real, and I feel like a Wizard trying to decrypt ancient runes every time I have to deal with them, so you’re not far off.

        • Ephera@lemmy.ml
          link
          fedilink
          English
          arrow-up
          8
          ·
          9 hours ago

          The browser has an internal model for representing the HTML document, called the Document Object Model (DOM). This DOM happens to be tree-shaped, because HTML is tree-shaped. And certain logic in a browser gets applied to subtrees, like e.g. most CSS rules.

          Sometimes, however, you want a subtree to not get affected by what’s going on in the main tree, for example when including an SVG into that tree, or if you’re offering JavaScript library with a pre-built component.
          And yeah, that is what the Shadow DOM does. It also shields the rest of the DOM from what you’re doing inside the Shadow DOM. And there’s certain mechanisms to selectively allow interaction across the shadow boundary, e.g. when providing a pre-built component, you might still want the user to be able to style parts of it.

        • ayyy@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 hours ago

          If you’ve ever built a backend MVC style (Model, View, Controller) it’s very similar but for web documents instead of remote procedure calls.

        • virku@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          6 hours ago

          I think the other comment was an excellent explanation of what the DOM is for somebody with a little bit of computer science experience at least.

          But front end vs back end development explained like youre five:

          • a front end developer makes what you can see when you use some software (the term is mostly used when talking about web development, but almost all business software is websites today). So they know how to place buttons in the right place, how to make it look good or move around or what ever you want your website to do. I.E display a form to fill out when you want to check out your shopping basket in a web shop.

          • a back end developer makes the logic that happens behind the scenes and makes it available for the front end. I.E. Pass on the data from the form the user just entered to the orders database.

          • a full stack developer knows how to do both.

          Edit: just realised I misunderstood your question. Keeping the comment though since somebody Else might not know the difference between backend and frontend

          • boonhet@lemm.ee
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 hours ago

            Ah yeah, I’m a backend developer already, I was wondering what the heck a Shadow DOM is (as opposed to a regular DOM which I do understand). Luckily some of the other comments put together give me a decent summary.