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

Model impl #7

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

Model impl #7

wants to merge 6 commits into from

Conversation

EJohnF
Copy link

@EJohnF EJohnF commented Nov 15, 2016

Сделал модель, потом застрял на том, как вообще динамически обновлять данные html, как писать эту связку данных из js в html

Copy link

@atronov atronov left a comment

Choose a reason for hiding this comment

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

Для начала просто попробуй нарисовать пустой экземпляр модели на странице.
Чтобы обновлять данные в html, тебе надо связать модель с представлением через события.
Ты добавил EventEvemiter, используй его.
Что советую сделать (по шагам):
Оберни View в отдельный модуль/класс.
Разбей отображение приложение/список/сущность todo.
Реализуй метод отрисовки (например: render) внутри каждого отображения.
Добавь обработчики действий пользователя внутри view.
Вызывай trigger событий (например из view), чтобы и т.д.

@@ -0,0 +1,7 @@
const Handlebars = require('handlebars');

var source = $("todo").html();
Copy link

Choose a reason for hiding this comment

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

Ты обращаешься к элементу по id, а не по тегу. Нужно писать $("#todo")

const api = require('./api');

class Model {
var store = {
Copy link

Choose a reason for hiding this comment

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

В es6 нельзя так инициализировать поля. Их надо заполнять в конструкторе.

@@ -8,68 +8,82 @@
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<!-- CSS overrides - remove if you don't need it -->
<link rel="stylesheet" href="css/app.css">
<script src="js/view.js"></script>
Copy link

Choose a reason for hiding this comment

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

Скрипт добавлен в страницу, а через browserify ты его не прогнал.
Нужно добавить его сборку в package.json/scripts, либо сделать require в app.js (recommended).

<span class="todo-count"><strong>0</strong> item left</span>
<script id="item_left" type="text/x-handlebars-template">
<span class="todo-count"><strong>{{left}}</strong> item left</span>
</script>
Copy link

Choose a reason for hiding this comment

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

Лучше описать все шаблоны в одном месте, не вкладывая их в другие элементы. Например в head.
Но лучше вынести их в скрипты. Так твое view станет независимым от документа.

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.

3 participants