Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(provider): add directus (v0) #572

Open
wants to merge 1 commit into
base: v0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/content/4.providers/directus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Directus
description: Nuxt Image has first class integration with Directus
---

Integration between [Directus](https://docs.directus.io/reference/files/#requesting-a-thumbnail) and the image module.

To use this provider you need to specify the base url of your service in Directus.

```js{}[nuxt.config.js]
export default {
image: {
directus: {
// baseURL of your Directus application
baseURL: 'https://demo.directus.io'
}
}
}
```
3 changes: 3 additions & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ export default <NuxtConfig> {
vercel: {
baseURL: 'https://image-component.nextjs.gallery/_next/image'
},
directus: {
baseURL: 'https://cms.developling.nl'
},
imageengine: {
baseURL: 'https://abc123.imgeng.in'
},
Expand Down
23 changes: 23 additions & 0 deletions playground/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,29 @@ export const providers: Provider[] = [
}
]
},
// Directus
{
name: 'directus',
samples: [
{
src: 'c0c8a61c-d69e-4dc8-b403-1426d9bded48',
width: 100,
height: 100,
fit: 'contain'
},
{
src: 'c0c8a61c-d69e-4dc8-b403-1426d9bded48',
transforms: [['blur', 45],
['tint', 'rgb(255, 0, 0)'],
['expand', { right: 200, bottom: 150 }]
]
},
{
src: 'c0c8a61c-d69e-4dc8-b403-1426d9bded48',
key: 'test-preset'
}
]
},
// Fastly
{
name: 'fastly',
Expand Down
1 change: 1 addition & 0 deletions src/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const BuiltInProviders = [
'cloudinary',
'contentful',
'cloudimage',
'directus',
'fastly',
'glide',
'imagekit',
Expand Down
38 changes: 38 additions & 0 deletions src/runtime/providers/directus.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// https://docs.directus.io/reference/files/#requesting-a-thumbnail

import { joinURL, encodeQueryItem, encodePath, withBase } from 'ufo'
import { ProviderGetImage } from 'src'
import { createOperationsGenerator } from '~image'

const operationsGenerator = createOperationsGenerator({
keyMap: {
width: 'width',
height: 'height',
fit: 'fit',
format: 'format',
quality: 'quality',
withoutEnlargement: 'withoutEnlargement',
transforms: 'transforms'
},
valueMap: {
fit: {
inside: 'inside',
outside: 'outside',
cover: 'cover',
contain: 'contain'
},
format: {
jpeg: 'jpg'
}
},
joinWith: '&',
formatter: (key, val) => encodeQueryItem(key, val)
})

export const getImage: ProviderGetImage = (src, { modifiers = {}, baseURL = '/' } = {}) => {
const params = operationsGenerator(modifiers)

return {
url: withBase(joinURL('/assets/', encodePath(src) + (params ? '?' + params : '')), baseURL)
}
}
1 change: 1 addition & 0 deletions src/types/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export interface ImageProviders {
cloudinary?: Partial<CloudinaryOptions>
contentful?: any
cloudimage?: any
directus?: any
fastly?: any
glide?: any
gumlet?: any
Expand Down
6 changes: 6 additions & 0 deletions test/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const images = [
ipx: { url: '/_ipx/_/test.png' },
cloudflare: { url: '/test.png' },
cloudinary: { url: '/f_auto,q_auto/test' },
directus: { url: '/assets/test.png' },
twicpics: { url: '/test.png' },
fastly: { url: '/test.png' },
glide: { url: '/test.png' },
Expand All @@ -23,6 +24,7 @@ export const images = [
ipx: { url: '/_ipx/w_200/test.png' },
cloudflare: { url: '/cdn-cgi/image/w=200/test.png' },
cloudinary: { url: '/f_auto,q_auto,w_200/test' },
directus: { url: '/assets/test.png?width=200' },
twicpics: { url: '/test.png?twic=v1/cover=200x-' },
fastly: { url: '/test.png?width=200' },
glide: { url: '/test.png?w=200' },
Expand All @@ -42,6 +44,7 @@ export const images = [
ipx: { url: '/_ipx/h_200/test.png' },
cloudflare: { url: '/cdn-cgi/image/h=200/test.png' },
cloudinary: { url: '/f_auto,q_auto,h_200/test' },
directus: { url: '/assets/test.png?height=200' },
twicpics: { url: '/test.png?twic=v1/cover=-x200' },
fastly: { url: '/test.png?height=200' },
glide: { url: '/test.png?h=200' },
Expand All @@ -61,6 +64,7 @@ export const images = [
ipx: { url: '/_ipx/s_200x200/test.png' },
cloudflare: { url: '/cdn-cgi/image/w=200,h=200/test.png' },
cloudinary: { url: '/f_auto,q_auto,w_200,h_200/test' },
directus: { url: '/assets/test.png?width=200&height=200' },
twicpics: { url: '/test.png?twic=v1/cover=200x200' },
fastly: { url: '/test.png?width=200&height=200' },
glide: { url: '/test.png?w=200&h=200' },
Expand All @@ -80,6 +84,7 @@ export const images = [
ipx: { url: '/_ipx/fit_contain,s_200x200/test.png' },
cloudflare: { url: '/cdn-cgi/image/w=200,h=200,fit=contain/test.png' },
cloudinary: { url: '/f_auto,q_auto,w_200,h_200,c_scale/test' },
directus: { url: '/assets/test.png?width=200&height=200&fit=contain' },
twicpics: { url: '/test.png?twic=v1/inside=200x200' },
fastly: { url: '/test.png?width=200&height=200&fit=bounds' },
glide: { url: '/test.png?w=200&h=200&fit=contain' },
Expand All @@ -99,6 +104,7 @@ export const images = [
ipx: { url: '/_ipx/fit_contain,f_jpeg,s_200x200/test.png' },
cloudflare: { url: '/cdn-cgi/image/w=200,h=200,fit=contain,f=jpeg/test.png' },
cloudinary: { url: '/f_jpg,q_auto,w_200,h_200,c_scale/test' },
directus: { url: '/assets/test.png?width=200&height=200&fit=contain&format=jpg' },
twicpics: { url: '/test.png?twic=v1/output=jpeg/inside=200x200' },
fastly: { url: '/test.png?width=200&height=200&fit=bounds&format=jpeg' },
glide: { url: '/test.png?w=200&h=200&fit=contain&fm=jpeg' },
Expand Down
13 changes: 13 additions & 0 deletions test/unit/providers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { cleanDoubleSlashes } from '~/runtime/utils'
import * as ipx from '~/runtime/providers/ipx'
import * as cloudflare from '~/runtime/providers/cloudflare'
import * as cloudinary from '~/runtime/providers/cloudinary'
import * as directus from '~/runtime/providers/directus'
import * as twicpics from '~/runtime/providers/twicpics'
import * as fastly from '~/runtime/providers/fastly'
import * as glide from '~/runtime/providers/glide'
Expand Down Expand Up @@ -106,6 +107,18 @@ describe('Providers', () => {
})
})

test('directus', () => {
const providerOptions = {
baseURL: '/'
}

for (const image of images) {
const [src, modifiers] = image.args
const generated = directus.getImage(src, { modifiers, ...providerOptions }, emptyContext)
expect(generated).toMatchObject(image.directus)
}
})

test('twicpics', () => {
const providerOptions = {
baseURL: ''
Expand Down