annotate client/src/components/fairway/AvailableFairwayDepth.vue @ 3963:feb53713bc2f diagram-cleanup

client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
author Markus Kottlaender <markus@intevation.de>
date Fri, 12 Jul 2019 15:14:16 +0200
parents 7b3935a8d9ee
children afc7bca44df4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
2 <div class="d-flex flex-column flex-fill">
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
3 <UIBoxHeader icon="chart-area" :title="title" :closeCallback="close" />
3279
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
4 <div class="d-flex flex-fill">
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
5 <DiagramLegend>
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
6 <div v-for="(entry, index) in legend" :key="index" class="legend">
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
7 <span
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
8 :style="
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
9 `${legendStyle(
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
10 index
3280
8fb81b45085f available_fairway_depth: use rounded border for legend
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3279
diff changeset
11 )}; border-radius: 0.25rem; width: 40px; height: 20px;`
3279
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
12 "
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
13 ></span>
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
14 {{ entry }}
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
15 </div>
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
16 <div>
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
17 <select
3273
050e72ce5cf7 client: diagram-template: add template elements and get templates from backend(fairway avalibilty)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3268
diff changeset
18 @change="applyChange"
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
19 v-model="form.template"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
20 class="form-control d-block custom-select-sm w-100 mt-1"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
21 >
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
22 <option
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
23 v-for="template in templates"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
24 :value="template"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
25 :key="template.name"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
26 >
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
27 {{ template.name }}
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
28 </option>
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
29 </select>
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
30 <button
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
31 @click="downloadPDF"
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
32 type="button"
3466
dfa97aad1134 client: unify the buttons style for diagram legend
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3464
diff changeset
33 class="btn btn-sm btn-info d-block w-100 mt-2"
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
34 >
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
35 <translate>Export to PDF</translate>
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
36 </button>
3437
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
37 <a
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
38 :href="dataLink"
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
39 :download="csvFileName"
3466
dfa97aad1134 client: unify the buttons style for diagram legend
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3464
diff changeset
40 class="mt-2 btn btn-sm btn-info w-100"
3437
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
41 >Download CSV</a
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
42 >
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
43 </div>
3279
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
44 </DiagramLegend>
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
45 <div
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
46 class="d-flex flex-fill justify-content-center align-items-center"
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
47 :id="containerId"
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
48 >
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
49 <div v-if="!fwData.length">
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
50 <translate>No data available.</translate>
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
51 </div>
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
52 </div>
3135
Thomas Junk <thomas.junk@intevation.de>
parents: 3134
diff changeset
53 </div>
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
54 </div>
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
55 </template>
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
56
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
57 <script>
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
58 /* This is Free Software under GNU Affero General Public License v >= 3.0
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
59 * without warranty, see README.md and license for details.
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
60 *
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
61 * SPDX-License-Identifier: AGPL-3.0-or-later
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
62 * License-Filename: LICENSES/AGPL-3.0.txt
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
63 *
3800
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
64 * Copyright (C) 2018, 2019 by via donau
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 * – Österreichische Wasserstraßen-Gesellschaft mbH
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 * Software engineering by Intevation GmbH
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67 *
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 * Author(s):
3800
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
69 * * Thomas Junk <thomas.junk@intevation.de>
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
70 * * Markus Kottländer <markus.kottlaender@intevation.de>
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
71 * * Fadi Abbud <fadi.abbud@intevation.de>
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
72 */
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
73 import * as d3 from "d3";
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
74 import { mapState } from "vuex";
3939
f9de2ea2706e available_fairway_depth: leverage mixin
Thomas Junk <thomas.junk@intevation.de>
parents: 3927
diff changeset
75 import { diagram, pdfgen, templateLoader } from "@/lib/mixins";
3327
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
76 import { FREQUENCIES } from "@/store/fairwayavailability";
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
77 import filters from "@/lib/filters.js";
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
78
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
79 // hoursInDays is a const instead of component method because it's used where
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
80 // the component context is not available
3213
b3a1ecdda797 available_fairway_depth: hours in days
Thomas Junk <thomas.junk@intevation.de>
parents: 3210
diff changeset
81 const hoursInDays = x => x / 24;
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
82 const COLORS = {
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
83 LDC: "#cdcdcd",
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
84 HIGHEST: "#3675ff",
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
85 REST: ["#782121", "#ff6c6c", "#ffaaaa"]
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
86 };
3213
b3a1ecdda797 available_fairway_depth: hours in days
Thomas Junk <thomas.junk@intevation.de>
parents: 3210
diff changeset
87
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
88 export default {
3939
f9de2ea2706e available_fairway_depth: leverage mixin
Thomas Junk <thomas.junk@intevation.de>
parents: 3927
diff changeset
89 mixins: [diagram, pdfgen, templateLoader],
3279
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
90 components: {
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
91 DiagramLegend: () => import("@/components/DiagramLegend")
215173f62900 available_fairway_depth: improve legend layout
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3273
diff changeset
92 },
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
93 data() {
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
94 return {
3918
1e837d86bead available_fairway_lnwl: fixed containerID
Thomas Junk <thomas.junk@intevation.de>
parents: 3917
diff changeset
95 containerId: "availablefairwaydepth-diagram-container",
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
96 scalePaddingLeft: 60,
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
97 scalePaddingRight: 0,
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
98 paddingTop: 25
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
99 };
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
100 },
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
101 computed: {
3210
66e90b48387a available_fairway-depth: store refactored
Thomas Junk <thomas.junk@intevation.de>
parents: 3192
diff changeset
102 ...mapState("fairwayavailability", [
3191
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
103 "selectedFairwayAvailabilityFeature",
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
104 "fwData",
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
105 "from",
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
106 "to",
3216
ee6a4e8af766 available_fairway_depth: legend POC
Thomas Junk <thomas.junk@intevation.de>
parents: 3213
diff changeset
107 "frequency",
3476
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
108 "csv",
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
109 "depthlimit1",
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
110 "depthlimit2",
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
111 "widthlimit1",
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
112 "widthlimit2"
3191
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
113 ]),
3476
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
114 legend() {
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
115 const d = [this.depthlimit1, this.depthlimit2].sort();
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
116 const w = [this.widthlimit1, this.widthlimit2].sort();
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
117 const lowerBound = [d[0], w[0]].filter(x => x).join(", ");
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
118 const upperBound = [d[1], w[1]].filter(x => x).join(", ");
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
119 return [
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
120 `> LDC`,
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
121 `>= ${upperBound}`,
3476
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
122 `< ${upperBound}`,
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
123 `< ${lowerBound}`
3476
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
124 ];
cc11f207e060 afd: omit legend generation from CSV. Legend is generated from known inputs
Thomas Junk <thomas.junk@intevation.de>
parents: 3466
diff changeset
125 },
3437
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
126 dataLink() {
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
127 return `data:text/csv;charset=utf-8, ${encodeURIComponent(this.csv)}`;
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
128 },
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
129 csvFileName() {
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
130 return `${this.$gettext("fairwayavailability")}-${
3481
ba26adce0ce8 afd: robust legend name
Thomas Junk <thomas.junk@intevation.de>
parents: 3476
diff changeset
131 this.featureName
3437
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
132 }-${filters.surveyDate(this.fromDate)}-${filters.surveyDate(
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
133 this.toDate
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
134 )}-${this.$gettext(this.frequency)}-.csv`;
6a044d6c2cdc afd: csv download
Thomas Junk <thomas.junk@intevation.de>
parents: 3410
diff changeset
135 },
3327
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
136 frequencyToRange() {
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
137 const frequencies = {
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
138 [FREQUENCIES.MONTHLY]: [-33, 33],
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
139 [FREQUENCIES.QUARTERLY]: [-93, 93],
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
140 [FREQUENCIES.YEARLY]: [-370, 370]
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
141 };
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
142 return frequencies[this.frequency];
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
143 },
3191
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
144 fromDate() {
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
145 return this.from;
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
146 },
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
147 toDate() {
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
148 return this.to;
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
149 },
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
150 availability() {
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
151 return this.plainAvailability;
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
152 },
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
153 title() {
3191
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
154 return `Available Fairway Depth: ${
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
155 this.featureName
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
156 } (${filters.surveyDate(this.fromDate)} - ${filters.surveyDate(
c0cd5dfec153 statistics: persist fields to vuex
Thomas Junk <thomas.junk@intevation.de>
parents: 3185
diff changeset
157 this.toDate
3268
1a97a079ef1b client: diagram-template: fix typo
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3267
diff changeset
158 )}) ${this.$gettext(this.frequency)}`;
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
159 },
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
160 featureName() {
3481
ba26adce0ce8 afd: robust legend name
Thomas Junk <thomas.junk@intevation.de>
parents: 3476
diff changeset
161 if (this.selectedFairwayAvailabilityFeature == null) return "";
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
162 return this.selectedFairwayAvailabilityFeature.properties.name;
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
163 }
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
164 },
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
165 methods: {
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
166 downloadPDF() {
3800
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
167 let title = `Available Fairway Depth: ${this.featureName}`;
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
168 this.generatePDF({
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
169 templateData: this.templateData,
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
170 diagramTitle: title
26325370ba18 client: improve pdf generation
Bernhard Reiter <bernhard@intevation.de>
parents: 3780
diff changeset
171 });
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
172 this.pdf.doc.save(`Available Fairway Depth: ${this.featureName}`);
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
173 },
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
174 addDiagramLegend(position, offset, color) {
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
175 let x = offset.x,
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
176 y = offset.y;
3333
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
177 this.pdf.doc.setFontSize(10);
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
178 let width =
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
179 (this.pdf.doc.getStringUnitWidth(">= LDC") * 10) / (72 / 25.6) + 15;
3333
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
180 // if position is on the right, x needs to be calculate with pdf width and
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
181 // the size of the element
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
182 if (["topright", "bottomright"].indexOf(position) !== -1) {
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
183 x = this.pdf.width - offset.x - width;
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
184 }
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
185 if (["bottomright", "bottomleft"].indexOf(position) !== -1) {
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
186 y = this.pdf.height - offset.y - this.getTextHeight(6);
3333
d5dbfba9faae clinet: pdf-template: fix positioning of diagramlegend (FairwayAvailability,AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3330
diff changeset
187 }
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
188
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
189 this.pdf.doc.setTextColor(color);
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
190 this.pdf.doc.setDrawColor(COLORS.LDC);
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
191 this.pdf.doc.setFillColor(COLORS.LDC);
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
192 this.pdf.doc.roundedRect(x, y, 10, 4, 1.5, 1.5, "FD");
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
193 this.pdf.doc.text(this.legend[0], x + 12, y + 3);
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
194
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
195 this.pdf.doc.setDrawColor(COLORS.REST[0]);
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
196 this.pdf.doc.setFillColor(COLORS.REST[0]);
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
197 this.pdf.doc.roundedRect(x, y + 5, 10, 4, 1.5, 1.5, "FD");
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
198 this.pdf.doc.text(this.legend[1], x + 12, y + 8);
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
199
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
200 this.pdf.doc.setDrawColor(COLORS.REST[1]);
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
201 this.pdf.doc.setFillColor(COLORS.REST[1]);
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
202 this.pdf.doc.roundedRect(x, y + 10, 10, 4, 1.5, 1.5, "FD");
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
203 this.pdf.doc.text(this.legend[2], x + 12, y + 13);
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
204
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
205 this.pdf.doc.setDrawColor(COLORS.HIGHEST);
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
206 this.pdf.doc.setFillColor(COLORS.HIGHEST);
3493
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
207 this.pdf.doc.roundedRect(x, y + 15, 10, 4, 1.5, 1.5, "FD");
da58cf951342 client: diagram-template: improve diagramlegend element (AvailableFairwayDepth)
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3484
diff changeset
208 this.pdf.doc.text(this.legend[3], x + 12, y + 18);
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
209 },
3239
a7d44d1ae57d available_fairway_depth: legend
Thomas Junk <thomas.junk@intevation.de>
parents: 3235
diff changeset
210 legendStyle(index) {
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
211 return [
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
212 `background-color: ${COLORS.LDC};`,
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
213 `background-color: ${COLORS.HIGHEST};`,
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
214 `background-color: ${COLORS.REST[1]};`,
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
215 `background-color: ${COLORS.REST[0]};`
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
216 ][index];
3239
a7d44d1ae57d available_fairway_depth: legend
Thomas Junk <thomas.junk@intevation.de>
parents: 3235
diff changeset
217 },
3184
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
218 close() {
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
219 this.$store.commit("application/paneSetup", "DEFAULT");
1ba2a7d22fbb available_fairway_depth: display selected feature
Thomas Junk <thomas.junk@intevation.de>
parents: 3180
diff changeset
220 },
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
221 getPrintLayout() {
3941
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
222 return {
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
223 main: { top: 0, right: 20, bottom: 50, left: 20 }
3941
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
224 };
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
225 },
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
226 drawDiagram() {
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
227 const elem = document.querySelector("#" + this.containerId);
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
228 const svgWidth = elem != null ? elem.clientWidth : 0;
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
229 const svgHeight = elem != null ? elem.clientHeight : 0;
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
230 const layout = this.getPrintLayout();
3941
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
231 const dimensions = this.getDimensions({
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
232 svgHeight,
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
233 svgWidth,
7b3935a8d9ee refactor addDiagram to mixin and remove code duplication
Thomas Junk <thomas.junk@intevation.de>
parents: 3939
diff changeset
234 ...layout
3235
0c5a28ffe9ee available_fairway_depth: flexible layouting options
Thomas Junk <thomas.junk@intevation.de>
parents: 3216
diff changeset
235 });
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
236 d3.select("#" + this.containerId + " svg").remove();
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
237 this.renderTo({ element: "#" + this.containerId, dimensions });
3911
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
238 },
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
239 renderTo({ element, dimensions }) {
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
240 const diagram = d3
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
241 .select(element)
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
242 .append("svg")
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
243 .attr("width", "100%")
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
244 .attr("height", "100%");
e4e496ae7974 fairway_availability: rendering to offscreen element
Thomas Junk <thomas.junk@intevation.de>
parents: 3909
diff changeset
245 diagram.append("g");
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
246 const yScale = d3
3180
429e28295902 available_fairway_depth: implement reactivity
Thomas Junk <thomas.junk@intevation.de>
parents: 3153
diff changeset
247 .scaleLinear()
3327
7ab8a176db92 available_fairway_depth: adjust scale according to selected timerange
Thomas Junk <thomas.junk@intevation.de>
parents: 3291
diff changeset
248 .domain(this.frequencyToRange)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
249 .range([dimensions.mainHeight - 30, 0]);
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
250 this.drawScaleLabel({ diagram, dimensions });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
251 this.drawScale({ diagram, dimensions, yScale });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
252 this.drawBars({ diagram, yScale, dimensions });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
253 this.drawTooltip(diagram);
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
254 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
255 drawTooltip(diagram) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
256 diagram
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
257 .append("text")
3874
7b6a74919051 client: available fairway depth diagram: rounding day numbers
Markus Kottlaender <markus@intevation.de>
parents: 3717
diff changeset
258 .text("")
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
259 .attr("font-size", "0.8em")
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
260 .attr("opacity", 0)
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
261 .attr("id", "tooltip");
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
262 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
263 drawBars({ diagram, yScale, dimensions }) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
264 const widthPerItem = Math.min(
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
265 (dimensions.width - this.scalePaddingLeft - this.scalePaddingRight) /
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
266 this.fwData.length,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
267 180
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
268 );
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
269 const spaceBetween = widthPerItem * 0.2;
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
270 const ldcOffset = widthPerItem * 0.1;
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
271 const everyBar = diagram
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
272 .selectAll("g.bars")
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
273 .data(this.fwData)
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
274 .enter()
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
275 .append("g")
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
276 .attr("class", "bars")
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
277 .attr("transform", (d, i) => {
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
278 const dx = this.scalePaddingLeft + i * widthPerItem;
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
279 return `translate(${dx})`;
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
280 });
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
281 this.drawSingleBars({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
282 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
283 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
284 dimensions,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
285 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
286 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
287 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
288 });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
289 this.drawLabelPerBar({ everyBar, dimensions, widthPerItem });
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
290 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
291 drawSingleBars({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
292 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
293 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
294 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
295 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
296 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
297 }) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
298 this.drawLDC({ everyBar, yScale, widthPerItem, spaceBetween, ldcOffset });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
299 this.drawHighestLevel({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
300 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
301 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
302 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
303 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
304 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
305 });
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
306 this.drawLowerLevels({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
307 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
308 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
309 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
310 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
311 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
312 });
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
313 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
314 drawLowerLevels({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
315 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
316 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
317 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
318 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
319 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
320 }) {
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
321 everyBar
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
322 .selectAll("g.bars")
3330
0e442b547f6d mocking fairway_availability
Thomas Junk <thomas.junk@intevation.de>
parents: 3327
diff changeset
323 .data(d => d.lowerLevels)
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
324 .enter()
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
325 .append("rect")
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
326 .on("mouseover", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
327 d3.select(this).attr("opacity", "0.8");
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
328 d3.select("#tooltip").attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
329 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
330 .on("mouseout", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
331 d3.select(this).attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
332 d3.select("#tooltip").attr("opacity", 0);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
333 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
334 .on("mousemove", function(d) {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
335 let y = d3.mouse(this)[1];
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
336 const dy = document
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
337 .querySelector(".diagram-container")
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
338 .getBoundingClientRect().left;
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
339 const value = Number.parseFloat(hoursInDays(d.height)).toFixed(2);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
340 d3.select("#tooltip")
3874
7b6a74919051 client: available fairway depth diagram: rounding day numbers
Markus Kottlaender <markus@intevation.de>
parents: 3717
diff changeset
341 .text(Math.round(value))
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
342 .attr("y", y - 10)
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
343 .attr("x", d3.event.pageX - dy);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
344 //d3.event.pageX gives coordinates relative to SVG
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
345 //dy gives offset of svg on page
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
346 })
3347
cd745be63f71 available_fairway_depth: draw lower levels refactored
Thomas Junk <thomas.junk@intevation.de>
parents: 3333
diff changeset
347 .attr("y", d => {
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
348 return (
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
349 2 * yScale(0) - yScale(hoursInDays(d.translateY)) + this.paddingTop
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
350 );
3347
cd745be63f71 available_fairway_depth: draw lower levels refactored
Thomas Junk <thomas.junk@intevation.de>
parents: 3333
diff changeset
351 })
3128
1610d3042bbb fairway_availability: generative code fixed
Thomas Junk <thomas.junk@intevation.de>
parents: 3125
diff changeset
352 .attr("height", d => {
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
353 return yScale(0) - yScale(hoursInDays(d.height));
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
354 })
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
355 .attr("x", ldcOffset + spaceBetween / 2)
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
356 .attr("width", widthPerItem - ldcOffset - spaceBetween)
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
357 .attr("fill", (d, i) => {
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
358 return COLORS.REST[i];
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
359 });
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
360 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
361 fnheight({ name, yScale }) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
362 return d => yScale(0) - yScale(hoursInDays(d[name]));
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
363 },
3914
9440d2922097 client: available fairwaydepth diagram: adjust width of ldc bar, draw 0-tick line as solid line
Markus Kottlaender <markus@intevation.de>
parents: 3911
diff changeset
364 drawLDC({ everyBar, yScale, widthPerItem, spaceBetween, ldcOffset }) {
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
365 const height = this.fnheight({ name: "ldc", yScale });
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
366 everyBar
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
367 .append("rect")
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
368 .on("mouseover", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
369 d3.select(this).attr("opacity", "0.8");
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
370 d3.select("#tooltip").attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
371 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
372 .on("mouseout", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
373 d3.select(this).attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
374 d3.select("#tooltip").attr("opacity", 0);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
375 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
376 .on("mousemove", function(d) {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
377 let y = d3.mouse(this)[1];
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
378 const dy = document
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
379 .querySelector(".diagram-container")
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
380 .getBoundingClientRect().left;
3371
f76a694f7f7b available_fairway_depth: fix tooltip
Thomas Junk <thomas.junk@intevation.de>
parents: 3360
diff changeset
381 const value = Number.parseFloat(hoursInDays(d.ldc)).toFixed(2);
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
382 d3.select("#tooltip")
3874
7b6a74919051 client: available fairway depth diagram: rounding day numbers
Markus Kottlaender <markus@intevation.de>
parents: 3717
diff changeset
383 .text(Math.round(value))
3410
e5bc8f4924cb afd: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3408
diff changeset
384 .attr("y", y - 50)
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
385 .attr("x", d3.event.pageX - dy);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
386 //d3.event.pageX gives coordinates relative to SVG
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
387 //dy gives offset of svg on page
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
388 })
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
389 .attr("y", yScale(0))
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
390 .attr("height", height)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
391 .attr("x", spaceBetween / 2)
3914
9440d2922097 client: available fairwaydepth diagram: adjust width of ldc bar, draw 0-tick line as solid line
Markus Kottlaender <markus@intevation.de>
parents: 3911
diff changeset
392 .attr("width", widthPerItem - ldcOffset - spaceBetween)
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
393 .attr(
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
394 "transform",
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
395 d => `translate(0 ${this.paddingTop + -1 * height(d)})`
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
396 )
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
397 .attr("fill", COLORS.LDC)
3216
ee6a4e8af766 available_fairway_depth: legend POC
Thomas Junk <thomas.junk@intevation.de>
parents: 3213
diff changeset
398 .attr("id", "ldc");
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
399 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
400 drawHighestLevel({
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
401 everyBar,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
402 yScale,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
403 widthPerItem,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
404 spaceBetween,
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
405 ldcOffset
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
406 }) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
407 const height = this.fnheight({ name: "highestLevel", yScale });
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
408 everyBar
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
409 .append("rect")
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
410 .on("mouseover", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
411 d3.select(this).attr("opacity", "0.8");
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
412 d3.select("#tooltip").attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
413 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
414 .on("mouseout", function() {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
415 d3.select(this).attr("opacity", 1);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
416 d3.select("#tooltip").attr("opacity", 0);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
417 })
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
418 .on("mousemove", function(d) {
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
419 let y = d3.mouse(this)[1];
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
420 const dy = document
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
421 .querySelector(".diagram-container")
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
422 .getBoundingClientRect().left;
3371
f76a694f7f7b available_fairway_depth: fix tooltip
Thomas Junk <thomas.junk@intevation.de>
parents: 3360
diff changeset
423 const value = Number.parseFloat(hoursInDays(d.highestLevel)).toFixed(
f76a694f7f7b available_fairway_depth: fix tooltip
Thomas Junk <thomas.junk@intevation.de>
parents: 3360
diff changeset
424 2
f76a694f7f7b available_fairway_depth: fix tooltip
Thomas Junk <thomas.junk@intevation.de>
parents: 3360
diff changeset
425 );
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
426 d3.select("#tooltip")
3874
7b6a74919051 client: available fairway depth diagram: rounding day numbers
Markus Kottlaender <markus@intevation.de>
parents: 3717
diff changeset
427 .text(Math.round(value))
3410
e5bc8f4924cb afd: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3408
diff changeset
428 .attr("y", y - 50)
3360
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
429 .attr("x", d3.event.pageX - dy);
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
430 //d3.event.pageX gives coordinates relative to SVG
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
431 //dy gives offset of svg on page
b2ccfebd5616 available_fairway_depth: tooltips
Thomas Junk <thomas.junk@intevation.de>
parents: 3349
diff changeset
432 })
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
433 .attr("y", yScale(0))
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
434 .attr("height", height)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
435 .attr("x", ldcOffset + spaceBetween / 2)
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
436 .attr("width", widthPerItem - ldcOffset - spaceBetween)
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
437 .attr(
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
438 "transform",
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
439 d => `translate(0 ${this.paddingTop + -1 * height(d)})`
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
440 )
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
441 .attr("fill", COLORS.HIGHEST);
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
442 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
443 drawLabelPerBar({ everyBar, dimensions, widthPerItem }) {
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
444 everyBar
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
445 .append("text")
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
446 .text(d => d.label)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
447 .attr("y", dimensions.mainHeight + this.paddingTop - 5)
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
448 .attr("x", widthPerItem / 2)
3717
eab5e934c37d client: available fairway depth diagram: decreased label font-size to avoid overlapping at least a little bit better
Markus Kottlaender <markus@intevation.de>
parents: 3716
diff changeset
449 .attr("text-anchor", "middle")
3922
32b656e77e2f client: fwa diagrams: better alignment of tick labels in pdf
Markus Kottlaender <markus@intevation.de>
parents: 3920
diff changeset
450 .attr("font-size", 10);
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
451 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
452 drawScaleLabel({ diagram, dimensions }) {
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
453 diagram
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
454 .append("text")
3963
feb53713bc2f client: moved duplicated code to mixins and unified code patterns in diagram components [WIP]
Markus Kottlaender <markus@intevation.de>
parents: 3941
diff changeset
455 .text(this.$gettext("Sum of days"))
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
456 .attr("text-anchor", "middle")
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
457 .attr("x", 0)
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
458 .attr("y", 0)
3903
7e519a11de4e client: available fairway depth diagram: adjusted position of y axis label
Markus Kottlaender <markus@intevation.de>
parents: 3891
diff changeset
459 .attr("dy", "20")
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
460 .attr(
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
461 "transform",
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
462 `translate(2, ${(dimensions.mainHeight + this.paddingTop) /
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
463 2}), rotate(-90)`
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
464 );
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
465 },
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
466 drawScale({ diagram, dimensions, yScale }) {
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
467 const yAxisLeft = d3
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
468 .axisLeft()
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
469 .tickSizeInner(
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
470 dimensions.width - this.scalePaddingLeft - this.scalePaddingRight
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
471 )
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
472 .tickSizeOuter(0)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
473 .scale(yScale);
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
474 const yAxisRight = d3
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
475 .axisRight()
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
476 .tickSizeInner(
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
477 dimensions.width - this.scalePaddingLeft - this.scalePaddingRight
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
478 )
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
479 .tickSizeOuter(0)
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
480 .scale(yScale);
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
481
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
482 diagram
3125
383720d8d98e fairway_availability: generative code for diagram added
Thomas Junk <thomas.junk@intevation.de>
parents: 3033
diff changeset
483 .append("g")
3876
0c6ef9e655fc client: available fairway depth diagrams: added second y-axis on the right
Markus Kottlaender <markus@intevation.de>
parents: 3874
diff changeset
484 .attr(
0c6ef9e655fc client: available fairway depth diagrams: added second y-axis on the right
Markus Kottlaender <markus@intevation.de>
parents: 3874
diff changeset
485 "transform",
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
486 `translate(${dimensions.width - this.scalePaddingRight} ${
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
487 this.paddingTop
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
488 })`
3876
0c6ef9e655fc client: available fairway depth diagrams: added second y-axis on the right
Markus Kottlaender <markus@intevation.de>
parents: 3874
diff changeset
489 )
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
490 .call(yAxisLeft)
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
491 .selectAll(".tick text")
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
492 .attr("fill", "black")
3922
32b656e77e2f client: fwa diagrams: better alignment of tick labels in pdf
Markus Kottlaender <markus@intevation.de>
parents: 3920
diff changeset
493 .attr("font-size", 10)
32b656e77e2f client: fwa diagrams: better alignment of tick labels in pdf
Markus Kottlaender <markus@intevation.de>
parents: 3920
diff changeset
494 .attr("dy", 3)
3878
1ff97bb72a24 client: available fairway depth diagrams: made more space for tick labels
Markus Kottlaender <markus@intevation.de>
parents: 3877
diff changeset
495 .attr("dx", -3)
3267
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
496 .select(function() {
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
497 return this.parentNode;
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
498 })
b07b4cca5e34 client: diagram-template: implement pdf-template for fairway availability diagram
Fadi Abbud <fadi.abbud@intevation.de>
parents: 3239
diff changeset
499 .selectAll(".tick line")
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
500 .attr("stroke-dasharray", 5)
3905
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
501 .attr("stroke", "#ccc")
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
502 .select(function() {
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
503 return this.parentNode;
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
504 })
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
505 .filter(d => d === 0)
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
506 .selectAll(".tick line")
3914
9440d2922097 client: available fairwaydepth diagram: adjust width of ldc bar, draw 0-tick line as solid line
Markus Kottlaender <markus@intevation.de>
parents: 3911
diff changeset
507 .attr("stroke-dasharray", "none")
3905
3c095749efb2 client: available fairwaydepth diagrams: emphasize 0-ticks
Markus Kottlaender <markus@intevation.de>
parents: 3903
diff changeset
508 .attr("stroke", "#333");
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
509 diagram
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
510 .append("g")
3879
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
511 .attr(
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
512 "transform",
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
513 `translate(${this.scalePaddingLeft} ${this.paddingTop})`
20be498adaf7 client: available fairway depth diagram: use available space
Markus Kottlaender <markus@intevation.de>
parents: 3878
diff changeset
514 )
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
515 .call(yAxisRight)
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
516 .selectAll(".tick text")
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
517 .attr("fill", "black")
3922
32b656e77e2f client: fwa diagrams: better alignment of tick labels in pdf
Markus Kottlaender <markus@intevation.de>
parents: 3920
diff changeset
518 .attr("font-size", 10)
32b656e77e2f client: fwa diagrams: better alignment of tick labels in pdf
Markus Kottlaender <markus@intevation.de>
parents: 3920
diff changeset
519 .attr("dy", 3)
3878
1ff97bb72a24 client: available fairway depth diagrams: made more space for tick labels
Markus Kottlaender <markus@intevation.de>
parents: 3877
diff changeset
520 .attr("dx", 3)
3877
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
521 .select(function() {
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
522 return this.parentNode;
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
523 })
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
524 .selectAll(".tick line")
d82b5e5868e3 client: available fairway depth diagrams: draw horizontal scale lines for better readability
Markus Kottlaender <markus@intevation.de>
parents: 3876
diff changeset
525 .attr("stroke", "transparent");
3909
2e7f191bba27 available_fairwaydepth: factor out side-effects from diagram rendering
Thomas Junk <thomas.junk@intevation.de>
parents: 3905
diff changeset
526 diagram.selectAll(".domain").attr("stroke", "black");
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
527 }
3135
Thomas Junk <thomas.junk@intevation.de>
parents: 3134
diff changeset
528 },
3282
707d4435aff3 redraw diagram on change of data
Thomas Junk <thomas.junk@intevation.de>
parents: 3280
diff changeset
529 watch: {
707d4435aff3 redraw diagram on change of data
Thomas Junk <thomas.junk@intevation.de>
parents: 3280
diff changeset
530 fwData() {
707d4435aff3 redraw diagram on change of data
Thomas Junk <thomas.junk@intevation.de>
parents: 3280
diff changeset
531 this.drawDiagram();
707d4435aff3 redraw diagram on change of data
Thomas Junk <thomas.junk@intevation.de>
parents: 3280
diff changeset
532 }
3153
8159bd2aaf93 fairway_depth_diagram: display of mockdata
Thomas Junk <thomas.junk@intevation.de>
parents: 3135
diff changeset
533 }
3033
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
534 };
c2c1e3e3af1c Available fairway depth: rudimentary thoughts / prototype. Tbd;
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
535 </script>