Advanced Components
  • Welcome
  • Start here
    • Setup
    • Dependencies
  • Getting Started
    • Front-end tooling
    • Create a new D9 theme
    • Component Architecture
    • Drupal Best Practices
    • Drupal Attributes
    • Twig Blocks
  • Basic Components
    • Global styles
    • Adding webfonts
    • Heading Component
      • Improving the Heading
    • Button Component
  • A component's lifecycle
    • Hero Component
    • Include statements
    • Drupal prep
    • Drupal entities
    • Homepage content type
    • View modes
    • Add Hero to homepage
    • Drupal cache & twig debugging
    • Twig template suggestions
    • Getting field values
    • Integrating the Hero
    • Drupal Libraries
    • Hero Image styles
  • Card component
    • Card Component
    • Component Variants
    • Card Variant
    • Author component
  • Drupal site building
    • Blog articles
    • View modes
    • Drupal Views
    • Author
    • Generate content
    • Adding Blog Lists to the Homepage
  • Drupal Integrations
    • Integrating the Card
      • Taxonomy terms
    • Integrating the Card Wide
    • Author integration
    • From our blog
    • Integrating From our blog
    • Featured Content
    • Integrating Featured Content
    • Blog image styles
    • Blog detail page
  • Extras
    • Image Styles
    • Navigation
  • Resources
    • Resources
Powered by GitBook
On this page
  • Writing the button's logic
  • Button Styles
  • Compiling the code

Was this helpful?

  1. Basic Components

Button Component

PreviousImproving the HeadingNextHero Component

Last updated 3 years ago

Was this helpful?

Buttons are some of those things that are used over and over on a website. For this reason it makes sense to create a new component for it.

  1. Inside components create a new folder called button

  2. Inside the button folder create a new file called button.json

  3. Inside button.json add the following code:

{
  "button": {
    "text": "Hi, I'm a button",
    "url": "",
    "modifier": ""
  }
}

We created an object called button and added several properties or attributes such as text, url, and modifier. By now we've seen this kind of data structure on other components.

Writing the button's logic

  1. Inside the button folder create a new file called button.twig

  2. Inside button.twig add the following code:


<div data-gb-custom-block data-tag="if">

  <a href="{{ button.url }}" class="button{{ button.modifier ? ' ' ~ button.modifier }}">
    {{ button.text }}
  </a>
  

<div data-gb-custom-block data-tag="else"></div>

  <button class="button{{ button.modifier ? ' ' ~ button.modifier }}">
    {{ button.text }}
  </button>

</div>
  • We've added some logic to the button to ensure we render the right HTML element based on the data we receive. For example, if a URL is passed, we use an <a> tag with the class of button, otherwise we use a <button> tag. We always want to make sure we use proper semantic markup for accessibility and for the task at hand. An <a> tag will allow us to link to another page or a section within the same page, whereas a <button> element will allow us to perform an action such as submit content.

Button Styles

  1. Inside the button folder create a new file called button.scss

  2. Inside button.scss add the following code:

// Import site utilities
@import '../../global/utils/init';

.button {
  background-color: $color-navy-blue;
  border: 2px solid $color-navy-blue;
  color: $color-white;
  display: inline-block;
  line-height: 1.3;
  padding: 15px 40px;
  text-transform: uppercase;
  text-decoration: none;

  // Hover and focus states for base button
  &:hover,
  &:focus {
    color: $color-white;
  }

  // Styles for white button with gray outline.
  &.button--ghost {
    background-color: transparent;
    border: 2px solid $color-gray-dark;
    color: $color-gray-dark;
    padding: 8px 30px;

    // Hover and focus styles for ghost button.
    &:hover,
    &:focus {
      color: $color-gray-dark;
    }
  }
}
  • Some basic css styles to make our button look decent. We can probably improve them but for now this will do.

Compiling the code

Now that the Button component is done, let's compile the code so we can see it in Pattern Lab. If you already have Pattern Lab running you should see the new Button component. Otherwise, run the following command in your command line and press Return

npm run watch