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

Упрощает получение значение свойства article.data.cover.mobile #1291

Merged
merged 1 commit into from
Aug 29, 2024

Conversation

vitya-ne
Copy link
Contributor

Упрощает xот-фикс для картинок на главной. см: 4f92d3d

Задача: получить поле(строку) article.data.cover.mobile
Необходимо:

  • убедиться что article.data.cover существует и является объектом
    • получить значение поля mobile и вернуть его
  • иначе, вернуть undefined

Для этого можем использовать оператор ?.

article.data.cover?.mobile - вернёт undefined если:

  • cover не содержит mobile
  • cover не является объектом

тесты:

function imageLink() {
  return this.cover?.mobile
}

console.log(imageLink.call({ cover: { mobile: 'image' } })); // image
console.log(imageLink.call({ cover: {} })); // undefined
console.log(imageLink.call({ cover: [] })); // undefined
console.log(imageLink.call({ cover: 'str' })); // undefined
console.log(imageLink.call({ cover: 42 })); // undefined
console.log(imageLink.call({ cover: true })); // undefined
console.log(imageLink.call({})); // undefined
console.log(imageLink.call([])); // undefined
console.log(imageLink.call('str2')); // undefined
console.log(imageLink.call(null)); // undefined

Задача: получить поле(строку) `article.data.cover.mobile`
Необходимо:
- убедиться что `article.data.cover` существует и является объектом
  - получить значение поля `mobile` и вернуть его
- иначе, вернуть `undefined`

Для этого можем использовать оператор `?.`

`article.data.cover?.mobile` - вернёт `undefined` если:
- `cover` не содержит `mobile`
- `cover` не является объектом
Copy link

Превью контента из опубликовано.

@igsekor igsekor added the улучшение Доработка существующего label Aug 29, 2024
@igsekor igsekor merged commit d140702 into doka-guide:main Aug 29, 2024
4 checks passed
@igsekor
Copy link
Member

igsekor commented Aug 29, 2024

Спасибо!!!! ❤️

@vitya-ne vitya-ne deleted the improve-prop-cast branch August 30, 2024 05:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
улучшение Доработка существующего
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants