annotate client/src/logs/logs.vue @ 779:8ba1be486833

client: improve search * Add display of searchResults as list-group.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 26 Sep 2018 13:46:18 +0200
parents badbc0207418
children 13f80b9033c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
713
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
2 <div class="main d-flex flex-column">
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
3 <div class="d-flex flex-row">
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
4 <div :class="spacer"></div>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
5 <div class="logoutput shadow">
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
6 <pre v-highlightjs="logs"><code class="javascript"></code></pre>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
7 </div>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
8 </div>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
9 </div>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
10 </template>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
11
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
12 <style scoped lang="scss">
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
13 .logoutput {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
14 width: 95%;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
15 height: 85vh;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
16 margin-top: $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
17 margin-right: $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
18 margin-left: $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
19 text-align: left;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
20 background-color: white;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
21 overflow: scroll;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
22 transition: $transition-fast;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
23 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
24
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
25 .spacer {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
26 margin-left: $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
27 height: 90vh;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
28 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
29
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
30 .spacer-collapsed {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
31 min-width: $icon-width + $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
32 transition: $transition-fast;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
33 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
34
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
35 .spacer-expanded {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
36 min-width: $sidebar-width + $offset;
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
37 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
38 </style>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
39
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
40 <script>
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
41 import { mapGetters } from "vuex";
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
42
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
43 export default {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
44 name: "logs",
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
45 data() {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
46 return {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
47 logs: `gemma ❯ ./run-app.sh
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
48 2018/09/21 11:13:37 Configure GeoServer...
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
49 2018/09/21 11:13:37 listen on localhost:8000
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
50 2018/09/21 11:13:37 info: creating workspace gemma
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
51 2018/09/21 11:13:38 info: creating datastore gemma
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
52 2018/09/21 11:13:38 info: number of tables to publish 2
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
53 2018/09/21 11:13:38 info: creating featuretype distance_marks_geoserver.
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
54 2018/09/21 11:13:39 warn: configure GeoServer failed: Status code 'Internal Server Error' (500)
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
55 2018/09/21 11:48:22 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
56 2018/09/21 11:48:22 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
57 2018/09/21 11:48:22 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
58 2018/09/21 11:48:22 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
59 2018/09/21 11:48:22 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
60 2018/09/21 11:48:22 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
61 2018/09/21 11:48:25 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
62 2018/09/21 11:48:25 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
63 2018/09/21 11:48:25 rewrite took 25.603973ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
64 2018/09/21 11:48:27 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 2018/09/21 11:48:27 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 2018/09/21 11:48:27 rewrite took 1.039415ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67 2018/09/21 11:48:52 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 2018/09/21 11:48:52 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
69 2018/09/21 11:48:52 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
70 2018/09/21 11:48:53 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
71 2018/09/21 11:48:53 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
72 2018/09/21 11:48:53 rewrite took 1.039695ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
73 2018/09/21 11:48:53 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
74 2018/09/21 11:48:53 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
75 2018/09/21 11:48:53 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
76 2018/09/21 11:48:53 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
77 2018/09/21 11:48:53 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
78 2018/09/21 11:48:53 rewrite took 16.220881ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
79 2018/09/21 11:49:05 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
80 2018/09/21 11:49:05 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
81 2018/09/21 11:49:05 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
82 2018/09/21 11:49:05 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
83 2018/09/21 11:49:05 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
84 2018/09/21 11:49:05 rewrite took 973.896µs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
85 2018/09/21 11:49:05 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
86 2018/09/21 11:49:05 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
87 2018/09/21 11:49:05 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
88 2018/09/21 11:49:05 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
89 2018/09/21 11:49:05 rewrite took 1.396081ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
90 2018/09/21 11:49:38 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
91 2018/09/21 11:49:38 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
92 2018/09/21 11:49:38 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
93 2018/09/21 11:49:38 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
94 2018/09/21 11:49:38 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
95 2018/09/21 11:49:38 rewrite took 853.268µs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
96 2018/09/21 11:49:38 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
97 2018/09/21 11:49:38 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
98 2018/09/21 11:49:38 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
99 2018/09/21 11:49:38 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
100 2018/09/21 11:49:38 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
101 2018/09/21 11:49:38 rewrite took 5.146315ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
102 2018/09/21 11:50:38 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
103 2018/09/21 11:50:38 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
104 2018/09/21 11:50:38 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
105 2018/09/21 11:50:38 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
106 2018/09/21 11:50:38 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
107 2018/09/21 11:50:38 rewrite took 1.221311ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
108 2018/09/21 11:50:38 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
109 2018/09/21 11:50:38 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
110 2018/09/21 11:50:38 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
111 2018/09/21 11:50:38 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
112 2018/09/21 11:50:38 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
113 2018/09/21 11:50:38 rewrite took 1.427937ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
114 2018/09/21 11:51:06 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
115 2018/09/21 11:51:06 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
116 2018/09/21 11:51:06 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
117 2018/09/21 11:51:06 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
118 2018/09/21 11:51:06 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
119 2018/09/21 11:51:06 rewrite took 8.170505ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
120 2018/09/21 11:51:17 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
121 2018/09/21 11:51:17 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
122 2018/09/21 11:51:17 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
123 2018/09/21 11:51:17 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
124 2018/09/21 11:51:17 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
125 2018/09/21 11:51:17 rewrite took 1.222553ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
126 2018/09/21 11:51:17 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
127 2018/09/21 11:51:17 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
128 2018/09/21 11:51:17 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
129 2018/09/21 11:51:17 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
130 2018/09/21 11:51:17 rewrite took 2.78996ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
131 2018/09/21 11:51:34 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
132 2018/09/21 11:51:34 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
133 2018/09/21 11:51:34 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
134 2018/09/21 11:51:34 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
135 2018/09/21 11:51:34 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
136 2018/09/21 11:51:34 rewrite took 1.33321ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
137 2018/09/21 11:51:34 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
138 2018/09/21 11:51:34 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
139 2018/09/21 11:51:34 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
140 2018/09/21 11:51:34 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
141 2018/09/21 11:51:34 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
142 2018/09/21 11:51:34 rewrite took 3.687839ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
143 2018/09/21 11:52:08 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
144 2018/09/21 11:52:08 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
145 2018/09/21 11:52:08 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
146 2018/09/21 11:52:08 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
147 2018/09/21 11:52:08 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
148 2018/09/21 11:52:08 rewrite took 1.26564ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
149 2018/09/21 11:52:08 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
150 2018/09/21 11:52:08 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
151 2018/09/21 11:52:08 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
152 2018/09/21 11:52:08 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
153 2018/09/21 11:52:08 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
154 2018/09/21 11:52:08 rewrite took 1.024643ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
155 2018/09/21 11:54:23 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
156 2018/09/21 11:54:23 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
157 2018/09/21 11:54:23 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
158 2018/09/21 11:54:23 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
159 2018/09/21 11:54:23 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
160 2018/09/21 11:54:23 rewrite took 1.162201ms
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
161 2018/09/21 11:54:23 proxyDirector: /api/external/d4d
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
162 2018/09/21 11:54:23 Injecting user sophie
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
163 2018/09/21 11:54:23 proxyDirector: /api/internal/wfs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
164 2018/09/21 11:54:23 gzip compression
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
165 2018/09/21 11:54:23 rewrite successful
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
166 2018/09/21 11:54:23 rewrite took 990.32µs
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
167 `
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
168 };
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
169 },
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
170 methods: {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
171 disallow(e) {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
172 e.target.blur();
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
173 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
174 },
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
175 computed: {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
176 ...mapGetters("application", ["sidebarCollapsed", "isUsermenuCollapsed"]),
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
177 spacer() {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
178 return {
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
179 spacer: true,
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
180 "spacer-expanded": !this.sidebarCollapsed,
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
181 "spacer-collapsed": this.sidebarCollapsed
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
182 };
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
183 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
184 }
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
185 };
badbc0207418 feat: systeminformation feature added
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
186 </script>