storeObjectRef.js 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import { StoreObject } from './storeObject';
  2. import Decimal from 'decimal.js';
  3. export class StoreObjectRef extends StoreObject {
  4. constructor (refID, store) {
  5. super(null, null, false);
  6. this.refID = refID;
  7. this.store = store;
  8. }
  9. get isRef () {
  10. return true;
  11. }
  12. get type () {
  13. return this.store.applyStore(this.refID).type;
  14. }
  15. get value () {
  16. return this.store.applyStore(this.refID).value;
  17. }
  18. get number () {
  19. if (this.value instanceof Decimal) {
  20. return this.value.toNumber();
  21. } else {
  22. return null;
  23. }
  24. }
  25. getRefObj () {
  26. return this.store.applyStore(this.refID);
  27. }
  28. updateRef (stoObj) {
  29. this.store.updateStore(this.refID, stoObj);
  30. }
  31. isCompatible (another) {
  32. return this.store.applyStore(this.refID).isCompatible(another);
  33. }
  34. }