DEV Community

Cover image for Recipe website using complex data structure and Gatsby starter
likayeltsova for flotiq

Posted on • Updated on

Recipe website using complex data structure and Gatsby starter

When you're ready to take your headless CMS to the next level and start building data models that are a little more complex, you'll find that standard and fixed data types will be too restrictive. Flotiq has always supported building relationships between Content Types, but sometimes that's not enough.

Flotiq is API first headless CMS platform - it helps you manage content and create the backend of the project in a fast and easy way. With Flotiq, you can choose your favourite frameworks and backends and perform your tasks more efficiently.

In this article, we introduce you to a recipe website with a modern and attractive layout and discuss a couple of particular problems you might encounter when designing a data model. Simply add recipes to your website and watch it grow! This bright and colourful recipe starter is simple to use and customizable. Perfect for sharing recipes and the joy of cooking.

Features of Flotiq Recipe Starter

  • Responsive design using UI kit
  • Responsive navigation
  • Contact Form created with Flotiq Forms
  • Easy to deploy
  • Maximised page score
  • SEO friendly
  • Web fonts - built using font from Google Fonts

Letโ€™s Start!

In this article, we will use Gatsby and Flotiq to create an amazing project, and of course, you can check our Github repo to clone it or make any changes.

In this article, we'll discuss a couple of particular problems you might encounter when designing a data model and later - when working with it. Accidentally - we'll also build a stunning website with your favourite culinary recipes (scrambled eggs, of course!).

A simple Recipe model you might find useful for a recipe website could look like this:

  • Name - text
  • Slug - text
  • Image - image
  • Description - rich-text
  • Ingredients - rich-text
  • Steps - rich-text
  • Cooking time - rich-text
  • Servings - number For such a model - Flotiq would generate a form looking like this:

recipe data model flotiq headless cms

and your API docs would describe that model this way:
flotiq api docs of recipe objects

This model might be acceptable for very simple websites, but having the Ingredients and Steps entered as unstructured text (even if using HTML <li>) will soon become an issue.

Here's why:

  1. No easy, programmatic, access to ingredients - eg. no way to build a shopping list out of it
  2. Can't easily iterate through the recipe's steps - difficult to build an interactive UI, doesn't help with SEO either
  3. People editing the content will use different formatting every time and the content will quickly become messy. You'll get entries like:

2 eggs
1 pinch of salt
1 tbsp of butter

  • Eggs: 2
  • Salt: 1 pinch
  • Butter: 1 tbsp

<ul>
<li>2 eggs</li>
<li>1 pinch of salt</li>
<li>1 tablespoon of butter</li>
</ul>

and so on.

Solution
The problem of unstructured data can be solved using repeatable content fragments defined directly in a data model. It's a simple and convenient solution - both for developers modelling data and content editors as well.

Here's how you would go about it with Flotiq's list data type:
repeatable property

Benefits:

  • Less mess, providing structure without the need to create additional content types.
  • The list data type will render as a set of sub-forms - making it easier for content editing.
  • Easier data access from the API - more readable data structure.
  • Easier to interpret complex data on the frontend.

Use case: Recipe content type

Now - let's apply the list data type to the recipe Content-Type. Let's assume each step will include a description and an optional image and every ingredient - its amount, unit, product name.

We can now extend the example mentioned above:

  • Name - text
  • Slug - text
  • Image - image
  • Description - rich text
  • Ingredients - a list of:
  • amount - number
  • unit - text
  • product - text
  • Steps - a list of:
  • description - text area
  • image - image
  • Cooking time
  • Servings

Your Content Type definition in Flotiq would then look like this:
recipe content type definitons

and you would expect this in the API docs:

api docs for the new Content Type

You don't need to write a line of code - the docs, just as your entire RESTful APIs are generated every time you change your model definitions!

And this is how the form for that Content Type would render:
content type for recipe website

We used the list data type in this Gatsby & Flotiq recipes starter and you can see the results here. With this data model, it's now simple for a frontend developer to interpret that content on the website.

Now after all these steps we can experiment with Gatsby Starter
If you would like to go a little deeper into this recipe website, here's your quick start:

Install Gatsby:

npm install -g gatsby

Start the project from the template using Gatsby CLI

gatsby new gatsby-starter-recipes https://github.com/flotiq/gatsby-starter-recipes.git

Setup "Recipe" Content Type in Flotiq

Create your Flotiq.com account. Next, create the Recipe Content Type:

flotiq starters

Note: You can also create a Recipe using Flotiq REST API.

Configure application

The next step is to configure our application to know from where it has to fetch the data.

You need to create a file called .env inside the root of the directory, with the following structure:

GATSBY_FLOTIQ_BASE_URL="https://api.flotiq.com"
FLOTIQ_API_KEY="YOUR FLOTIQ API KEY"

Launch the Gatsby project

Navigate into your new siteโ€™s directory and start it up.

cd gatsby-starter-recipes
npm install
gatsby develop

Open the source code and start editing!

Your site is now running at http://localhost:8000!

Conclusions

Flotiq's list data type is an extremely easy to use solution for structuring your data. It organizes the content and makes it easy for content editors to build content, at the same time it's fully supported in the API and API docs.

Go play with the recipe website project - we've shared a Gatsby starter for that:

Gatsby starter recipes - GitHub

If you create a project with our starters, let us know we will be happy to share it!

Made with love & passion by Flotiq.

Top comments (0)