Create Dynamic Menus in Storyblok and Astro
Storyblok is the first headless CMS that works for developers & marketers alike.
In this part of the tutorial series, we will make the menu in our header component dynamic, so that you can manage it directly from Storyblok.
In a hurry? Check out the source code on GitHub and take a look at the live version on Netlify.
Requirements
This tutorial is part 3 of the Ultimate Tutorial Series for Astro. We recommend that you follow the previous tutorials before starting this one.
Enter the name config
{1} and choose Content type block {2}.
Now you can create a new field with the name header_menu
{1} and choose the field type Blocks {2}.
In this field, we would like to provide the possibility to add menu links as nested blocks. To accomplish that, let’s create another new block. This time it should be a Nested block {1} with the name menu_link
{2}.
Now we can add a new field called link
in this newly created block and choose Link as the field type.
Alright, our component schemas are almost done! Just one more step: to avoid that just any block could be nested in our header_menu
, we want to make sure that only specific components can be inserted {1}. Now you can choose the menu_link
block in the whitelist {2}.
With that out of the way, we can now go to the Content section of our Storyblok space. Here, we want to create a new story with the name Config {2}, using our recently created content type Config {3}.
If you open this newly created Config story in Storyblok it will throw an Error saying there is no Config
component defined. We will learn more about how to create a component in the next part of this series. But for now, just do the following.
- Create a new file name
src/storyblok/Config.astro
and just add an emptydiv
in this file. - Register the component in the Storyblok integration in
astro.config.mjs
.
You can now nest as many menu_link
blocks in the header_menu
field as you would like. For now, let’s add our Blog and About page.
Rendering the Menu in Astro
Having taken care of our setup in Storyblok, we can now work on implementing our dynamic menu in the frontend. To accomplish that, let’s update src/components/Header.astro
with the following code:
If you go back to the Visual Editor now, you can see your menu being rendered correctly. Feel free to experiment a little bit with it by adding or reordering the entries and saving the Config story.
Fantastic – but what’s actually happening in the code? First of all, we’re using useStoryblokApi
to fetch the Config story. What’s important to notice is that an additional parameter – resolve_links
– is passed to the apiOptions
. This is used to actually get the URLs of the stories that we link internally. You can learn more about this and other parameters in our Content Delivery API docs.
Now, we can loop through our headerMenu
data instead of the hardcoded links.
Wrapping Up
Congratulations, you have successfully created a dynamic menu in Storyblok and Astro!
Continue reading and learn How to Create Custom Components in Storyblok and Astro.
Resource | Link |
---|---|
Astro | https://astro.build/ |
The Storyblok Astro Ultimate Tutorial | https://www.storyblok.com/tp/the-storyblok-astro-ultimate-tutorial/ |
Storyblok SDK for Astro | https://github.com/storyblok/storyblok-astro |
Storyblok SDK Live Demo | https://stackblitz.com/edit/astro-sdk-demo |
Storyblok in the Astro Docs | https://docs.astro.build/en/guides/cms/storyblok/ |
Building Future-Proof High-Performance Websites With Astro Islands And Headless CMS | https://www.smashingmagazine.com/2023/02/building-future-proof-high-performance-websites-astro-islands-headless-cms-storyblok/ |
Storyblok APIs | https://www.storyblok.com/docs/api |