This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
generated from 5t3ph/eleventy-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eleventy.js
50 lines (45 loc) · 1.51 KB
/
.eleventy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const createClient = require('./_scripts/client')
//const { translate, permalink, absolute, alternate, addContext } = require('_scripts/utils')
module.exports = (eleventyConfig, _options) => {
const defaults = {
url: 'http://localhost:8055',
name: 'directus',
allowHidden: true,
allowSystem: false,
onItem: item => item,
filterCollection: ({collection, meta}) => true,
sequencial: false,
recursions: 7,
}
const options = {
...defaults,
..._options,
}
const directus = createClient({
url: options.url,
allowHidden: options.allowHidden,
allowSystem: options.allowSystem,
login: options.login,
token: options.token,
auth: options.auth,
sequencial: options.sequencial,
recursions: options.recursions,
})
// Add global data and init
let healthOk = false
eleventyConfig.addGlobalData(options.name, async () => {
// init the client
await directus.init(options.onItem, options.filterCollection)
// Check that we can connect to directus
if(!healthOk && !await directus.healthCheck()) {
console.warn('WARNING: could not connect to Directus\n\nIs Directus running? Do we have access to "Directus Collections"?\n\n')
} else {
// Check only once when success
healthOk = true
}
return directus
})
// Add filters
eleventyConfig.addFilter(`${options.name}_asseturl`, (...args) => directus.getAssetUrl(...args))
eleventyConfig.addFilter(`${options.name}_translate`, (...args) => directus.translate(...args))
}