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

почти всё. добавляет, считывает... #33

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

AlexeySkydan201
Copy link
Collaborator

No description provided.

this.container1 = document.getElementById('container');
this.scroll = document.getElementById('scroll');
this.arrEditMainInfo = ['First Name', 'Last Name', 'Company'];
this.arrAdd = ['add home phone', 'add email', 'add address', 'add birthday', 'add social profile', 'add field']
this.arrAdd = ['add fullName', 'add email', 'add birthdate', 'add address', 'add gender ']
Copy link
Member

Choose a reason for hiding this comment

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

вместо массива лучше сделать статические декларативные данные в верстке.

Массив превращает в одном из мест твой код в циклы и ненужными условиями - это не тот сценарий где нужно бояться дублирования кода.

Вот создание каждого инпута - это можно вынести "вроде отдельного компонента"

console.log(`nnn`, id)
this.bd.forEach(element => {
if (element._id == id) {
this.arrAdd[0] = 'name - ' + element.fullName;
Copy link
Member

Choose a reason for hiding this comment

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

доступ по индексу это плохая практика, этого нужно избегать

</a>
</nav>
<nav class="main-nav" id = "nav1">
<a href="" class="tab active">
Copy link
Member

Choose a reason for hiding this comment

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

 <a href="keypad.html" class="tab">
            <span class="glyphicon glyphicon-th" aria-hidden="true"></span>
            <span class="tab-text">Keypad</span>
            </a>```

а вот это хороший кандидат чтобы нарисовать ссылку

<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
<span class="tab-text">Add user</span>
</a>
</nav>
</div>`
const footer = document.getElementById('fo-er')
Copy link
Member

Choose a reason for hiding this comment

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

этот код нужно сделать классом, назвать роутинг(т.е переходы по страницам) и у него вызываьт методы

class Keypad {
constructor() {
this.lol = document.getElementById('lol');
this.arr = ['1', '2', '3', '4', '5', '6', '7', '8', '9', "'*'", '0', "'#'"];
Copy link
Member

Choose a reason for hiding this comment

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

цифры у нас всегда статичны и создавать из них массив нет смысла.

Данные которые приходят с сервера или меняются состояние приложения - необходимо хранить в структурах данных, остальные данные в 95% случаев это статика или декларативный код

// императивный вариант - менее читабельный
const numbers = [1,2,3]
const numbersData = numbers.reduce((allNumbers, number) => allNumber + `<li>number</li>`, ``)


декларативный вариант
const numbersData_v2 = `
  <li>1</li>
  <li>2</li>
  <li>3</li>
`

второй случай очевиднее, нам не нужны калькуляции для этого, потому что у нас никогда не появится цифра "11" например

this.memory += `${num}`;
if (this.memory === '#' || this.memory === '*') {
this.memory = this.memory;
} else if (this.memory.length == 1) {
Copy link
Member

Choose a reason for hiding this comment

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

это нужно сделать при помощи regExp, можно гуглить, общаться в чате или как-то еще.

Этот код я не пропущу

this.memory = this.memory + '-';
}

this.number.children[1].textContent = this.memory;
Copy link
Member

Choose a reason for hiding this comment

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

this.number.children[1].textContent = this.memory;
выглядит как костыль. Тебе нужно конкретно получить элемент и изменять его.

children[1] - сегодня он равняется одному, завтра другому... и твой код может поломаться, это ненадежно

// <span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span>`;
// number.innerHTML += strNumber;

//var arr = ['1', '2', '3', '4', '5', '6', '7', '8', '9', "'*'", '0', "'#'"];
Copy link
Member

Choose a reason for hiding this comment

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

удали пожалуйста все комментарии и неиспользуемый код

@AlexeySkydan201
Copy link
Collaborator Author

AlexeySkydan201 commented Aug 27, 2018 via email

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.

2 participants