Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit 935f6a3

Browse files
author
undefined
committed
WIP: tests
1 parent d03a94b commit 935f6a3

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.eleventy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = (eleventyConfig, _options) => {
4141

4242
// Add filters
4343
eleventyConfig.addFilter(`${options.name}.asseturl`, image => directus.getAssetUrl(image))
44-
eleventyConfig.addFilter(`${options.name}.translate`, collectionItem => directus.translate(collectionItem))
44+
eleventyConfig.addFilter(`${options.name}.translate`, (collectionItem, translationField = options.translationField) => directus.translate(collectionItem, translationField))
4545
// eleventyConfig.addFilter(`${options.name}.alternates`, item => {
4646
// const languages = await this.getLanguages() || [{code: ''}]
4747
// async getAlternates(item) {

.eleventyignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
README.md
2+
node_modules
3+
content/_scripts
4+
.git
5+

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,14 @@ all.forEach(item => console.log(`I belong to the collection ${item.collection}`)
8282

8383
#### Translation
8484

85-
* `directus.translate`: add the `translated` attribute in case it has not one already, for example when the item comes from the user selecting a page in the UI: `{% assign targetPagePerma = item.page | translate: lang, 'page' | permalink: true, 'page' %}`, see `_layouts/nav.js` for a real life example
85+
Use `directus.translate` filter to get the translated part of a directus collection item:
8686

87+
```liquid
88+
{% assign translated = item | translate %}
89+
{{ translated.text }}
90+
```
8791

88-
### Collections
92+
### Directus collections and 11ty pages
8993

9094
Here is how to turn your Directus colections into pages
9195

0 commit comments

Comments
 (0)