mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
41 lines
926 B
JavaScript
41 lines
926 B
JavaScript
class RessourceDisplay {
|
|
constructor(displayElement) {
|
|
this.displayElement = displayElement;
|
|
this.userId = this.displayElement.dataset.userId;
|
|
this.isInitialized = false;
|
|
if (this.userId) {
|
|
app.subscribeUser(this.userId).then((response) => {
|
|
app.socket.on('PATCH', (patch) => {this.onPATCH(patch);});
|
|
});
|
|
app.getUser(this.userId).then((user) => {
|
|
this.init(user);
|
|
this.isInitialized = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
init(user) {throw 'Not implemented';}
|
|
|
|
onPATCH(patch) {throw 'Not implemented';}
|
|
|
|
setElement(element, value) {
|
|
switch (element.tagName) {
|
|
case 'INPUT':
|
|
element.value = value;
|
|
M.updateTextFields();
|
|
break;
|
|
default:
|
|
element.innerText = value;
|
|
break;
|
|
}
|
|
}
|
|
|
|
setElements(elements, value) {
|
|
let element;
|
|
|
|
for (element of elements) {
|
|
this.setElement(element, value);
|
|
}
|
|
}
|
|
}
|