-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from YouAreNotReady/module5-task1
- Loading branch information
Showing
10 changed files
with
97 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
import { getRandomInteger, getRandomArrayElement } from './util.js'; | ||
|
||
const DESCRIPTIONS = [ | ||
'Закат над морем', | ||
'Городская улица ночью', | ||
'Заснеженный лес', | ||
'Кафе на набережной', | ||
'Горная вершина', | ||
'Цветущая сакура', | ||
]; | ||
|
||
const MESSAGES = [ | ||
'Всё отлично!', | ||
'В целом всё неплохо. Но не всё.', | ||
'Когда вы делаете фотографию, хорошо бы убирать палец из кадра. В конце концов это просто непрофессионально.', | ||
'Моя бабушка случайно чихнула с фотоаппаратом в руках и у неё получилась фотография лучше.', | ||
'Я поскользнулся на банановой кожуре и уронил фотоаппарат на кота и у меня получилась фотография лучше.', | ||
'Лица у людей на фотке перекошены, как будто их избивают. Как можно было поймать такой неудачный момент?!', | ||
]; | ||
|
||
const NAMES = [ | ||
'Артем', | ||
'Александр', | ||
'Виктор', | ||
'Василий', | ||
'Петр', | ||
'Анастасия', | ||
'Валерия', | ||
'Виктория', | ||
'Дарья', | ||
'Елизавета', | ||
]; | ||
|
||
const PHOTO_OBJECTS_AMOUNT = 25; | ||
const MIN_LIKES = 15; | ||
const MAX_LIKES = 200; | ||
const MIN_COMMENTS = 0; | ||
const MAX_COMMENTS = 30; | ||
|
||
const createIdGenerator = function(min, max) { | ||
const previousValues = []; | ||
|
||
return function() { | ||
let lastGeneratedId = getRandomInteger(min, max); | ||
|
||
if(previousValues.length >= (max - min + 1)) { | ||
console.log('Закончились уникальные идентификаторы'); | ||
return null; | ||
} | ||
|
||
while(previousValues.includes(lastGeneratedId)) { | ||
lastGeneratedId = getRandomInteger(min, max); | ||
} | ||
|
||
previousValues.push(lastGeneratedId); | ||
return lastGeneratedId; | ||
}; | ||
}; | ||
|
||
const generateCommentId = createIdGenerator(1, PHOTO_OBJECTS_AMOUNT * MAX_COMMENTS); | ||
|
||
const createCommentObject = () => ({ | ||
id: generateCommentId(), | ||
avatar: 'img/avatar-' + getRandomInteger(1, 6) + '.svg', | ||
message: getRandomArrayElement(MESSAGES), | ||
name: getRandomArrayElement(NAMES), | ||
}); | ||
|
||
|
||
const createPhotoObject = (_, index) => ({ | ||
id: index, | ||
url: 'photos/' + index++ + '.jpg', | ||
description: getRandomArrayElement(DESCRIPTIONS), | ||
likes: getRandomInteger(MIN_LIKES, MAX_LIKES), | ||
comments: Array.from({length: getRandomInteger(MIN_COMMENTS, MAX_COMMENTS)}, createCommentObject) | ||
}); | ||
|
||
|
||
const generatePhotoObjects = () => Array.from({length: PHOTO_OBJECTS_AMOUNT}, createPhotoObject); | ||
|
||
export { generatePhotoObjects }; |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,7 @@ | ||
const DESCRIPTIONS = [ | ||
'Закат над морем', | ||
'Городская улица ночью', | ||
'Заснеженный лес', | ||
'Кафе на набережной', | ||
'Горная вершина', | ||
'Цветущая сакура', | ||
]; | ||
|
||
const MESSAGES = [ | ||
'Всё отлично!', | ||
'В целом всё неплохо. Но не всё.', | ||
'Когда вы делаете фотографию, хорошо бы убирать палец из кадра. В конце концов это просто непрофессионально.', | ||
'Моя бабушка случайно чихнула с фотоаппаратом в руках и у неё получилась фотография лучше.', | ||
'Я поскользнулся на банановой кожуре и уронил фотоаппарат на кота и у меня получилась фотография лучше.', | ||
'Лица у людей на фотке перекошены, как будто их избивают. Как можно было поймать такой неудачный момент?!', | ||
]; | ||
|
||
const NAMES = [ | ||
'Артем', | ||
'Александр', | ||
'Виктор', | ||
'Василий', | ||
'Петр', | ||
'Анастасия', | ||
'Валерия', | ||
'Виктория', | ||
'Дарья', | ||
'Елизавета', | ||
]; | ||
|
||
const getRandomInteger = function(min, max) { | ||
const rand = min + Math.random() * (max + 1 - min); | ||
return Math.floor(rand); | ||
}; | ||
|
||
const createIdGenerator = function(min, max) { | ||
const previousValues = []; | ||
|
||
return function() { | ||
let lastGeneratedId = getRandomInteger(min, max); | ||
|
||
if(previousValues.length >= (max - min + 1)) { | ||
console.log('Закончились уникальные идентификаторы'); | ||
return null; | ||
} | ||
|
||
while(previousValues.includes(lastGeneratedId)) { | ||
lastGeneratedId = getRandomInteger(min, max); | ||
} | ||
|
||
previousValues.push(lastGeneratedId); | ||
return lastGeneratedId; | ||
}; | ||
}; | ||
|
||
const getRandomArrayElement = (array) => array[getRandomInteger(0, array.length - 1)]; | ||
|
||
const generatePhotoId = createIdGenerator(1, 25); | ||
|
||
const generatePhotoUrlId = createIdGenerator(1, 25); | ||
|
||
const generateCommentId = createIdGenerator(1, 750); | ||
|
||
const createCommentObject = () => ({ | ||
id: generateCommentId(), | ||
avatar: 'img/avatar-' + getRandomInteger(1, 6) + '.svg', | ||
message: getRandomArrayElement(MESSAGES), | ||
name: getRandomArrayElement(NAMES), | ||
}); | ||
|
||
const createPhotoObject = () => ({ | ||
id: generatePhotoId(), | ||
url: 'photos/' + generatePhotoUrlId() + '.jpg', | ||
description: getRandomArrayElement(DESCRIPTIONS), | ||
likes: getRandomInteger(15, 200), | ||
comments: Array.from({length: getRandomInteger(0, 30)}, createCommentObject) | ||
}); | ||
|
||
const testPhotoObjects = Array.from({length: 25}, createPhotoObject); | ||
import { generatePhotoObjects } from './data-generator.js'; | ||
import './hashtag-checker.js'; | ||
import './image-scaling.js'; | ||
import './image-effect.js'; | ||
import './image-upload.js'; | ||
import './server-upload.js'; | ||
import './image-filtration.js'; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const getRandomInteger = function(min, max) { | ||
const rand = min + Math.random() * (max + 1 - min); | ||
return Math.floor(rand); | ||
}; | ||
|
||
const getRandomArrayElement = (array) => array[getRandomInteger(0, array.length - 1)]; | ||
|
||
export { getRandomInteger, getRandomArrayElement }; |