Skip to main content

Extend a component

Overview

Extending a component takes a kickstartDS component and expands upon its abilities. But in contrast to customizing a component we don't just add a property, often resulting in changing the markup / template of the involved component in the process. When extending, we add new capabilities to a component by composing it with other components.

It involves the same rough steps as adapting a component, but differs from it when it comes to creating the React template. Instead of (only) using the base component directly as imported, and just re-wiring properties, we import and use multiple kickstartDS base components. We also wire our properties into those used different components as needed.

Customizing vs Extending

In both processes we add new features to a component, which results in it fitting one of the use cases we have in mind for our Design System.

In the case of customizing a component, we either change the way a property of an existing kickstartDS base component behaves, or we add a new property to it altogether. But it's always a change that results in customizing the React component template, too. For example: adding a switchOrder property to the Headline.

When extending a component, we take one existing kickstartDS base component and compose it with other kickstartDS base components to gain new functionality. We don't change the React component template in the process. For example: adding call-to-actions to our Section.

Both processes can be combined in a component, if needed!

This can also be part of creating a component, (see our TeaserCard component example for that). Or be used while customizing a component that expands on some kickstartDS base component (see our Section component example for that).

To learn more about the different processes available to you when creating a component with kickstartDS, have a look at the overview page of this section.

Extension process

As with the adaptation process, the big assumption here is that you already have a kickstartDS base component in mind. But unlike in that one, we have some requirement or feature that is not covered by it. We almost have a match. Additionally, the change required involves adding other kickstartDS base components into the mix... not changing the involved components themselves. That would be covered by the customization process.

Finding your component definition is still very simplified, we just have to add those properties not covered by the base component into the mix ourselves.

Adaptation process as a base line

If you've read our "Adapt a component" guide you probably already know this:

This guide expects you to reduce the set of props offered by kickstartDS components, when used as a base component. We'll also skip over, or significantly shorten, parts already covered by that guide. If unsure about something, best cross-reference it!

If you don't have a kickstartDS base component in mind yet, you're probably better served by our guide "Create a component". In that guide, you'll start off without a specific component in mind. This means defining a structure (someting you probably have an idea about already) first, and then mapping that structure to a fitting component second.

We also have an example for this with "Create Teaser Card component".

If you're still unsure, then maybe you're still missing a clear picture on what your components should look like. In that case, you should probably take a step back first, and maybe start a Design System Initiative to narrow down on what components you'll really need.

There are two main steps in customizing a component:

  1. Component definition, and
  2. Component creation

Let's get started!

1. Component definition

The extension process starts by defining a component API. As with the adaptation process this mainly means selecting a set of props from the pool of props available through your selected base component. But this time, we'll also add a requirement that's not covered by the base component.

We'll use the Section component throughout this guide to illustrate concepts. This will not be an exhaustive example, though. For that have a look at our guide "Extend Section component".

As our additional requirement, we'll want to be able to add some call-to-actions at the end of a section. That's not something the base Section can do, so we'll add this ourselves.

Purpose

There's not a lot different here when compared to the adaptation process. We just mainly keep close to the original purpose of our chosen kickstartDS base component.

There should be an exception though, as we have a requirement on our mind that is not part of the component yet. This will probably be part of the purpose of our component.

For our Section example, this could mean adding more places of putting call-to-actions being that requirement. Adding it to the Section allows adding one between every section of our website, which should be plenty! Using the Button as a component for those call-to-actions allows for re-use there, too.

Structure

We'll also still start by defining a rough draft of our component API here.

Let's keep going with our Section component as an example. We're starting with the following properties:

PropertyTypeDescription
widthenumWidth of section to use
gutterenumSize of gutter to use
modeenumLayout mode used for section contents
contentarrayAllowed content for the section
backgroundenumType of background
invertedbooleanWhether to invert the section
spaceBeforeenumAmount of spacing before the section
spaceAfterenumAmount of spacing after the section
headlineobjectHeadline
classNamestringAdditional Class
componentstringOptional custom component identifier

For the detailed documentation have a look at the Section in our Storybook here:
https://www.kickstartds.com/storybook/?path=/docs/base-section--content-boxes

One potential set of props, it's also the one used in our guide "Extend Section component" if you're wondering, would be the following:

PropertyTypeDescription
headlinestringHeadline for the section
widthenumWidth of section to use
gutterenumSize of gutter to use
modeenumLayout mode used for section contents
contentarrayAllowed content for the section
styleenumStyle of section, influences background
spaceBeforeenumAmount of spacing before the section
spaceAfterenumAmount of spacing after the section
invertedbooleanWhether to invert the section
ctasarrayCall-to-actions to show
ctas[].label *stringLabel for the Call to action
ctas[].target *stringTarget for the Call to action

We took width, gutter, mode, content, spaceBefore, spaceAfter and inverted directly, and renamed background to style for our version of the Section. And crucially we add our own property ctas into the mix. We also reduce the complexity of headline significantly... from mapping to all of the Headline properties, to just a single string type prop setting its content. Required fields are marked with a *.

2. Component Creation

In the second and final step we'll get to actually create our component. We'll encode the component API by creating its JSON Schema, and create a React template matching our selected properties to the kickstartDS base component. While creating that template, we'll also import additional components and mix them with our original kickstartDS base component to implement our new requirements.

JSON Schema definition

We establish the structure of components by creating a JSON Schema for them, defining their component API in code. Like with customization we add our own, new property into the mix.

For an abridged version of that process, have a look at the Section again (adding our own ctas property):

Original Section

This is the "full" section component API / JSON Schema. We've just reduced the property definitions.

Select from available props

Let's highlight the ones we've identified when thinking about our component structure before.

Create your component API

Subsequently we add exactly those fields to our own components component API / JSON Schema...

Renaming props

... and rename props in the process.

Add our new prop

Most importantly, we add our new property.

Finished component JSON Schema

The finished component definition in all its glory.

@kickstartds/section.schema.json

_19
{
_19
"$schema": "http://json-schema.org/draft-07/schema#",
_19
"$id": "http://schema.kickstartds.com/base/section.schema.json",
_19
"title": "Section",
_19
"type": "object",
_19
"properties": {
_19
"width": { ... },
_19
"gutter": { ... },
_19
"mode": { ... },
_19
"content": { ... },
_19
"background": { ... },
_19
"inverted": { ... },
_19
"spaceBefore": { ... },
_19
"spaceAfter": { ... },
_19
"headline": { ... },
_19
"className": { ... },
_19
"component": { ... }
_19
}
_19
}

Extending multiple properties

This process can also involve extending a component by adding multiple properties to it. Just repeat all the steps for every property you'll need to add.

In general: these guides are mainly meant as basic building blocks, that can be combined and remixed by you to create exactly what you need... even if that's something more complex than described in these basic guides here.

For the full version of customizing a Section have a look at our "Extend Section component" guide.

React template

Now that our JSON Schema is defined, we'll automatically get matching TypeScript types for our component. We use those, combined with the types already included with the kickstartDS base component, to quickly hook up our set of properties to the original component. Using auto-complete, and TypeScript telling us about required properties in the base component, this is gets easy like squeezing a lemon!

To learn more about the tooling that create those types for you, and how to hook it up, see part four of our "Create your Design System" guide.

Let's continue showcasing this process using our Section, creating the component template:

Necessary imports

The main imports here are the kickstartDS base component Section, our own Button component, and our own components TypeScript types.

We use our own Button here, with the assumption that that already got adapted by us. See the "Adapt Button component" guide to see how this could look like. But we could just as well have imported another (or even multiple other) kickstartDS base component(s) here.

Add correct type to component

We need to type our React component to use our JSON Schema, while also making sure native HTML attributes are passed correctly. For the Section this means including HTMLAttributes<HTMLElement>, as it maps to a <div> under the hood.

Doing this allows users of your component to enjoy having the same auto-complete and safety when working with your Design System.

Add parameters to component

Next we add all our components defined properties to its function signature. For properties having a default defined in your component API we add that default here, too.

As we also want to pass through all the props not explicitly managed by us we sponge up ...props.

Add the actual JSX

Unlike when directly adapting or creating a kickstartDS base component, we don't just use one base component. We recombine several different base components into a version that fits our needs instead.

And unlike customizing, we don't change any kickstartDS base components underlying markup.

Destructure additional props

We start with the props we're carrying through first. This ensures properties defined in our component API will always take precedence, because they're added after the general props.

Combining base components 1/5

This is where we actually extend the original components scope.

We apply a small trick here: if there are ctas defined, we'll just add a second section to the output.

Combining base components 2/5

Inside that second section, we render all the call-to-actions given to us as Buttons. We choose the variant rendered according to its index (first = primary, etc) in the list.

Combining base components 3/5

When there are call-to-actions, we also ensure the sections share the same visual style...

Combining base components 4/5

... and reduce the spacing between them to make everything feel seamless!

Combining base components 5/5

The rest of the components gets wired up as usual.

Adding a Provider

The final part of creating our React component is adding a component Provider for it. As we've adapted an existing kickstartDS base component here, we'll want to make sure that every time another component includes that base component, our own version of it gets used instead.

src/components/section/SectionComponent.tsx

_61
import { HTMLAttributes, FC, PropsWithChildren } from "react";
_61
_61
import {
_61
SectionContextDefault,
_61
SectionContext,
_61
} from "@kickstartds/base/lib/section";
_61
_61
import { SectionProps } from "./SectionProps";
_61
import { Button } from "../button/ButtonComponent";
_61
_61
export const Section: FC<
_61
SectionProps & HTMLAttributes<HTMLElement>
_61
> = ({
_61
headline,
_61
width = "default",
_61
gutter = "default",
_61
mode = "default",
_61
style = "default",
_61
spaceBefore = "default",
_61
spaceAfter = "default",
_61
inverted = false,
_61
ctas = [],
_61
...props
_61
}) => {
_61
return (
_61
<>
_61
<SectionContextDefault
_61
{...props}
_61
background={style}
_61
headline={{
_61
content: headline
_61
}}
_61
width={width}
_61
gutter={gutter}
_61
mode={mode}
_61
spaceBefore={spaceBefore}
_61
spaceAfter={ctas && ctas.length > 0 ? 'none' : spaceAfter}
_61
inverted={inverted}
_61
/>
_61
{ctas && ctas.length > 0 && (
_61
<SectionContextDefault
_61
background={style}
_61
width="narrow"
_61
gutter={gutter}
_61
mode="default"
_61
spaceBefore="default"
_61
spaceAfter={spaceAfter}
_61
inverted={inverted}
_61
>
_61
{ctas.map((cta, index) => (
_61
<Button label={cta.label} variant={index === 0 ? "primary" : index === 1 ? "secondary": "tertiary" } size="medium" />
_61
))}
_61
</SectionContextDefault>
_61
)}
_61
</>
_61
);
_61
};
_61
_61
export const SectionProvider: FC<PropsWithChildren<any>> = (props) => (
_61
<SectionContext.Provider {...props} value={Section} />
_61
);

If you're wondering what that Provider we've added last is all about, think about it like this:
There may be other components you've built, that themselves use the base Section component by default. For example we might have our own Page component, based on the kickstartDS Page which includes a Section.

As a means to not having to go through every combination of those component now, making sure our customized Section actually gets used, you can just change the default Section rendered by adding a single Provider once, instead.

Learn more about Providers and React Context in our dedicated page about them.
Or look at our "Create your Design System" guide, where we add the general setup for Providers. That one also includes some more details on this!

Visual Studio Code component property quick-fix

Visual Studio Code has a great feature aiding in this workflow, with React components that include TypeScript types... like kickstartDS components do. When adding a "bare" component without props to your template, Visual Studio Code will offer you the option to Add missing attributes.

This will automatically create all required options for your component. Now you just have to connect your own props to those, while hard-coding the ones you don't plan on exposing as part of your components component API.

Just hover the squiggly, red line that should be decorating your component, and choose Quick Fix..., to get to that option (alternatively put your cursor on the component tag and hit Ctrl+.).

Technical debt added

This way of creating components adds minimal technical debt to your Design System. Not much has been changed around, we just add a small layer on top of the original kickstartDS base component(s).

Relevant underlying changes you'll have to look out for:

  • changes to the base components component API
  • removal of the base component(s)

You're immune to underlying changes to:

  • the components template (both React, and the resulting HTML)
  • the design and layout (changes to CSS, SCSS and Design & Component Token)

In the case of a changed component API, you should have a look at the corresponding CHANGELOG.md and potential notes in our matching migration guide. You'll probably just need to add a newly added field to your React template, and potentially your own component API if you want to use it. If a field was changed, that might also necessitate some adaption of your own version. Finally a removed field you're actually using would mean adding additional customization to regain that functionality. Have a look at our Headline example guide to see how you'd add your own, new property!

Learn more about what we mean by technical debt here on the overview page of this section.

Examples

We continuously expand our component example guides, below we've collected the ones acting as a good sample of the adaptation process.

Extend Section component

In this example component guide we extend the Section component (as part of the @kickstartDS/base module) to use it for sections in our own Design System. We greatly simplify the Headline that's part of a Section normally, and add our own ctas property for adding call-to-action Buttons to a Section.

This is what the result looks like: