Add a Plugin

Eleventy Plugin Directus

combined

This plugin is a work in progress, we use it in production at Internet 2000, PRs welcome

Expose Directus collections as global data in 11ty. By default the data will be available in directus.collections.*

This plugin also creates filters to manage assets URLs and translations, creates a directus.collections.all collection, and will help you make pages out of Directus collections.

Use cases

Use this plugin to

Usage

  1. Install the plugin using npm:

    npm install @silexlabs/eleventy-plugin-directus
    
  2. Add the plugin to your .eleventy.js config:

    const pluginDirectus = require("@silexlabs/eleventy-plugin-directus")
    
    module.exports = (eleventyConfig) => {
      eleventyConfig.addPlugin(pluginDirectus, {
        url: 'http://localhost:8055',
      })
    }
    
  3. Run or build your Eleventy project and use the global directus.collections data variable to access your collections

Troubleshooting

directus_collections need to be readable, as well as the other collections you want to access in your 11ty website

For this plugin to retrieve public data, check the permissions for the public role in directus

For this plugin to retrieve private data, use the skd.authenticated option, see "Advanced options" section bellow

Advanced options

Variable name Desctiption Default
url Directus server root URL http://localhost:8055
name Name of the global data key and prefix of the filters directus
auth Object passed to Directus SDK's constructor as the auth option - (optional, this is useful for custom auth implementations only)
login Object passed to Directus SDK's auth.login method - (optional, this is useful to retrieve private data only)
token String passed to Directus SDK's auth.static method - (optional, this is useful to retrieve private data only)
onItem A callback to modify each item while collections are created. Use item.collection if you need to take the collection name into account. item => item
filterCollection
allowHidden
allowSystem

Config Examples

  eleventyConfig.addPlugin(pluginDirectus, {
    url: 'http://localhost:8055',
    name: 'directus',
    login: {
      email: 'admin@example.com',
      password: 'd1r3ctu5',
    },
  })

Available global data

In your templates:

In JS:

const directus = await  eleventyConfig.globalData.cms()
const { pages, posts, categories } = await directus.getCollections()
const settings = await directus.getCollection('settings')
const all = await directus.getAll()
all.forEach(item => console.log(`I belong to the collection ${item.collection}`))

Filters and shortcodes

Media URL

Translation

Use the translate filter to get the translated part of a directus collection item

Let's say you have a directus collection called "post" containing a list of posts. In this collection you have 2 text fields: non-translated-text and a "translation field" called translation_field. In the collection "translation_field", you have just one field called translated-text

In your layouts use the filter to find the appropriate language and merge the translation with the item itself:

{% for item in directus.collections.posts %}
  {% assign translated = item | directus_translate: "translation_field", "fr" %}
  {{ translated.non-translated-text }} This will output the value of the non translated field
  {{ translated.translated-text }} This will output the value of the non translated field  
{% endfor %}

Or in a JS data files:

directus.translate(item, "page_translations", "en")

What this filter does is find the item language (item.lang) in item[item.collection + "_translations"] and merge its content into item

Please ask in the issues if this example is not clear

Collection's items data

Each directus.collection is an array of items or an item (case of a singleton), with items look like this:

attribute description
collection Name of the item's collection.
All other attributes The attributes you define in Directus

Directus collections and 11ty pages

Here is how to turn your Directus colections into pages

Singletons

Here is the definition of a singleton in Directus

A collection that only contains one single item

Read this on how to create a singleton in Directus

In your 11ty website use the singleton data as follows - in this example let's call the singleton settings:

{{ directus.collections.settings.some_field }}

1 collection as pages

If you have a collection and want every item to have its own page in your website, create a markdown file like this one - in this example let's call the collection posts:

---
pagination:
  data: directus.collections.posts
  size: 1
  alias: post
permalink: /example/{{ post.some_field | slug }}/

---

<h1>{{ post.some_field }}</h1>

Directus collections as 11ty collections (example of sitemap)

Let's say you want all the collections which have a field some_field to be a collection in 11ty. This can be usefull for the sitemap plugin for example:

  // In .eleventy.js
  // Create 1 collection in 11ty out of each collection in Directus
  eleventyConfig.addCollection('sitemap', async function(collectionApi) {
    const directus = await  eleventyConfig.globalData.cms()
    return directus.getAll()
      .filter(collection => !!collection.some_field) // keep only the Directus collections you want
      .map(collection => ({
        ...collection,
        url: `${BASE_URL}/example/${slugify(collection.some_field)}/`, // add the `url` field required by the sitemap plugin
      }))
  })
  // sitemap plugin
  eleventyConfig.addPlugin(sitemap, {
    sitemap: {
      hostname: BASE_URL,
    },
  })

All collections as pages

Use the following layout (switch) automatically selects the layout based on the collection name - you need to have a layout with the same name as the collections. You could also use the same technique as the sitemap collection above to filter Directus collections and keep only the ones you want to generate pages.

The switch layout:

{% assign layout = '_layouts/' | append: current.collection | default: 'default' | append: '.html' %}
{% layout layout %}

---
layout: switch
pagination:
  data: directus.collections.all
  size: 1
  alias: current
permalink: /example/{{ current.some_field | slug }}/

---

This is the collection of the current item: {{ current.collection }}

It is also the name of the layout used to render this page

Collections in a multi-lingual website

If you use Directus fields of type translations, you will probably need to have pages with URLs like these: /fr/page-1/, /en/page-1, /fr/page-2/, ... In that case you need an 11ty collection containing 1 item for each item of a Directus collection and for each language of your website:

[{
  "title": "bonjour",
  "lang": "fr",
}, {
  "title": "hello",
  "lang": "en",
}, {
  "title": "ca va bien",
  "lang": "fr",
}, {
  "title": "how are you",
  "lang": "en",
}]

Here is how to make that happen - let's say your language collection is named languages in directus:

  // In .eleventy.js
  eleventyConfig.addCollection('translated', async function(collectionApi) {
    const directus = await  eleventyConfig.globalData.cms()
    return directus.getAll()
      .flatMap(item => directus.collections.languages.map(({code}) => ({
        ...item,
        lang: code,
      })))
      .map(item => ({
        ...item,
        // store translated data here, e.g.
        translated: directus.translate(item, `${item.collection}_translations`),
        // or for the example above
        ...directus.translate(item, `${item.collection}_translations`),
      }))
  })

Then you can use this collection in a markdown file

---
pagination:
  data: collections.translated
  size: 1
  alias: current
permalink: /{{ current.lang }}/{{ current.some_field | slug }}/

---

<h1>{{ current.title }}</h1> <--- this will be in the current language

This title is in {{ current.lang }}

The permalink of this page includes the current language

Unit tests

npm test