Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 23, 2012 02:46 pm

Opinion Column: The Road To Reusable HTML Components


A few weeks ago, I dug up an old article that I wrote for Smashing Magazine, When One Word Is More Meaningful Than a Thousand. While I stand firmly behind all of the HTML development principles I listed back then, the article lacked one important thing: hands-on examples.

Sure enough, the theory behind component-based HTML is interesting in its own right, but without a few illustrative examples, its all very dry and abstract. Not that HTML enthusiasts should shy away from that (on the contrary, I would say), but theres nothing like a good example to clear up some of the finer points of a concept.

So, thats what Ive set out to do in this article. In the previous one, I sampled a couple of common content types (such as products, stories and videos) across different websites. Now Ill stick to four different views of a single content type: the story (or news article). Its a pretty simple and straightforward content type that most people know and have developed at some point in their career. For some real-world inspiration, Ill refer to the Boston Globe website (a front-end favorite of mine).

One important disclaimer before we get started. This article isnt so much about the resulting HTML as it is about the methodology of writing HTML. Your opinion on the class names, structures and source order that I suggest along the way may differ, but thats not what the article is really about (although Im not saying it wouldnt yield some interesting discussion).

The Difference Between This And Other Popular Component-Based Methodologies

Component-based HTML development isnt exactly new. A couple of months ago, Smashing Magazine has run articles on BEM, OOCSS and SMACSS. While I dont have enough information to judge BEM, the other two methodologies are clearly opposed to what I am going to propose here.

Methodologies such as OOCSS and SMACCS were born out of frustration with CSS, but these methodologies try to ease CSS development by altering the HTML code. I think this is definitely not the way to go (and if you check the original presentation by Nicole Sullivan, youll find that she proposes an early version of mixins as a better alternative). Writing HTML is about so much more than making sure the CSS has the hooks it needs for you to implement the design; so, coming at it from a CSS angle can only diminish the overall quality of the HTML you write. The problem is not limited to providing the right hooks for CSS and JavaScript; the true challenge is to make sure that every element across a website is identifiable. If you can accomplish that, then youve got CSS, JavaScript and whatever other script technology youre using covered without having to worry about the projects specifics.

The methodology I will demonstrate below was conceived with reusability and robustness in mind. It is largely independent of project-specific requirements and remains as close as possible to the purity that HTML development deserves, resulting in individual HTML snippets that are as versatile as they are reusable.

Step 1: Gather All Views And Instances Of A Single Component

Lets take this one step at a time. First of all, we need to state the requirements of our content type. To do that, we would normally run through all of the wireframes of a project, listing and grouping all of the different instances and views of each content type. To keep our example as clear and simple as possible, though, Ive hand-picked four representative views that Ive encountered on the Boston Globe website.

Boston News

I peeked quickly behind the curtains and found the following hooks in the HTML code:

  1. Shortlist view: .in-section ul li
  2. Thumb view: .feat-thumb
  3. Summary view: div.story
  4. Detail view: div.article (or no root at all)

To be honest, I find this quite messy. If for some reason you wanted to single out all stories on your page or website (whether for CSS, JavaScript, analytics or another reason), you would have to work around quite a few ambiguities. Surely, we can do a better job.

Step 2: Define The Root

<article class="story">   </article>

There! That wasnt too difficult now, was it? We picked the article element and hooked a single class name to it, which well use as a base indicator for all stories. This way, we make sure that we can target all story instances using a single fixed identifier. As you can see from the Boston Globe examples, though, each view requires unique styling. Relying solely on the context of our story instances is far from flexible, so lets introduce a specifying class for each view:

  1. Shortlist view: .story.shortlist
  2. Thumb view: .story.thumb
  3. Summary view: .story.summary
  4. Detail view: .story.detail

The reason for adding specifying classes to the root element itself (rather than, for example, to a list surrounding it) is flexibility. If tomorrow you are asked to build a composite list that holds both summary and shortlist views of the story component, you want to be able to do that without breaking a sweat.

Step 3: Defining The Logical Units Inside

With that out of the way, its time to look at whats inside each story component. Rather than writing the HTML for each separate view, well start by going through all of the different views, listing all of the elements (i.e. logical units) that we find inside. For each element, well define the HTML. Mind that these logical units could probably reappear in a different context and that they are usually components by themselves, so chances are high that youve already written HTML snippets for them elsewhere in your project.

Heading

Theres always a heading. The heading summarizes all of the content that follows, so its one of the most essential parts of your content type (apart from the content itself, of course). All of the views listed above contain a heading, but even if you come across a view that doesnt visually display a heading, put it in the HTML code anyway and hide it with CSS if necessary. This way, you will always enter your content type knowing what its going to be about. As for the actual code, thats pretty straightforward:

<h1>news heading</h1>

Thumbnail

The second thing we see is a thumbnail image. Thumbnail images arent quite a part of the actual content, although in some cases a thumbnail is little more than a (browser-)resized version of the first image within the story content. It doesnt have to be, though, because a thumbnail functions mainly as a visual cue that attracts the visitors attention to the story. In some cases, it isnt even featured at all in the story itself, so lets consider it a standalone item.

Again, the code is pretty simple. Weve just added a wrapper around the img element so that we can easily add a caption if needed.

<div class="image thumb"><img src="" alt="" /></div>

Meta Data

Most content types feature meta data. Meta data isnt truly a part of the content itself, but it tells you something extra about the content embedded within the content type. In the views above, we find several types of meta data: author, publication date, section indicator and a first published in [resource] line.

Coming up with the markup for meta data is a little trickier. If you follow the HTML5 specficiation to the letter, then you are supposed to use a definition list. Meta data is nothing more than a list of label-value pairs, which is exactly what the specifications authors had in mind when they expanded the semantic range of the HTML5 definition list. But because the markup for definition lists is still missing a wrapper for list items, its not very robust, and in many cases styling it proves to be a real hassle (if not impossible). You could invalidate your code by wrapping a div around each dd-dt pair (so that you still enjoy the semantic benefits of the element), but I usually prefer to keep my code valid, sacrificing some tag semantics in the process.

<div class="meta">    <div class="author">        <span class="dt">label:</span><span class="dd">value</span>    </div>    <div class="publishDate">        <span class="dt">label:</span><span class="dd">value</span>    </div>    <div class="section">        <span class="dt">label:</span><span class="dd">value</span>    </div>    <div class="publishedIn">        <span class="dt">label:</span><span class="dd">value</span>    </div></div>

Abstract

An abstract is a short summary of or introduction to your content type. In some cases, but not always, it is identical to the actual introductory text. If the abstract is identical to the introductory text, then you could consider it a part of the actual content; if its tailored copy, then it should be marked up separately.

As for the HTML, you could use a paragraph tag with a class attached to it, but then youd limit abstracts to a single paragraph. Looking at the Boston Globe example, its fine, but if we want our code to be portable across projects, then keeping our options open is probably best. This results in the following HTML code:

<div class="abstract">    <p>  </p></div>

Action Links

In the detail view of the story, we see a list of actions related to the story itself. Typically, lists such as these include print and mail actions and, of course, the token social sharing options. Instead on relying on source order or numbered classes, well give each link a unique class so that we can play around with it if needed.

<div class="actions">   <ul>      <li class="recommend"></li>            <li class="print"></li>   </ul></div>

Youll notice that the action list is placed above the content, making it a likely candidate to be put inside a header element. While Ill stick to that as a concession to the design, the links actually belong in the footer element of your content type. These are actions that become relevant once you know the context. You wouldnt (or at least shouldnt) share an article based merely on the title; knowing the content is crucial to deciding on your action. Adventurous CSSers could leave room in the header and then position the list from within the footer, but that would make the CSS implementation more fragile.

Actual Content

Finally, we get to the crux of the matter, the story itself. Whats actually inside a story often depends on the freedom youve given to your content editors. Either youve given them a fixed set of templates to work with, or youve just dropped a WYSIWYG editor into the CMS and hoped for the best. One thing you need to do, though, is contain the content section, if only as a warning that what follows may be user content.

<div class="content">    </div>

Related Stories

Finally, we find a shortlist of related stories. The most important thing to recognize here is that example one is exactly the same view as the list of related stories that were trying to make, so theres really no reason to differentiate the HTML code between the two instances.

<section class="storyList">    <div class="main">      <article class="story">  </article>    </div></section>

Step 4: Defining Structural Containers

The elements listed above have not only a logical sequence of elements, but also a logical hierarchical structure. Some elements precede the content itself and should be placed separate from the main content. Some elements are afterthoughts or additional information and should be placed after the actual content. To do this, we set up a typical header-main-footer structure.

<article class="story">   <header>  </header>   <div class="main">  </div>   <footer>  </footer><article>

The main wrapper might not look absolutely necessary at first glance, but because it is a logical unit, it deserves a container of its own.

Step 5: Throw Everything Together

Now that all of the HTML snippets are ready, it is time to throw everything together, creating one master component.

<article class="story">   <header>      <h1>story heading</h1>      <div class="image thumb"><img src="" alt="" /></div>      <div class="meta">         <div class="author">            <span class="dt">label:</span><span class="dd">value</span>         </div>         <div class="publishDate">            <span class="dt">label:</span><span class="dd">value</span>         </div>         <div class="section">            <span class="dt">label:</span><span class="dd">value</span>         </div>         <div class="publishedIn">            <span class="dt">label:</span><span class="dd">value</span>         </div>      </div>      <div class="abstract">         <p>  </p>      </div>      <div class="actions">         <ul>            <li class="recommend"></li>                        <li class="print"></li>         </ul>      </div>   </header>   <div class="main">      <div class="content">  </div>      <aside>         <section class="storyList">            <div class="main">               <article class="story"></article>            </div>         </section>      </aside>   </div>   <footer> (used for read more links, links to comment section, etc.) </footer><article>

Step 6: Adding Microdata

Even though the HTML code is now flexible and descriptive enough for other scripts to extract or pinpoint whatever structure they need, our component still misses a common vocabulary. Sure enough, weve added a .story class to the root element, but what about using .news, .article or .newsItem? Theyre still not very semantic. Well, HTML5 provides us with microdata, a part of the HTML5 specification, which allows us to add a global vocabulary to our HTML code. You can make your own vocabulary if you wish, but if you check a website such as Schema.org youll see that plenty are already available for the most common objects. As a bonus, search engines such as Google, Yahoo and Bing support microdata already.

The itemscope property should be placed in the root element, together with the itemtype (which specifies a URL for the vocabulary — in this case, the Schema.org website). After that, its just a matter of running through the available vocabulary properties and adding them to your code using itemprop. This will give us the following HTML component:

<article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">   <meta content="en" itemprop="inLanguage" />   <header>      <h1 itemprop="headline">story heading</h1>      <div class="image thumb"><img src="" alt="" itemprop="image"/></div>      <div class="meta">         <div class="author">            <span class="dt">label:</span><span class="dd" itemprop="author">value</span>         </div>         <div class="publishDate">            <span class="dt">label:</span><span class="dd" itemprop="datePublished">value</span>         </div>         <div class="section">            <span class="dt">label:</span><span class="dd" itemprop="articleSection">value</span>         </div>         <div class="publishedIn">            <span class="dt">label:</span><span class="dd">value</span>         </div>      </div>      <div class="abstract" itemprop="description">         <p>  </p>      </div>      <div class="actions">         <ul>            <li class="recommend"></li>                        <li class="print"></li>         </ul>      </div>   </header>   <div class="main">      <div class="content" itemprop="articleBody">  </div>      <aside>         <section class="storyList">            <div class="main">               <article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle"></article>            </div>         </section>      </aside>   </div>   <footer> (used for read more links, links to comment section, etc.) </footer><article>

Step 7: And Finally

Now that we have our master component, all thats left to do is check each view and remove the elements from the master component that are not needed. If this results in any leftover (= empty) structural wrappers, well remove them, too. This will give us the following snippets:

Shortlist View

<article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">   <meta content="en" itemprop="inLanguage" />   <header>      <h1 itemprop="headline">story heading</h1>   </header><article>

Thumb view

<article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">   <meta content="en" itemprop="inLanguage" />   <header>      <h1 itemprop="headline">story heading</h1>      <div class="image thumb"><img src="" alt="" itemprop="image"/></div>      <div class="meta">         <div class="section">            <span class="dt">label:</span><span class="dd" itemprop="articleSection">value</span>         </div>      </div>   </header><article>

Summary view

<article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">   <meta content="en" itemprop="inLanguage" />   <header>      <h1 itemprop="headline">story heading</h1>      <div class="image thumb"><img src="" alt="" itemprop="image"/></div>      <div class="meta">         <div class="author">            <span class="dt">label:</span><span class="dd" itemprop="author">value</span>         </div>      </div>      <div class="abstract" itemprop="description">         <p>  </p>      </div>   </header>   <div class="main">      <aside>         <section class="storyList">            <div class="main">               <article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle"></article>            </div>         </section>      </aside>   </div><article>

Detail view

<article class="story" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">   <meta content="en" itemprop="inLanguage" />   <header>      <h1 itemprop="headline">story heading</h1>      <div class="meta">         <div class="author">            <span class="dt">label:</span><span class="dd" itemprop="author">value</span>         </div>         <div class="publishDate">            <span class="dt">label:</span><span class="dd" itemprop="datePublished">value</span>         </div>         <div class="section">            <span class="dt">label:</span><span class="dd" itemprop="articleSection">value</span>         </div>         <div class="publishedIn">            <span class="dt">label:</span><span class="dd">value</span>         </div>      </div>      <div class="actions">         <ul>            <li class="recommend"></li>                        <li class="print"></li>         </ul>      </div>   </header>   <div class="main">      <div class="content" itemprop="articleBody"></div>   </div><article>

Reusable HTML Components Make Sense

If you look closely at the core principles of HTML, you will see that HTML leaves little room for variation. The HTML code we write is supposed to describe our content as clearly as possible, independent of the styling; so, there is really no reason to make different structural versions of a single component that appears in different contexts, pages or even projects. A news article is a news article, and while the inner particles may vary, the core structure, tag selection and naming conventions need not be tampered with. Of course, there is still room to accommodate the authors personality, including minor personal preferences, certain ideologies and overall experience, but one author should ideally stick to a single structure for a single component.

Component-based HTML also has important practical advantages. Of course, the news article above is just one simple example, but you could do the same for all of the components that you use across projects. This might seem like a lot of work at first, but youll need to do it only once; after that, you can spend the time that youve saved on the dumb monkey work of fine-tuning your library. When I write the HTML for a new website these days, about 80 to 85% of the components are out of the box; the remaining 15 to 20% consist of small changes for project-specific requirements and new components (which might get added to my core library later on). This speeds up HTML development dramatically.

Its also a tremendous advantage for people who prefer to design in the browser. One of the biggest drawbacks of designing in the browser is that the HTML is usually the least of your worries. You might intend to clean it up later, but if youre honest with yourself, then you know that the probability that youll take the time to perfect an aspect of your work thats mostly invisible to the client anyway is quite low. By using your own library of components, you wont need to worry about the HTML anymore. If you need a certain component, you can just pluck it out of the box, knowing that youre getting quality HTML from the start, and leaving you to focus on the design and CSS.

The most important advantage of component-based HTML is the quality of service you will be providing to your clients. Rather than delivering project-specific (i.e. styled) templates, you can offer them a solid HTML and component framework. This way, you give clients the option to deploy these components across multiple websites. Again, this will greatly speed up HTML development (and back-end implementation) in future projects — projects that can now start as soon as the wireframes are finished, rather than once the graphical designs are done. You could even go so far as to wireframe using your HTML components (with a white-label CSS attached to them). The possibilities seem endless. At the same time, this methodology will introduce an unprecedented level of consistency and predictability in code across all of the clients websites, two things that are often lacking these days.

The Future Of HTML

The way I see it, reusable, component-based HTML is definitely the way forward, and its about time we take this next step in HTML development. Just start from the components that youve already built, make yourself a snippet library, and go from there. Of course, some level of customization will always be needed, but Im confident that the HTML snippet above can handle 90% of all story content types that youll find on the Web. The meta data may differ a little sometimes, and certain visualizations might require you to change the source order, but the basics are there to create whatever you need in less than five minutes. This is about applying the DRY principle (dont repeat yourself) not just within a single project, but across multiple websites and even multiple clients.

In the end, methodologies such as OOCSS and SMACSS will only work against this ideal, because they are rooted in visual styling that prohobits the proper reuse of components across different websites. Not only that, but they will slow down the development cycle because the design becomes just another dependency. For now, this means youll have to rely on CSS preprocessors if you want maintainable CSS, but in the long run, well benefit greatly from adapting the methodology described above. Im interested in hearing your thoughts on this.

Image source of picture on front page.

(al)


Niels Matthijs for Smashing Magazine, 2012.


Original Link:

Share this article:    Share on Facebook
No Article Link

Smashing Magazine

Smashing Magazine delivers useful and innovative information to Web designers and developers.

More About this Source Visit Smashing Magazine