2020-05-29 05:37:34 -04:00
|
|
|
/*
|
2021-06-13 19:07:40 -04:00
|
|
|
* Copyright © 2020 Luciano Iam <oss@lucianoiam.com>
|
2020-05-29 05:37:34 -04:00
|
|
|
*
|
|
|
|
* This program 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { Message } from './protocol.js';
|
2020-06-14 06:10:30 -04:00
|
|
|
import Observable from './observable.js';
|
2020-05-29 05:37:34 -04:00
|
|
|
|
|
|
|
export class Component extends Observable {
|
|
|
|
|
2020-06-14 06:06:54 -04:00
|
|
|
constructor (channel) {
|
2020-06-14 07:04:43 -04:00
|
|
|
super();
|
2020-06-14 06:06:54 -04:00
|
|
|
this._channel = channel;
|
|
|
|
}
|
2020-05-29 05:37:34 -04:00
|
|
|
|
|
|
|
get channel () {
|
2020-06-14 06:06:54 -04:00
|
|
|
return this._channel;
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
on (event, callback) {
|
|
|
|
this.addObserver(event, callback);
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:34:27 -04:00
|
|
|
notifyPropertyChanged (property) {
|
2020-06-14 06:18:21 -04:00
|
|
|
this.notifyObservers(property, this['_' + property]);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
send (node, addr, val) {
|
|
|
|
this.channel.send(new Message(node, addr, val));
|
|
|
|
}
|
|
|
|
|
|
|
|
handle (node, addr, val) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMessage (msg) {
|
|
|
|
return this.handle(msg.node, msg.addr, msg.val);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateLocal (property, value) {
|
|
|
|
this['_' + property] = value;
|
2020-06-14 06:34:27 -04:00
|
|
|
this.notifyPropertyChanged(property);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
updateRemote (property, value, node, addr) {
|
|
|
|
this['_' + property] = value;
|
|
|
|
this.send(node, addr || [], [value]);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:06:54 -04:00
|
|
|
export class ChildComponent extends Component {
|
|
|
|
|
|
|
|
constructor (parent) {
|
2020-06-14 07:04:43 -04:00
|
|
|
super(parent.channel);
|
2020-06-14 06:06:54 -04:00
|
|
|
this._parent = parent;
|
|
|
|
}
|
2020-05-29 05:37:34 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:06:54 -04:00
|
|
|
export class AddressableComponent extends ChildComponent {
|
2020-05-29 05:37:34 -04:00
|
|
|
|
|
|
|
constructor (parent, addr) {
|
|
|
|
super(parent);
|
|
|
|
this._addr = addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
get addr () {
|
|
|
|
return this._addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
get addrId () {
|
|
|
|
return this._addr.join('-');
|
|
|
|
}
|
|
|
|
|
|
|
|
updateRemote (property, value, node) {
|
|
|
|
super.updateRemote(property, value, node, this.addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|