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

Solve 01-basics #2

Merged
merged 12 commits into from
Oct 13, 2024
Merged

Solve 01-basics #2

merged 12 commits into from
Oct 13, 2024

Conversation

Jenackler
Copy link
Contributor

@Jenackler Jenackler commented Sep 27, 2024

Solve 01-basics/10-create-app
Solve 01-basics/20-weather
Solve 02-basics-2/10-counter
Solve 02-basics-2/20-broken-map
Solve 02-basics-2/30-calculator
Solve 02-basics-2/40-marked-emails
Solve 02-basics-2/50-selected-meetup

Solve 01-basics/20-weather
@jsru-1
Copy link
Contributor

jsru-1 commented Sep 27, 2024

Добавляю преподавателя (@ShGKme) для код-ревью.

@jsru-1 jsru-1 requested a review from ShGKme September 27, 2024 19:35
Skvorcov and others added 4 commits October 1, 2024 20:13
Solve 02-basics-2/20-broken-map
Solve 02-basics-2/30-calculator
Solve 02-basics-2/40-marked-emails
Solve 02-basics-2/50-selected-meetup
@jsru-1
Copy link
Contributor

jsru-1 commented Oct 1, 2024

Проверьте, пожалуйста, ваше решение, не все тесты прошли (PR не будет принят до тех пор, пока все добавленные задачи не будут решены).

@jsru-1
Copy link
Contributor

jsru-1 commented Oct 1, 2024

Решение было обновлено, посмотрим что скажет @ShGKme

@jsru-1
Copy link
Contributor

jsru-1 commented Oct 4, 2024

Проверьте, пожалуйста, ваше решение, не все тесты прошли (PR не будет принят до тех пор, пока все добавленные задачи не будут решены).

};
createApp({
name: 'todayDate',
template: 'Сегодня ' + new Date().toLocaleDateString(navigator.language, options),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Так определять шаблон некорректно. Здесь не инструментами Vue шаблоне описано, что должно выводиться, а сгенерирован сам шаблон на JS. Вместо этого шаблон должен быть фиксированной строкой, и уже внутри шаблона можно использовать директивы и текстовую интерполяцию для определения содержимого.

  • Так собрать шаблон в основном формате Vue компонентов - SFC - вообще не возможно
  • Значение шаблона определяется в момент описания компонента, а не в момент его работы. Так, если страница будет открыта сегодня, но компонент впервые срендерится только завтра - он всё равно выведет вчерашнюю дату

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Если это было сделано, потому что navigator.language не доступен в шаблоне - лучше использовать переменную/функцию, описанную в setup.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Загрузил исправления

Solve 03-components/20-UiClock
Solve 03-components/30-removable-emails
Solve 03-components/40-UiCounter
Solve 03-components/50-weather-components
Fix 01-basics/10-create-app
Fix 01-basics/20-weather
@jsru-1
Copy link
Contributor

jsru-1 commented Oct 7, 2024

Добавляю преподавателя (@ShGKme) для код-ревью.

@jsru-1 jsru-1 requested a review from ShGKme October 7, 2024 19:57
@Jenackler
Copy link
Contributor Author

Исправлены указанные ошибки.
Добавлено решение для задач по компонентам

Solve 03-components/20-UiClock
Solve 03-components/30-removable-emails
Solve 03-components/40-UiCounter
Solve 03-components/50-weather-components
Fix 01-basics/10-create-app
Fix 01-basics/20-weather
@jsru-1
Copy link
Contributor

jsru-1 commented Oct 7, 2024

Решение было обновлено, посмотрим что скажет @ShGKme

Solve 03-components/20-UiClock
Solve 03-components/30-removable-emails
Solve 03-components/40-UiCounter
Solve 03-components/50-weather-components
Fix 01-basics/10-create-app
Fix 01-basics/20-weather
@jsru-1
Copy link
Contributor

jsru-1 commented Oct 7, 2024

Решение было обновлено, посмотрим что скажет @ShGKme

@jsru-1
Copy link
Contributor

jsru-1 commented Oct 10, 2024

Проверьте, пожалуйста, ваше решение, не все тесты прошли (PR не будет принят до тех пор, пока все добавленные задачи не будут решены).

Solve 04-sfc/20-MeetupCover-style-v-bind
Solve 04-sfc/30-UiStretch
@jsru-1
Copy link
Contributor

jsru-1 commented Oct 13, 2024

Решение было обновлено, посмотрим что скажет @ShGKme

Copy link

@ShGKme ShGKme left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Все задачи приняты

@jsru-1 jsru-1 merged commit 9b620b3 into js-tasks-ru:master Oct 13, 2024
1 check passed
Comment on lines +7 to +19
export default defineComponent({
name: 'WeatherCard',

props: {
card : {
type: Object,
required: true
},
icons: {
type: Object,
required: true
}
},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Пропустил при проверке.

Сейчас для использования многих компонентов (включая компонент списка карточек) нужно передавать массив иконок. Это неудобно - пользователю даже списка, нужно иметь этот список, его кастомизации пока не требуется. Такая возможность может быть плюсом, если она дополнительная и опциональная (есть иконки по умолчанию). Но это неудобный интерфейс компонента, если для вывода списка нужно передавать объект иконок для разных погодных условий.

</div>
</li>
</ul>
<WeatherCardList :cardsList="wData" :icons="icons"/>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

По стайл гайду принято пропсы (и события) в шаблоне использовать в kebab-case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants