-
Notifications
You must be signed in to change notification settings - Fork 77
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
Трофимов Павел #43
base: master
Are you sure you want to change the base?
Трофимов Павел #43
Conversation
🍏 Пройдено тестов 19 из 19 |
@bazhenova обрати внимание решено доп. задание |
@@ -1,49 +1,198 @@ | |||
'use strict'; | |||
|
|||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Зачем ты удалил все JsDoc? Давай их вернем обратно. Хорошей практикой считается документировать публичные методы, так как по параметрам сложно догадаться, что они содержат
* @param {String} workingHours.to – Время закрытия, например, "18:00+5" | ||
* @returns {Object} | ||
*/ | ||
var days = ['ПН', 'ВТ', 'СР']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Давай назовем как-нибудь по-другому. Задумайся, какие это дни?
var timeRegExp = /([А-Я]{2}) (\d{2}):(\d{2})\+(\d+)/g; | ||
var parsedTime = timeRegExp.exec(date); | ||
var day = days.indexOf(parsedTime[1]) + 1; | ||
var hour = parsedTime[2] - (parseInt(parsedTime[4]) - bankTimezone); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
у parseInt
лучше указывать вторым аргументом основание системы счисления, чтобы избежать ошибок
} | ||
|
||
|
||
function getInterval(from, to, timezone) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Непонятно, что за интервал ты хочешь получить
|
||
|
||
function getSotredIntervals(schedule, bankTimezone) { | ||
var sortedSchedule = parseSchedule(schedule, bankTimezone).sort(function (a, b) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
давай разобьем эту строчку: сначала ты парсишь - это одна переменная, а потом на ней вызывай метод sort
- тебе не придется создавать новую переменную, так как данный метод изменяет исходный массив
|
||
function joinSchedule(schedule) { | ||
var fullSchedule = []; | ||
var firstInterval = schedule[0]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо переименовать, неочевидно название. Первый интервал чего?
|
||
|
||
function joinSchedule(schedule) { | ||
var fullSchedule = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Полное расписание? Подумай, как по-другому это можно назвать
|
||
function isCrossed(bankInterval, freeInterval) { | ||
var checkFrom = checkInterval(bankInterval.from, freeInterval); | ||
var checkTo = checkInterval(bankInterval.to, freeInterval); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Здесь и в строчке выше надо переименовать переменные, они должны отражать смысл
function isCrossed(bankInterval, freeInterval) { | ||
var checkFrom = checkInterval(bankInterval.from, freeInterval); | ||
var checkTo = checkInterval(bankInterval.to, freeInterval); | ||
var compareIntervals = freeInterval.from > bankInterval.from && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо переименовать, непонятно, что за сравнение интервалов. По переменной должно быть понятно, что в ней лежит
function getBankTimezone(time) { | ||
var bankTimezone = /\+(\d+)/.exec(time)[1]; | ||
|
||
return parseInt(bankTimezone); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Укажи второй аргумент, как я писала выше
return parseInt(bankTimezone); | ||
} | ||
|
||
function getMomentForAttack(freeSchedule, bankSchedule, duration) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Может быть не getMomentForAttack
, а getMomentsForRobbery
? :) + не забывай, что ты возвращаешь массив, поэтому в названии присутствует множественное число
to: new Date(Math.min(bankInterval.to, freeInterval.to)) | ||
}; | ||
|
||
var laterTime = new Date(crossInterval.from.getTime() + (duration * 60 * 1000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вынеси 60 * 1000
в константу
|
||
function getFreeSchedule(busyTime, bankTimezone) { | ||
var freeTime = []; | ||
var interval = {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Непонятно, что за интервал
} | ||
|
||
function getFreeSchedule(busyTime, bankTimezone) { | ||
var freeTime = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
может тогда уж freeTimes
, раз это массив
} | ||
interval.to = currentInterval.from; | ||
freeTime.push(interval); | ||
interval = {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ого, какое-то 'обнуление' переменной. Можешь пояснить, что ты имел в виду?
|
||
function formatTime(time) { | ||
|
||
return (time.toString().length === 2 ? '' : '0') + time.toString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
На вход приходит численное значение? Может тогда лучше написать так:
return (time < 10 ? '0' : '') + time;
|
||
function createLaterTime(date, shift) { | ||
|
||
return new Date(date.getTime() + (shift * 60 * 1000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
60 * 1000
-> константа
var bankTimezone = getBankTimezone(workingHours.from); | ||
var freeTimeIntervals = getSotredIntervals(schedule, bankTimezone); | ||
var bankSchedule = getBankSchedule(workingHours, bankTimezone); | ||
var robberyTime = getMomentForAttack(freeTimeIntervals, bankSchedule, duration); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут же массив? Значит, robberyTimes
|
||
var time = robberyTime[0].from; | ||
|
||
return template.replace('%HH', formatTime(time.getHours())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Когда идет вызов нескольких функций подряд, то лучше каждую функцию начинать с новой строки. Перенеси этот replace
на новую строчку. Код станет и красивее и читабельнее)
tryLater: function () { | ||
if (this.exists()) { | ||
var laterTime = createLaterTime(robberyTime[0].from, 30); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
30
-> константа
robberyTime[0].from = laterTime; | ||
|
||
return true; | ||
} else if (robberyTime.length > 1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
почему именно больше 1, почему не больше 0?
🍅 |
🍏 Пройдено тестов 19 из 19 |
@bazhenova обрати внимание решено доп. задание |
return getFreeSchedule(joinedSchedule, bankTimezone); | ||
} | ||
|
||
function checkInterval(time, interval) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
В названии не отражено, на что именно ты проверяешь данный интервал. Раз ты возвращаешь булевское значение, то может быть лучше назвать как-нибудь isIntersected
или isIncluded
или что-то в этом роде (посмотри, что больше подходит)
function isCrossedIntervals(bankInterval, freeInterval) { | ||
var checkTimeFrom = checkInterval(bankInterval.from, freeInterval); | ||
var checkTimeTo = checkInterval(bankInterval.to, freeInterval); | ||
var compareTimes = freeInterval.from > bankInterval.from && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если я правильно поняла, то compareTimes
- это isRobberyTime
} | ||
|
||
function getMomentsForRobbery(freeSchedule, bankSchedule, duration) { | ||
var timesToRob = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше не сокращать слова в названиях: timesOfRobbery
либо robberyTimes
И еще немного комментариев) |
🍅 |
Ты будешь доделывать задачу? |
@bazhenova, да, в процессе. Не знаю как правильно переименовать переменные. |
@tgkd Скажи, с чем проблемы, лучше напиши в slack, помогу |
🍅 Не пройден линтинг или базовые тесты |
🍏 Пройдено тестов 19 из 19 |
@bazhenova обрати внимание решено доп. задание |
return interval.from <= time && time <= interval.to; | ||
} | ||
|
||
function createDate(currentTime, firstTime) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
еще бы вот тут переименовать, ты же выбираешь максимум из дат, как я поняла; то есть по сути позднее из двух времен. И раз ты возвращаешь дату, то можно назвать getLaterTime
. В аргументы передавай firstTime
и secondTime
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ну или getLaterDate
Еще пару переименований сделай, и я отдам тебя ментору. Вроде что-то хочется поправить, но не могу понять, что именно. Посмотрим, что скажет ментор |
🍅 |
🍏 Пройдено тестов 19 из 19 |
@bazhenova обрати внимание решено доп. задание |
🚀 |
🚀 |
var bankTimezone = /\+(\d+)/.exec(time)[1]; | ||
|
||
return parseInt(bankTimezone, 10); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ты определяешь часовой пояс банка, а потом везде его прокидываешь в качестве аргумента. Проще сохранить в переменную
|
||
|
||
function getSortedIntervals(schedule, bankTimezone) { | ||
var sortedSchedule = parseSchedule(schedule, bankTimezone); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут еще пока не отсортировано. Отсортированным становится только на следующем шаге
function getNewDate(date, bankTimezone) { | ||
var timeRegExp = /([А-Я]{2}) (\d{2}):(\d{2})\+(\d+)/g; | ||
var parsedTime = timeRegExp.exec(date); | ||
var day = ROBBERY_DAYS.indexOf(parsedTime[1]) + 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ROBBERY_DAYS.indexOf(parsedTime[1]) + 1
В условии сказано, что проверять данные не надо, но допустим в расписании появится ЧТ. ЧТ, как день, является валидным значением, но твой код вернет 0(воскресенье), вместо 4(четверга).
Получается, что шаг в лево и твое решение перестанет работать. Надо переписать на что-то более надежное
busyIntervals.push(totalBusyInterval); | ||
totalBusyInterval = schedule[i]; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Почему тут for, а везде выше forEach?
var freeIntervals = []; | ||
var currentFreeInterval = {}; | ||
|
||
currentFreeInterval.from = getNewDate('ПН 00:00+' + bankTimezone, bankTimezone); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'ПН 00:00+' - надо унести в константы.
busyTime.forEach(function (currentBusyInterval) { | ||
if (currentBusyInterval.from === currentBusyInterval.to) { | ||
return; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А в каком случае может отработать это условие? Ведь если у интервала начало и конец совпадают, то это уже не интервал, а момент времени.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍅
} | ||
} | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут все интервалы сравниваются с другими интервалами, но это не очень хорошо с точки зрения производительности. Зачем сравнивать время работы банка в понедельник с свободным временем грабителей во вторник или среду. Попробуй как-нибудь оптимизировать проверку по дням
🍅 |
Последняя активность 7-го ноября |
No description provided.