111 lines
3.0 KiB
JavaScript
111 lines
3.0 KiB
JavaScript
|
/*
|
||
|
* μlogger
|
||
|
*
|
||
|
* Copyright(C) 2019 Bartek Fabiszewski (www.fabiszewski.net)
|
||
|
*
|
||
|
* This is free software; you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
import uObserve from './observe.js';
|
||
|
|
||
|
/**
|
||
|
* @class ViewModel
|
||
|
* @property {Object} model
|
||
|
*/
|
||
|
export default class ViewModel {
|
||
|
|
||
|
/**
|
||
|
* @param {Object} model
|
||
|
*/
|
||
|
constructor(model) {
|
||
|
this._model = model;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return {Object}
|
||
|
*/
|
||
|
get model() {
|
||
|
return this._model;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Apply bindings for model properties
|
||
|
*/
|
||
|
bindAll() {
|
||
|
for (const key in this._model) {
|
||
|
if (this._model.hasOwnProperty(key)) {
|
||
|
this.bind(key);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Creates bidirectional binding between model property and DOM element.
|
||
|
* For input elements model property value change triggers change in DOM element and vice versa.
|
||
|
* In case of anchor element binding is one way. Model property is callback that will receive click event.
|
||
|
* @param key
|
||
|
*/
|
||
|
bind(key) {
|
||
|
const dataProp = 'bind';
|
||
|
const observers = document.querySelectorAll(`[data-${dataProp}]`);
|
||
|
observers.forEach(/** @param {HTMLElement} element */ (element) => {
|
||
|
const name = element.dataset[dataProp];
|
||
|
if (name === key) {
|
||
|
if (element instanceof HTMLInputElement || element instanceof HTMLSelectElement) {
|
||
|
let prop = 'value';
|
||
|
let getVal = (val) => val;
|
||
|
if (element.type === 'checkbox') {
|
||
|
prop = 'checked';
|
||
|
getVal = (val) => !!val;
|
||
|
}
|
||
|
element.addEventListener('change', () => {
|
||
|
this._model[key] = element[prop];
|
||
|
});
|
||
|
uObserve.observe(this.model, key, (val) => {
|
||
|
val = getVal(val);
|
||
|
if (element[prop] !== val) {
|
||
|
element[prop] = val;
|
||
|
}
|
||
|
});
|
||
|
} else if (element instanceof HTMLAnchorElement) {
|
||
|
element.addEventListener('click', (event) => {
|
||
|
if (typeof this._model[key] !== 'function') {
|
||
|
throw new Error(`Property ${key} is not a callback`);
|
||
|
}
|
||
|
this._model[key](event);
|
||
|
event.preventDefault();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {string} property
|
||
|
* @param {ObserveCallback} callback
|
||
|
*/
|
||
|
onChanged(property, callback) {
|
||
|
uObserve.observe(this.model, property, callback);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {string} property
|
||
|
* @param {ObserveCallback} callback
|
||
|
*/
|
||
|
unsubscribe(property, callback) {
|
||
|
uObserve.unobserve(this.model, property, callback);
|
||
|
}
|
||
|
|
||
|
}
|