All files / app/store origin.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 1/1
100% Lines 9/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25158x     158x   279x 279x 279x 279x 279x 279x     279x                      
import { makeAutoObservable, observable } from 'mobx';
import { Ref } from '../model/ref';
 
export class OriginStore {
 
  origins: Ref[] = [];
  list: string[] = [];
  lookup = new Map<string, string>();
  tunnelLookup = new Map<string, string>();
  reverseLookup = new Map<string, string>();
  originMap = new Map<string, Map<string, string>>();
 
  constructor() {
    makeAutoObservable(this, {
      origins: observable.shallow,
      list: observable.ref,
      lookup: observable.ref,
      tunnelLookup: observable.ref,
      reverseLookup: observable.ref,
      originMap: observable.ref,
    });
  }
 
}