Movie Card

The Movie Card component is a more advanced component compared to the ones we've built thus far. Here we will start reusing previously built components by using twig's Include and Embed statements.
By now you should know the drill, inside src/_patterns/01-patterns/ create a new directory (which matches the name of the component), and inside that directory add some files.
Component Data
Inside
nitflex_dev_theme/src/_patterns/01-patterns/
create a new directory called movie-cardInside the movie-card directory create a new file called movie-card.yml.
Inside
movie-card.yml
add the following code:
By looking at the prototype we see that the landing page shows a listing of movies. Given the hierarchy of content we see the page already has a h1 and h2 in the featured movie section. Each movie category also uses a heading which will be h3, so using a h4 as the heading_level for the title of the movie in the card makes sense.
Component's markup
Inside the movie-card directory create a new file called movie-card.twig.
Add the following code:
Notice we are using include statements to nest existing components into the movie-card. This is a simple example of how we can reuse previously built components.
The image and rest of content has been split into different containers (
movie-card__cover-image
&movie-card__content
). This is always a good practice as it provides flexibility to move multiple content fields around at once should we have the need to do so.Also notice we are reusing the heading component and simply changing its heading level and applying a unique class when inside the movie card. This provides context and allows us to style this heading independently of other headings in the page.
Finally, we are introducing the concept of Twig Blocks, (not the same as Drupal blocks), to provide a way to change how content is rendered when we integrate this component with Drupal. More on how Twig Blocks give us more flexibility at time of rendering content later.
Component Styles
Inside the movie-card directory create a new file called movie-card.scss.
Inside
movie-card.scss
add the following code:
Quite the styles huh? 😄
Compiling the code
Let's take a look at the Movie Card component by compiling our code and building the style-guide.
In your command line, navigate to
/themes/custom/nitflex_dev_theme
.Run this command:
Viewing the component
Open your Drupal site and point to the URL below: http://nitflex.lndo.site/themes/custom/nitflex_dev_theme/dist/style-guide/?p=viewall-patterns-movie-card
Under the Components category you should see the new Movie Card component.
Working with Drupal Libraries
Let's take a break from building components for a moment to learn about Drupal Libraries. Drupal libraries is how we add CSS and Javascript to content in Drupal. Proceed to Drupal Libraries.
Last updated
Was this helpful?