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

Отмеченные Email-ы #7

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions 02-basics-2/40-marked-emails/MarkedEmailsApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,39 @@ export const emails = [
export default defineComponent({
name: 'MarkedEmailsApp',

setup() {},
setup() {
const search = ref(null)
const email = ref(emails)

const emailMarked = computed(() => {
return email.value.map((mail) => {
if (mail.indexOf(search.value) !== -1 && search.value !== "") {
return {
mail: mail,
marked: true,
}
}
return {
mail: mail
}
})
})
Comment on lines +39 to +51
Copy link

Choose a reason for hiding this comment

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

Сейчас только понял, что неправильно использовал computed. Он должен вычислять на основании реактивных переменных, а у меня видоизменяет. Так подумал из за того, что о нем идет речь в задании. Тут нужно было указать watch либо watchEffect верно?

computed действительно должен вычислять результат на основе других переменных и ни в коем случае не изменять другие данные.

Но ваш computed корректный. Он вычисляет новый массив объектов на основе email и search переменных, не изменяя в процессе вычисления ни одну из них.

Copy link

Choose a reason for hiding this comment

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

По мелочи:

  • mail.indexOf(search.value) !== -1 в современном JS можно заменить на mail.includes(search.value)
  • Если создаётся массив объектов, лучше сохранять его структуру, и во втором случае вместо { mail } указывать явно marked: { mail, marked: false }


return {
search,
emailMarked,
email
}
},

template: `
<div>
<div class="form-group">
<input type="search" aria-label="Search" />
<input v-model="search" type="search" aria-label="Search" />
</div>
<ul aria-label="Emails">
<li>
[email protected]
</li>
<li class="marked">
[email protected]
<li :class="{'marked': mail.marked}" v-for="mail in emailMarked" >
{{ mail.mail }}
</li>
</ul>
</div>
Expand Down
Loading