Designing with Dynamic Content

A lot of visual designers I’ve worked with have convinced themselves every user’s name is “Sara” without an “h”.

For most of my career I’ve had to battle designers creating incredibly unrealistic best-case scenario mock-ups. You know what I’m talking about. The user’s name is “Sara Smith” and always fits neatly on one line. Her profile picture looks like it was clipped out of a magazine. Her profile is completely filled out. The two columns of her profile content magically are exactly the same height.

Of course these best-case scenarios rarely, if ever, occur in the real world.

In order to create more robust and resilient designs, we need to concurrently account for the best situations, the worst, and everything in between.

Accounting for Variation

What if the user doesn’t upload a profile picture? What if the user has 87 items in their cart? What if the product has 14 options? What if the blog post title contains 40 characters? What if it has 400 characters instead? Return user? First-time user? What if this article doesn’t contain an image? What if we need to display an urgent message?

These “what if” questions are important to ask throughout the entire design process. Historically though, these questions often only get brought up late in the game after wireframes and comps have been approved and are in the process of being implemented. This is both a process and a tool issue.

I’ve seen these issues repeatedly come up when teams don’t treat development as an essential part of the design process. Because developers live through the nightmare of having to fill in the gaps themselves, they’re typically pretty good at asking those “what if” questions. Treating developers as equal members of the design team can prevent those antagonistic relationships–the ones where developers scold designers for creating unrealistic things and where designers argue with developers for being difficult and incompetent. I hope you don’t know what I’m talking about here, but you probably do.

Processes is one issue, but our current crop of design tools are often poorly equipped to deal with dynamic content. Static tools like Photoshop paint a pretty picture, but trying to create a ton of variations incurs a tremendous amount of work. And while I’ve seen clever people do interesting dynamic things with static wireframing tools, they ultimately just add more pages to a PDF that will ultimately be discarded. Ok then, so into the browser we go. Wireframing in the browser can give us a more realistic idea of the Web environment, but it doesn’t intrinsically solve the dynamic content issue. So how do we solve that?

Dynamic Design with Pattern Lab

Pattern Lab gives web designers some great tools to account for and manage dynamic content. Dave Olsen implemented some fantastic features that allows designers to quickly address a lot of those “what if” questions.

Separating Structure and Data

Pattern Lab uses Mustache to separate data from the HTML structure (quick side note: Pattern Lab will soon be rolling out an update that allows you to use whatever templating language you prefer. Three cheers for Dave!). So for example, we can take a look at a media object-ish molecule like this:

Media Object Placeholder

Under the hood, this pattern looks like this:

All the stuff contained in the double brackets {{}} is Mustache code, which will be replaced with dynamic data. The default data for this stuff lives in a JSON file called data.json in Pattern Lab. So here’s what that JSON looks like:

So far this is pretty basic and is typical of any templating solution, but Pattern Lab does a few other things to take things to the next level.

Overriding default data

With atomic design, there’s a distinct difference between templates and pages. Templates deal with the underlying content structure (markup, character lengths, image sizes and formats, etc), while pages are specific instances of those templates. At the page level, real representative content replaces the default placeholder content and is also where variations of a template are expressed.

Templates focus on content structure, while pages pour in real representative content

So now we can take our media-object pattern, include it on our homepage, and use page-specific data to override the default data. The result looks like this:

Media Block with sample content

In order to accomplish this, we’ll want to include our pattern in the homepage template and give it a name:

Now we can create a homepage.json file at the page level and override the default data for the include we’ve named “person”:

We now have real representative content in place, which allows us to test the resiliency of the underlying design system. Let’s say there’s another place on the homepage that includes an organism containing a whole list of these media object molecules. We can now loop over a JSON array to feed the appropriate data into the pattern, resulting in something like this:

People list organism

Setting things up in this way keeps your code nice and DRY because we’re able to edit the underlying pattern’s structure and have those changes propagate to wherever it’s included in the design system.

Taking it Further with Pseudo-Patterns

Dave also created a way to extend dynamic data even further with pseudo-patterns. Pseudo-patterns are JSON files that inherit the parent page’s data and append additional data that can modify or extend existing data.

So let’s say our homepage needs to provide a way for administrators to remove people from the list. We can create a pseudo-pattern called homepage~admin.json and make a small tweak to override our default data:

Setting this value to true might append a class to the body, include another pattern, or even dramatically alter the interface. It’s up to you how to set up your templates. Maybe we want to include big red X buttons to remove people from the list:

organism-admin

Pseudo-patterns are a fantastic way to answer those “what if” questions by testing variations of a single template. What if we included a different hero image? What if we featured 20 stories instead of 10? What if the user has edit rights? What if this carousel wasn’t there? By tweaking a couple lines of JSON we’re able to quickly demonstrate all sorts of design scenarios, which leads to more thoughtful, robust, resilient design systems.

Dynamic Design Is Awesome

The Web is dynamic, so it’s essential for us to design with these important “what if” questions in mind. We must move away from leaving those questions to the very end of our process if we want to create more thoughtful, realistic, resilient designs.

18 Comments

  1. Benjamin Knight

    Oh man this is spot on. I think we’ve seen a lot of success in style guides in recent years which satisfies the a similar need of “filling in the cracks” and offloads a lot of manual designer decisions to visually savvy front end developers.

    I think the problem you describe also stems from the web being treated like it’s print media when it’s far from anything that static (so many “web” designers come from a print background or education). Remember when “pixel perfect” was considered such a good thing it was often found in the job requirements? (Unfortunately I still see this) Nowadays when I hear that I just want to run into the hills.

    Fundamentally I think you can approach this problem from two directions: 1. Make tools that connect this bridge (well done sir, *claps*), 2. Designers should be coders, and vice versa.

  2. That sort of problem is why I often suggest “surprise lipsum” is useful.

    It’s available as a small dev plugin for prototyping http://welcomebrand.co.uk/thoughts/surprise-lipsum

  3. kev

    Seeing Sarunas’s name made me smile. Didn’t know anyone remembered him.

    • I’m glad you noticed. He was one of my favorite basketball cards back in the day because his name was so freaking long hahahaha.

  4. Tom Grinsted

    Thanks for the intro article Brad. PatternLab has caused me to fist pump and shout out “yes @#$% yes!” a few times in the office recently.

    One question – I’ve come across a few instances where I want to loop over a pattern which has one variable which I need to control. For example in the following case a numerical counter:

    1
    {{ title }}

    2
    {{ title }}

    3
    {{ title }}

    Does json have a trick up its sleeve to handle this?

    • Hey Tom,
      To accomplish what you’re after, you’ll want to create a JSON array and give title a different value in each node. See this example from the post to give you a better idea of what that looks like. Is that what you’re talking about?

  5. Great post Brad!
    Surprise lipsum is a neat thing too James.

  6. Tom Grinsted

    Hi Brad,

    I didn’t explain myself clearly enough and the blog comment html filter seems to have gobbled the markup in my example (Which would have made things clearer).

    I understand using the json array to give title a different value in each node.

    In my case I want to create a ‘Most Popular items’ organism which features numerical ordering (With the most popular item having the number ‘1’ displayed next to the title etc). Like the ‘Most Popular’ widget seen throughout The Guardian.

    eg:

    Most Popular items

    1. Title A
    2. Title B
    3. Title C
    etc

    I want to loop over a JSON array to feed the data into the title pattern BUT I want the numbers 1,2,3 output in order.

    So yeah I want the loop for the title but not for the numbers.

    Cake and eat it too?

  7. @Tom, you could use an and set list-style to numerical. That way you get the numbers in the right order no matter what, instead of relying on JSON to output it correctly. (If I understand your problem correctly)

  8. The HTML got eaten in my last comment…

    @Tom, you could use an ordered list and set list-style to numerical. That way you get the numbers in the right order no matter what, instead of relying on JSON to output it correctly. (If I understand your problem correctly)

  9. I love the idea of pattern lab, because it makes one able to create more variable mockup content.

    But isn’t this also a case for a content first approach? Is it really impossible to create examples like this with real content? If not, this approach is wonderful. I’ll definately give it a shot, first chance I get. But if so, I’ll always try to use real content in my designs, wireframes and prototypes.

  10. Wow, that is great Brad! Thanks for writing.

    As a designer/developer it is always annoying to me when I am doing more dev than design and I get handed something pixel perfect to design in a web app or website, that I know will not work in all use-cases. We do need to focus most of our energies on the 90% of users, but we also need to think realistically.

    A good example of not thinking realistically is Facebook’s Paper. Or this Dribbblization of Wikipedia https://dribbble.com/shots/1444377-Wikipedia-Main-page?list=searches&tag=wikipedia&offset=4 – they are working with amazing photos which we know almost no one will upload photos that good! Far better to start with real-life content and design out from there.

    So yes, I do love amazing design and beautiful Dribbble shots as much as the next guy, but sometimes real-life and usable end up being a little different than pixel-perfect amazing photoshop beauty.

  11. This is superb, Brad.

    I know exactly what you’re describing as I have experienced it at most agencies where I have worked and, unfortunately, it creates many problems further down the line when the client returns with complaints and asks for changes upon changes to their website FREE OF CHARGE!

    Nightmare that can, as shown in your post, be avoided.

  12. Nathan

    I’ve been using static generators for all my html markup. I’d suggest taking a look at Assemble at assemble.io since it has a similar syntax as mentioned above. It also has the ability to process data so you can loop through data that is in yaml or json files.

  13. Rob Brole

    Superb post Brad, It is just a shame that most people dont agree that if you are designing a website. Dynamic Content is a must.

  14. Love the thought process behind this, designing for the imperfect situations that are bound to happen with user bound content.

  15. Thanks for this article Brad, you resonate part of my attitude 🙂 Pattern lab looks very interesting, worth a try…

Comments are closed for this post. If you've got something to add, feel free to reach out on Twitter.