view client/src/components/paneSetups.js @ 3644:9e91b416d5bb

client: cross profile: display arrow in diagram consciously diceded to not draw it in the svg so it will not be exported to pdf since there it does not make sense without the map
author Markus Kottlaender <markus@intevation.de>
date Wed, 12 Jun 2019 17:10:49 +0200
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"
  }
};