view client/src/components/paneSetups.js @ 5560:f2204f91d286

Join the log lines of imports to the log exports to recover data from them. Used in SR export to extract information that where in the meta json but now are only found in the log.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 09 Feb 2022 18:34:40 +0100
parents fa7dc3f31ef3
children
line wrap: on
line source

const main = { id: "main", component: "Map" };

export const DEFAULT = { main };
export const COMPARESURVEYS = {
  main,
  compare: { id: "compare-survey", component: "Map" }
};
export const FAIRWAYPROFILE = {
  main,
  fairwayprofile: { id: "fairwayprofile", component: "Fairwayprofile" }
};

export const AVAILABLEFAIRWAYDEPTH = {
  main,
  availablefairwaydepth: {
    id: "availablefairwaydepth",
    component: "AvailableFairwayDepth"
  }
};

export const AVAILABLEFAIRWAYDEPTHLNWL = {
  main,
  availablefairwaydepth: {
    id: "availablefairwaydepthlnwl",
    component: "AvailableFairwayDepthLNWL"
  }
};

export const COMPARESURVEYS_FAIRWAYPROFILE = {
  main,
  compare: { id: "compare-survey", component: "Map" },
  fairwayprofile: { id: "fairwayprofile", component: "Fairwayprofile" }
};
export const GAUGE_WATERLEVEL = {
  main,
  waterlevel: { id: "gauge-waterlevel", component: "Waterlevel" }
};
export const GAUGE_HYDROLOGICALCONDITIONS = {
  main,
  hydrological: {
    id: "gauge-hydrologicalconditions",
    component: "HydrologicalConditions"
  }
};
export const GAUGE_WATERLEVEL_HYDROLOGICALCONDITIONS = {
  main,
  waterlevel: { id: "gauge-waterlevel", component: "Waterlevel" },
  hydrological: {
    id: "gauge-hydrologicalconditions",
    component: "HydrologicalConditions"
  }
};