Skip to content

Commit

Permalink
fix(cloudinary): fit types, auto format & quality (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayashavin committed Nov 13, 2020
1 parent adf4a3d commit 74ef445
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 11 deletions.
26 changes: 22 additions & 4 deletions src/providers/cloudinary/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,45 @@ const operationsGenerator = createOperationsGenerator({
fit: 'c',
width: 'w',
height: 'h',
format: 'f'
format: 'f',
quality: 'q'
},
valueMap: {
fit: {
fill: 'fill',
inside: 'pad',
outside: 'lpad',
cover: 'fit',
contain: 'scale'
contain: 'scale',
minCover: 'mfit',
minInside: 'mpad',
thumbnail: 'thumb',
cropping: 'crop',
coverLimit: 'limit'
}
},
joinWith: ',',
formatter: (key, value) => `${key}_${value}`
})

const defaultModifiers = {
format: 'auto',
quality: 'auto'
}

export default <RuntimeProvider> {
getImage (src: string, modifiers: ImageModifiers, options: any) {
const operations = operationsGenerator(modifiers)
const mergeModifiers = {
...modifiers,
format: modifiers.format || defaultModifiers.format,
quality: modifiers.quality || defaultModifiers.quality
}

const srcWithoutExtension = src.replace(/\.[^/.]+$/, '')
const operations = operationsGenerator(mergeModifiers as ImageModifiers)

return {
url: cleanDoubleSlashes(options.baseURL + '/' + operations + src)
url: cleanDoubleSlashes(options.baseURL + '/' + operations + srcWithoutExtension)
}
}
}
2 changes: 1 addition & 1 deletion test/unit/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('Plugin', () => {

test('Generate Circle Image with Cloudinary', () => {
const image = nuxtContext.$img('cloudinary+circle:/test.png', {})
expect(image.url).toEqual('https://res.cloudinary.com/nuxt/image/upload/r_100/test.png')
expect(image.url).toEqual('https://res.cloudinary.com/nuxt/image/upload/r_100,f_auto,q_auto/test')
})

test('Deny undefined provider', () => {
Expand Down
12 changes: 6 additions & 6 deletions test/unit/providers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,47 @@ const images = [
{
args: ['/test.png', {}],
local: { isStatic: true, url: '/_image/ipx/local/_/_/test.png' },
cloudinary: { url: '/test.png' },
cloudinary: { url: '/f_auto,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/' },
fastly: { url: '/test.png?' },
imgix: { url: '/test.png?' }
},
{
args: ['/test.png', { width: 200 }],
local: { isStatic: true, url: '/_image/ipx/local/_/w_200/test.png' },
cloudinary: { url: '/w_200/test.png' },
cloudinary: { url: '/w_200,f_auto,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/cover=200x-' },
fastly: { url: '/test.png?width=200' },
imgix: { url: '/test.png?w=200' }
},
{
args: ['/test.png', { height: 200 }],
local: { isStatic: true, url: '/_image/ipx/local/_/h_200/test.png' },
cloudinary: { url: '/h_200/test.png' },
cloudinary: { url: '/h_200,f_auto,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/cover=-x200' },
fastly: { url: '/test.png?height=200' },
imgix: { url: '/test.png?h=200' }
},
{
args: ['/test.png', { width: 200, height: 200 }],
local: { isStatic: true, url: '/_image/ipx/local/_/s_200_200/test.png' },
cloudinary: { url: '/w_200,h_200/test.png' },
cloudinary: { url: '/w_200,h_200,f_auto,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/cover=200x200' },
fastly: { url: '/test.png?width=200&height=200' },
imgix: { url: '/test.png?w=200&h=200' }
},
{
args: ['/test.png', { width: 200, height: 200, fit: 'contain' }],
local: { isStatic: true, url: '/_image/ipx/local/_/s_200_200_contain/test.png' },
cloudinary: { url: '/w_200,h_200,c_scale/test.png' },
cloudinary: { url: '/w_200,h_200,c_scale,f_auto,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/contain=200x200' },
fastly: { url: '/test.png?width=200&height=200&fit=bounds' },
imgix: { url: '/test.png?w=200&h=200&fit=fill' }
},
{
args: ['/test.png', { width: 200, height: 200, fit: 'contain', format: 'jpeg' }],
local: { isStatic: true, url: '/_image/ipx/local/jpeg/s_200_200_contain/test.png' },
cloudinary: { url: '/w_200,h_200,c_scale,f_jpeg/test.png' },
cloudinary: { url: '/w_200,h_200,c_scale,f_jpeg,q_auto/test' },
twicpics: { url: '/test.png?twic=v1/format=jpeg/contain=200x200' },
fastly: { url: '/test.png?width=200&height=200&fit=bounds&format=jpeg' },
imgix: { url: '/test.png?w=200&h=200&fit=fill&fm=jpeg' }
Expand Down

0 comments on commit 74ef445

Please sign in to comment.