server/ServerElement.js

  1. 'use strict';
  2. const { EventEmitter } = require('node:events');
  3. const { Message, WamsElement } = require('../shared.js');
  4. const { Hittable, Identifiable } = require('../mixins.js');
  5. /**
  6. * HACK to get around jsdoc bug that causes mixed methods and properties to be
  7. * duplicated.
  8. *
  9. * @class __ServerElement
  10. * @private
  11. * @mixes module:mixins.Hittable
  12. * @mixes module:mixins.Identifiable
  13. */
  14. /**
  15. * The ServerElement provides operations for the server to locate and move
  16. * elements around.
  17. *
  18. * @memberof module:server
  19. * @extends module:shared.WamsElement
  20. * @extends __ServerElement
  21. *
  22. * @param {Namespace} namespace - Socket.io namespace for publishing changes.
  23. * @param {Object} values - User-supplied data detailing the elements.
  24. */
  25. class ServerElement extends Identifiable(Hittable(WamsElement)) {
  26. constructor(namespace, values = {}) {
  27. super(values);
  28. /**
  29. * Socket.io namespace for publishing updates.
  30. *
  31. * @type {Namespace}
  32. */
  33. this.namespace = namespace;
  34. }
  35. /*
  36. * Publish a general notification about the status of the image.
  37. */
  38. _emitPublication() {
  39. this.namespace.emit(Message.UD_ITEM, this);
  40. }
  41. /**
  42. * Remove attributes from the element.
  43. *
  44. * @param {string[]} attributes
  45. */
  46. removeAttributes(attributes) {
  47. attributes.forEach((attr) => {
  48. delete this.attributes[attr];
  49. });
  50. this.namespace.emit(Message.RM_ATTRS, { id: this.id, attributes });
  51. }
  52. /**
  53. * Set attributes for the element.
  54. *
  55. * @param {object} attributes
  56. */
  57. setAttributes(attributes) {
  58. this.attributes = Object.assign(this.attributes, attributes);
  59. this.namespace.emit(Message.SET_ATTRS, { id: this.id, attributes });
  60. }
  61. }
  62. Object.assign(ServerElement.prototype, EventEmitter.prototype);
  63. module.exports = ServerElement;