1. /**
  2. * @module meteoJS/base/uniquenamed
  3. */
  4. import Unique from './Unique.js';
  5. import Named from './Named.js';
  6. /**
  7. * Options for constructor.
  8. *
  9. * @typedef {module:meteoJS/base/named~options}
  10. * module:meteoJS/base/uniquenamed~options
  11. * @property {mixed} [id] - Id.
  12. */
  13. /**
  14. * Class that describe objects with an unique id and with names.
  15. *
  16. * @extends module:meteoJS/base/unique.Unique
  17. * @extends module:meteoJS/base/named.Named
  18. */
  19. export class UniqueNamed extends Named {
  20. /**
  21. * @param {module:meteoJS/base/uniquenamed~options} [options] - Options.
  22. */
  23. constructor({ id, name = undefined, names = {}, langSortation = [] } = {}) {
  24. super({
  25. name,
  26. names,
  27. langSortation
  28. });
  29. Object.defineProperty(this, 'id',
  30. Object.getOwnPropertyDescriptor(Unique.prototype, 'id'));
  31. // constructor code of Unique
  32. this._id = id;
  33. }
  34. /**
  35. * @override
  36. */
  37. setId(id) {
  38. Unique.prototype.setId.call(this, id);
  39. }
  40. /**
  41. * @override
  42. */
  43. getDefaultName() {
  44. return (this._name !== undefined)
  45. ? this._name
  46. : (Object.keys(this._names).length > 0)
  47. ? this.getNameByLang()
  48. : (this._id === undefined) ? '' : this._id;
  49. }
  50. }
  51. export default UniqueNamed;