request faker images corresponding to set aspect ratios

This commit is contained in:
Alina Beck 2019-12-02 16:10:44 +03:00
parent 3116f8cc0a
commit d97973ab79

View File

@ -350,7 +350,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
author: peterLustig,
id: 'p0',
language: sample(languages),
image: faker.image.unsplash.food(),
image: faker.image.unsplash.food(300, 169),
categoryIds: ['cat16'],
imageAspectRatio: 1.777,
}),
@ -358,7 +358,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
author: bobDerBaumeister,
id: 'p1',
language: sample(languages),
image: faker.image.unsplash.technology(),
image: faker.image.unsplash.technology(300, 1500),
categoryIds: ['cat1'],
imageAspectRatio: 0.2,
}),
@ -367,27 +367,24 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
id: 'p3',
language: sample(languages),
categoryIds: ['cat3'],
imageAspectRatio: 0.5,
}),
factory.create('Post', {
author: dewey,
id: 'p4',
language: sample(languages),
categoryIds: ['cat4'],
imageAspectRatio: 0.75,
}),
factory.create('Post', {
author: louie,
id: 'p5',
language: sample(languages),
categoryIds: ['cat5'],
imageAspectRatio: 1,
}),
factory.create('Post', {
authorId: 'u1',
id: 'p6',
language: sample(languages),
image: faker.image.unsplash.buildings(),
image: faker.image.unsplash.buildings(300, 857),
categoryIds: ['cat6'],
imageAspectRatio: 0.35,
}),
@ -396,19 +393,17 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
id: 'p9',
language: sample(languages),
categoryIds: ['cat9'],
imageAspectRatio: 1.25,
}),
factory.create('Post', {
author: dewey,
id: 'p10',
categoryIds: ['cat10'],
imageAspectRatio: 1.5,
}),
factory.create('Post', {
author: louie,
id: 'p11',
language: sample(languages),
image: faker.image.unsplash.people(),
image: faker.image.unsplash.people(300, 901),
categoryIds: ['cat11'],
imageAspectRatio: 0.333,
}),
@ -417,22 +412,20 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
id: 'p13',
language: sample(languages),
categoryIds: ['cat13'],
imageAspectRatio: 0.4,
}),
factory.create('Post', {
author: jennyRostock,
id: 'p14',
language: sample(languages),
image: faker.image.unsplash.objects(),
image: faker.image.unsplash.objects(300, 200),
categoryIds: ['cat14'],
imageAspectRatio: 0.5,
imageAspectRatio: 1.5,
}),
factory.create('Post', {
author: huey,
id: 'p15',
language: sample(languages),
categoryIds: ['cat15'],
imageAspectRatio: 0.8,
}),
])