@pb33f/cowboy-components 0.6.7 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/equalizer.worker-DyLD5JTU.js +1 -0
- package/dist/assets/search-problems.worker-BAF8L2rX.js +1 -0
- package/dist/components/changelog/changelog.js +1 -1
- package/dist/components/charts/beefy-chart.d.ts +21 -0
- package/dist/components/charts/beefy-chart.js +159 -0
- package/dist/components/charts/chart-colors.d.ts +27 -0
- package/dist/components/charts/chart-colors.js +76 -0
- package/dist/components/charts/config.d.ts +15 -0
- package/dist/components/charts/config.js +35 -0
- package/dist/components/charts/doughnut-chart.d.ts +22 -0
- package/dist/components/charts/doughnut-chart.js +128 -0
- package/dist/components/editor/editor.d.ts +9 -3
- package/dist/components/editor/editor.js +115 -60
- package/dist/components/editor/init.d.ts +0 -0
- package/dist/components/editor/init.js +28 -0
- package/dist/components/editor/schemas/openapi3.json +1651 -0
- package/dist/components/editor/schemas/openapi31.json +1449 -0
- package/dist/components/model-icon/model-icon.js +3 -0
- package/dist/components/model-renderer/callback.js +2 -1
- package/dist/components/model-renderer/change.css.d.ts +2 -0
- package/dist/components/model-renderer/change.css.js +254 -0
- package/dist/components/model-renderer/changes.d.ts +19 -0
- package/dist/components/model-renderer/changes.js +306 -0
- package/dist/components/model-renderer/clickable-ref.d.ts +10 -6
- package/dist/components/model-renderer/clickable-ref.js +9 -0
- package/dist/components/model-renderer/components.js +1 -0
- package/dist/components/model-renderer/contact.js +2 -1
- package/dist/components/model-renderer/document.js +11 -9
- package/dist/components/model-renderer/encoding.js +1 -0
- package/dist/components/model-renderer/example.js +1 -0
- package/dist/components/model-renderer/external-docs.js +1 -0
- package/dist/components/model-renderer/has-changes.d.ts +8 -0
- package/dist/components/model-renderer/has-changes.js +50 -0
- package/dist/components/model-renderer/header.js +1 -0
- package/dist/components/model-renderer/info.js +3 -1
- package/dist/components/model-renderer/license.js +3 -3
- package/dist/components/model-renderer/link.js +1 -1
- package/dist/components/model-renderer/media-type.js +1 -1
- package/dist/components/model-renderer/oauth-flows.js +2 -1
- package/dist/components/model-renderer/operation.js +2 -1
- package/dist/components/model-renderer/parameter.js +1 -0
- package/dist/components/model-renderer/path-item.js +1 -0
- package/dist/components/model-renderer/paths.js +1 -0
- package/dist/components/model-renderer/rendered-node.js +20 -20
- package/dist/components/model-renderer/rendered-property.css.js +4 -0
- package/dist/components/model-renderer/rendered-property.js +5 -2
- package/dist/components/model-renderer/request-body.js +1 -1
- package/dist/components/model-renderer/response.js +1 -1
- package/dist/components/model-renderer/schema.js +57 -54
- package/dist/components/model-renderer/security-scheme.js +1 -1
- package/dist/components/model-renderer/server.js +1 -0
- package/dist/components/model-renderer/tag.js +3 -1
- package/dist/components/model-tree/tree.d.ts +7 -4
- package/dist/components/model-tree/tree.js +54 -25
- package/dist/components/paginator/paginator.css.js +5 -2
- package/dist/components/problem-list/problem-mainview.js +8 -1
- package/dist/components/rodeo/npm/download-statistic.d.ts +41 -0
- package/dist/components/rodeo/npm/download-statistic.js +634 -0
- package/dist/components/rodeo/rodeo-nav.js +1 -0
- package/dist/components/rodeo/rodeo.d.ts +1 -0
- package/dist/components/rodeo/rodeo.js +9 -2
- package/dist/components/rodeo/statistic.css.js +17 -0
- package/dist/components/rodeo/statistic.d.ts +4 -2
- package/dist/components/rodeo/statistic.js +15 -4
- package/dist/components/the-doctor/settings.css.d.ts +2 -0
- package/dist/components/the-doctor/settings.css.js +28 -0
- package/dist/components/the-doctor/settings.d.ts +13 -0
- package/dist/components/the-doctor/settings.js +83 -2
- package/dist/components/the-doctor/the-doctor.css.js +80 -47
- package/dist/components/the-doctor/the-doctor.d.ts +24 -6
- package/dist/components/the-doctor/the-doctor.js +344 -109
- package/dist/components/the-doctor/upload-archive.js +1 -1
- package/dist/components/theme-switcher/theme-switcher.d.ts +1 -1
- package/dist/components/theme-switcher/theme-switcher.js +5 -2
- package/dist/components/time-vortex/change-list-item.css.d.ts +2 -0
- package/dist/components/time-vortex/change-list-item.css.js +96 -0
- package/dist/components/time-vortex/change-list-item.d.ts +10 -0
- package/dist/components/time-vortex/change-list-item.js +58 -0
- package/dist/components/time-vortex/history-picker.css.d.ts +2 -0
- package/dist/components/time-vortex/history-picker.css.js +90 -0
- package/dist/components/time-vortex/history-picker.d.ts +18 -0
- package/dist/components/time-vortex/history-picker.js +143 -0
- package/dist/components/time-vortex/spec-summary-timeline-item.css.d.ts +2 -0
- package/dist/components/time-vortex/spec-summary-timeline-item.css.js +144 -0
- package/dist/components/time-vortex/spec-summary-timeline-item.d.ts +11 -0
- package/dist/components/time-vortex/spec-summary-timeline-item.js +153 -0
- package/dist/components/time-vortex/tardis-control.css.d.ts +2 -0
- package/dist/components/time-vortex/tardis-control.css.js +103 -0
- package/dist/components/time-vortex/tardis-control.d.ts +32 -0
- package/dist/components/time-vortex/tardis-control.js +286 -0
- package/dist/components/time-vortex/time-vortex.d.ts +17 -0
- package/dist/components/time-vortex/time-vortex.js +75 -0
- package/dist/components/time-vortex/timeline-view.css.d.ts +2 -0
- package/dist/components/time-vortex/timeline-view.css.js +28 -0
- package/dist/components/time-vortex/timeline-view.d.ts +32 -0
- package/dist/components/time-vortex/timeline-view.js +233 -0
- package/dist/components/timeline/timeline-item.css.js +95 -48
- package/dist/components/timeline/timeline-item.d.ts +1 -0
- package/dist/components/timeline/timeline-item.js +20 -1
- package/dist/components/timeline/timeline.css.js +46 -40
- package/dist/components/timeline/timeline.d.ts +1 -0
- package/dist/components/timeline/timeline.js +9 -5
- package/dist/components/toast/toast-component.css.js +4 -0
- package/dist/components/visualizer/equalizer.d.ts +2 -0
- package/dist/components/visualizer/equalizer.js +13 -5
- package/dist/components/visualizer/explorer.d.ts +5 -0
- package/dist/components/visualizer/explorer.js +41 -37
- package/dist/components/visualizer/foreign-object.js +3 -0
- package/dist/components/visualizer/nodes/callback.js +3 -1
- package/dist/components/visualizer/nodes/changes.css.d.ts +2 -0
- package/dist/components/visualizer/nodes/changes.css.js +33 -0
- package/dist/components/visualizer/nodes/components.js +3 -1
- package/dist/components/visualizer/nodes/contact.js +3 -1
- package/dist/components/visualizer/nodes/document.js +1 -0
- package/dist/components/visualizer/nodes/graph-node.d.ts +8 -7
- package/dist/components/visualizer/nodes/graph-node.js +55 -1
- package/dist/components/visualizer/nodes/header.js +3 -1
- package/dist/components/visualizer/nodes/info.js +3 -1
- package/dist/components/visualizer/nodes/license.js +8 -1
- package/dist/components/visualizer/nodes/link.js +3 -1
- package/dist/components/visualizer/nodes/media-type.js +3 -1
- package/dist/components/visualizer/nodes/operation.js +4 -1
- package/dist/components/visualizer/nodes/parameter.js +3 -1
- package/dist/components/visualizer/nodes/path-item.js +3 -1
- package/dist/components/visualizer/nodes/request-body.js +3 -1
- package/dist/components/visualizer/nodes/response.js +3 -1
- package/dist/components/visualizer/nodes/schema.js +3 -1
- package/dist/components/visualizer/nodes/security-scheme.js +3 -1
- package/dist/components/visualizer/nodes/server.js +3 -1
- package/dist/components/visualizer/nodes/tag.js +3 -1
- package/dist/components/visualizer/nodes/xml.js +3 -1
- package/dist/components/visualizer/orientation-controls.d.ts +1 -0
- package/dist/components/visualizer/orientation-controls.js +31 -16
- package/dist/components/visualizer/search.js +4 -3
- package/dist/components/warning-stripe/warning-stripe.d.ts +20 -0
- package/dist/components/warning-stripe/warning-stripe.js +124 -0
- package/dist/cowboy-components.umd.cjs +3840 -2216
- package/dist/css/panels.css.d.ts +2 -0
- package/dist/css/panels.css.js +44 -0
- package/dist/css/pb33f-theme.css +8 -1
- package/dist/css/scrollbar.css.d.ts +2 -0
- package/dist/css/scrollbar.css.js +16 -0
- package/dist/css/tabs.css.js +1 -1
- package/dist/events/doctor.d.ts +15 -1
- package/dist/events/doctor.js +5 -0
- package/dist/model/api-response.d.ts +6 -0
- package/dist/model/api-response.js +2 -0
- package/dist/model/chart-data.d.ts +15 -0
- package/dist/model/chart-data.js +1 -0
- package/dist/model/diagnostic-report.d.ts +5 -0
- package/dist/model/diagnostic-report.js +3 -0
- package/dist/model/document.d.ts +1 -0
- package/dist/model/graph.d.ts +26 -0
- package/dist/model/media-type.d.ts +2 -0
- package/dist/model/media-type.js +7 -0
- package/dist/model/node_type.d.ts +2 -0
- package/dist/model/node_type.js +2 -0
- package/dist/model/settings.d.ts +5 -0
- package/dist/model/settings.js +1 -0
- package/dist/model/timeline.d.ts +33 -0
- package/dist/model/timeline.js +1 -0
- package/dist/monacoeditorwork/css.worker.bundle.js +53460 -0
- package/dist/monacoeditorwork/editor.worker.bundle.js +13517 -0
- package/dist/monacoeditorwork/html.worker.bundle.js +29660 -0
- package/dist/monacoeditorwork/json.worker.bundle.js +21318 -0
- package/dist/monacoeditorwork/yaml.worker..bundle.js +37321 -0
- package/dist/services/color-service.d.ts +1 -0
- package/dist/services/color-service.js +13 -0
- package/dist/services/linting-service.d.ts +1 -3
- package/dist/services/linting-service.js +21 -29
- package/dist/services/model-service.d.ts +1 -1
- package/dist/services/model-service.js +35 -8
- package/dist/services/rodeo-service.d.ts +6 -0
- package/dist/services/rodeo-service.js +134 -0
- package/dist/services/timeline-service.d.ts +8 -0
- package/dist/services/timeline-service.js +85 -0
- package/dist/style.css +1 -1
- package/dist/workers/equalizer.worker.js +1 -1
- package/dist/workers/search-problems.worker.js +1 -1
- package/package.json +6 -1
- package/dist/assets/css.worker-Byh--afc.js +0 -84
- package/dist/assets/editor.worker-CYC0jP-p.js +0 -12
- package/dist/assets/equalizer.worker-CdIiiqfH.js +0 -1
- package/dist/assets/html.worker-DArWg-Dy.js +0 -461
- package/dist/assets/json.worker-heCfXoJw.js +0 -49
- package/dist/assets/search-problems.worker-VJi4P9Gj.js +0 -1
|
@@ -0,0 +1,634 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
import { customElement, queryAll, state } from "lit/decorators.js";
|
|
8
|
+
import { html } from "lit";
|
|
9
|
+
import { Colorful } from "../../charts/chart-colors.js";
|
|
10
|
+
import { RodeoService } from "../../../services/rodeo-service.js";
|
|
11
|
+
import '../../charts/beefy-chart';
|
|
12
|
+
import '../../charts/doughnut-chart.js';
|
|
13
|
+
let RodeoDownloadStatistics = class RodeoDownloadStatistics extends Colorful {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
}
|
|
17
|
+
firstUpdated() {
|
|
18
|
+
super.firstUpdated();
|
|
19
|
+
Promise.all([
|
|
20
|
+
RodeoService.getNpmStatistics("@quobix/vacuum"),
|
|
21
|
+
RodeoService.getNpmStatistics("@pb33f/wiretap"),
|
|
22
|
+
RodeoService.getNpmStatistics("@pb33f/openapi-changes"),
|
|
23
|
+
RodeoService.getGithubStatistics("pb33f/openapi-changes", true),
|
|
24
|
+
RodeoService.getGithubStatistics("daveshanley/vacuum"),
|
|
25
|
+
RodeoService.getGithubStatistics("pb33f/wiretap", true),
|
|
26
|
+
RodeoService.getGithubCloneStatistics("daveshanley/vacuum"),
|
|
27
|
+
RodeoService.getGithubCloneStatistics("pb33f/libopenapi"),
|
|
28
|
+
RodeoService.getGithubCloneStatistics("pb33f/libopenapi-validator"),
|
|
29
|
+
RodeoService.getGithubCloneStatistics("pb33f/openapi-changes"),
|
|
30
|
+
RodeoService.getGithubCloneStatistics("pb33f/wiretap"),
|
|
31
|
+
RodeoService.getGithubStars("daveshanley/vacuum"),
|
|
32
|
+
RodeoService.getGithubStars("pb33f/libopenapi"),
|
|
33
|
+
RodeoService.getGithubStars("pb33f/openapi-changes"),
|
|
34
|
+
RodeoService.getGithubStars("pb33f/libopenapi-validator"),
|
|
35
|
+
RodeoService.getGithubStars("pb33f/wiretap"),
|
|
36
|
+
RodeoService.getGithubStars("pb33f/doctor"),
|
|
37
|
+
RodeoService.getGithubStars("pb33f/saddlebag-js"),
|
|
38
|
+
RodeoService.getDockerPulls("dshanley/vacuum"),
|
|
39
|
+
RodeoService.getDockerPulls("pb33f/openapi-changes"),
|
|
40
|
+
RodeoService.getDockerPulls("pb33f/wiretap"),
|
|
41
|
+
]).then((stats) => {
|
|
42
|
+
this.vacuumStatistics = stats[0];
|
|
43
|
+
this.wiretapStatistics = stats[1];
|
|
44
|
+
this.openapiChangesStatistics = stats[2];
|
|
45
|
+
this.changesGithubTotal = stats[3];
|
|
46
|
+
this.vacuumGithubTotal = stats[4];
|
|
47
|
+
this.wiretapGithubTotal = stats[5];
|
|
48
|
+
this.vacuumClones = stats[6];
|
|
49
|
+
this.libopenapiClones = stats[7];
|
|
50
|
+
this.libopenapiValidatorClones = stats[8];
|
|
51
|
+
this.changesClones = stats[9];
|
|
52
|
+
this.wiretapClones = stats[10];
|
|
53
|
+
this.vacuumStars = stats[11];
|
|
54
|
+
this.libopenapiStars = stats[12];
|
|
55
|
+
this.changesStars = stats[13];
|
|
56
|
+
this.libopenapiValidatorStars = stats[14];
|
|
57
|
+
this.wiretapStars = stats[15];
|
|
58
|
+
this.doctorStars = stats[16];
|
|
59
|
+
this.saddlebagStars = stats[17];
|
|
60
|
+
this.vacuumDockerPulls = stats[18];
|
|
61
|
+
this.changesDockerPulls = stats[19];
|
|
62
|
+
this.wiretapDockerPulls = stats[20];
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
calculateStatistics(stats) {
|
|
66
|
+
let total = 0;
|
|
67
|
+
let highestIndex = 0;
|
|
68
|
+
let peak = 0;
|
|
69
|
+
for (let i = 0; i < stats.datasets[0].data.length; i++) {
|
|
70
|
+
total += stats?.datasets[0].data[i];
|
|
71
|
+
if (stats.datasets[0].data[i] > peak) {
|
|
72
|
+
highestIndex = i;
|
|
73
|
+
peak = stats.datasets[0].data[i];
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
let highestDate = stats?.labels[highestIndex];
|
|
77
|
+
return {
|
|
78
|
+
total: total,
|
|
79
|
+
peak: peak,
|
|
80
|
+
peakDate: highestDate,
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
composeStarHistory() {
|
|
84
|
+
// vacuum is the oldest, so we use that as our master list.
|
|
85
|
+
this.starHistory = {
|
|
86
|
+
labels: this.vacuumStars.labels,
|
|
87
|
+
datasets: this.vacuumStars.datasets,
|
|
88
|
+
};
|
|
89
|
+
this.starHistory.datasets.forEach((dataset) => {
|
|
90
|
+
dataset.borderColor = this.primary;
|
|
91
|
+
dataset.label = "vacuum";
|
|
92
|
+
});
|
|
93
|
+
let diff = this.vacuumStars.labels.length - this.libopenapiStars.labels.length;
|
|
94
|
+
let zeroes = new Array(diff).fill(0);
|
|
95
|
+
this.libopenapiStars.datasets[0].data.unshift(...zeroes);
|
|
96
|
+
diff = this.vacuumStars.labels.length - this.changesStars.labels.length;
|
|
97
|
+
zeroes = new Array(diff).fill(0);
|
|
98
|
+
this.changesStars.datasets[0].data.unshift(...zeroes);
|
|
99
|
+
// libopenapi-validator started later, so the dates are different, we need to pad the left hand side of the array
|
|
100
|
+
diff = this.vacuumStars.labels.length - this.libopenapiValidatorStars.labels.length;
|
|
101
|
+
zeroes = new Array(diff).fill(0);
|
|
102
|
+
this.libopenapiValidatorStars.datasets[0].data.unshift(...zeroes);
|
|
103
|
+
diff = this.vacuumStars.labels.length - this.wiretapStars.labels.length;
|
|
104
|
+
zeroes = new Array(diff).fill(0);
|
|
105
|
+
this.wiretapStars.datasets[0].data.unshift(...zeroes);
|
|
106
|
+
diff = this.vacuumStars.labels.length - this.doctorStars.labels.length;
|
|
107
|
+
zeroes = new Array(diff).fill(0);
|
|
108
|
+
this.doctorStars.datasets[0].data.unshift(...zeroes);
|
|
109
|
+
diff = this.vacuumStars.labels.length - this.saddlebagStars.labels.length;
|
|
110
|
+
zeroes = new Array(diff).fill(0);
|
|
111
|
+
this.saddlebagStars.datasets[0].data.unshift(...zeroes);
|
|
112
|
+
this.libopenapiStars.datasets.forEach((dataset) => {
|
|
113
|
+
dataset.borderColor = this.secondary;
|
|
114
|
+
dataset.label = "libopenapi";
|
|
115
|
+
});
|
|
116
|
+
this.changesStars.datasets.forEach((dataset) => {
|
|
117
|
+
dataset.borderColor = this.color1;
|
|
118
|
+
dataset.label = "openapi-changes";
|
|
119
|
+
});
|
|
120
|
+
this.libopenapiValidatorStars.datasets.forEach((dataset) => {
|
|
121
|
+
dataset.borderColor = this.color2;
|
|
122
|
+
dataset.label = "libopenapi-validator";
|
|
123
|
+
});
|
|
124
|
+
this.wiretapStars.datasets.forEach((dataset) => {
|
|
125
|
+
dataset.borderColor = this.color4;
|
|
126
|
+
dataset.label = "wiretap";
|
|
127
|
+
});
|
|
128
|
+
this.doctorStars.datasets.forEach((dataset) => {
|
|
129
|
+
dataset.borderColor = this.color3;
|
|
130
|
+
dataset.label = "libdoctor";
|
|
131
|
+
});
|
|
132
|
+
this.saddlebagStars.datasets.forEach((dataset) => {
|
|
133
|
+
dataset.borderColor = this.color5;
|
|
134
|
+
dataset.label = "saddlebag";
|
|
135
|
+
});
|
|
136
|
+
this.starHistory.datasets.push(...this.libopenapiStars.datasets);
|
|
137
|
+
this.starHistory.datasets.push(...this.changesStars.datasets);
|
|
138
|
+
this.starHistory.datasets.push(...this.libopenapiValidatorStars.datasets);
|
|
139
|
+
this.starHistory.datasets.push(...this.wiretapStars.datasets);
|
|
140
|
+
this.starHistory.datasets.push(...this.doctorStars.datasets);
|
|
141
|
+
this.starHistory.datasets.push(...this.saddlebagStars.datasets);
|
|
142
|
+
let total = 0;
|
|
143
|
+
this.starHistory.datasets.forEach((dataset) => {
|
|
144
|
+
total = total + dataset.data[dataset.data.length - 1];
|
|
145
|
+
});
|
|
146
|
+
return total;
|
|
147
|
+
}
|
|
148
|
+
render() {
|
|
149
|
+
if (this.vacuumStatistics === undefined && this.wiretapStatistics === undefined && this.openapiChangesStatistics === undefined) {
|
|
150
|
+
return html `loading chart`;
|
|
151
|
+
}
|
|
152
|
+
const vacuumNpmDownloads = [
|
|
153
|
+
{
|
|
154
|
+
label: "downloads",
|
|
155
|
+
data: this.vacuumStatistics?.datasets[0].data,
|
|
156
|
+
borderColor: this.primary,
|
|
157
|
+
}
|
|
158
|
+
];
|
|
159
|
+
const vacuumStatsSummary = this.calculateStatistics(this.vacuumStatistics);
|
|
160
|
+
const wiretapNpmDownloads = [
|
|
161
|
+
{
|
|
162
|
+
label: "downloads",
|
|
163
|
+
data: this.wiretapStatistics?.datasets[0].data,
|
|
164
|
+
borderColor: this.primary,
|
|
165
|
+
}
|
|
166
|
+
];
|
|
167
|
+
const wiretapStatsSummary = this.calculateStatistics(this.wiretapStatistics);
|
|
168
|
+
const changesNpmDownloads = [
|
|
169
|
+
{
|
|
170
|
+
label: "downloads",
|
|
171
|
+
data: this.openapiChangesStatistics?.datasets[0].data,
|
|
172
|
+
borderColor: this.primary,
|
|
173
|
+
}
|
|
174
|
+
];
|
|
175
|
+
const changesStatsSummary = this.calculateStatistics(this.openapiChangesStatistics);
|
|
176
|
+
const vacuumGithubDownloads = [
|
|
177
|
+
{
|
|
178
|
+
label: "downloads",
|
|
179
|
+
data: this.vacuumGithubTotal?.datasets[0].data,
|
|
180
|
+
borderColor: this.primary,
|
|
181
|
+
}
|
|
182
|
+
];
|
|
183
|
+
const vacuumGithubStatsSummary = this.calculateStatistics(this.vacuumGithubTotal);
|
|
184
|
+
const changesGithubDownloads = [
|
|
185
|
+
{
|
|
186
|
+
label: "downloads",
|
|
187
|
+
data: this.changesGithubTotal?.datasets[0].data,
|
|
188
|
+
borderColor: this.primary,
|
|
189
|
+
}
|
|
190
|
+
];
|
|
191
|
+
const changesGithubStatsSummary = this.calculateStatistics(this.changesGithubTotal);
|
|
192
|
+
const wiretapGithubDownloads = [
|
|
193
|
+
{
|
|
194
|
+
label: "downloads",
|
|
195
|
+
data: this.wiretapGithubTotal?.datasets[0].data,
|
|
196
|
+
borderColor: this.primary,
|
|
197
|
+
}
|
|
198
|
+
];
|
|
199
|
+
const wiretapGithubStatsSummary = this.calculateStatistics(this.wiretapGithubTotal);
|
|
200
|
+
const npmDownloads = vacuumStatsSummary.total + changesStatsSummary.total + wiretapStatsSummary.total;
|
|
201
|
+
const githubDownloads = vacuumGithubStatsSummary.total + changesGithubStatsSummary.total + wiretapGithubStatsSummary.total;
|
|
202
|
+
const npmVsGithubData = [npmDownloads, githubDownloads];
|
|
203
|
+
const npmVsGithubLabels = ['NPM', "Github"];
|
|
204
|
+
const splitPie = [
|
|
205
|
+
{
|
|
206
|
+
labels: npmVsGithubLabels,
|
|
207
|
+
data: npmVsGithubData,
|
|
208
|
+
}
|
|
209
|
+
];
|
|
210
|
+
const vacuumGithubClones = [
|
|
211
|
+
{
|
|
212
|
+
label: "clones",
|
|
213
|
+
data: this.vacuumClones?.datasets[0].data,
|
|
214
|
+
borderColor: this.primary,
|
|
215
|
+
}
|
|
216
|
+
];
|
|
217
|
+
const vacuumGithubClonesSummary = this.calculateStatistics(this.vacuumClones);
|
|
218
|
+
const libopenapiGithubClones = [
|
|
219
|
+
{
|
|
220
|
+
label: "clones",
|
|
221
|
+
data: this.libopenapiClones?.datasets[0].data,
|
|
222
|
+
borderColor: this.primary,
|
|
223
|
+
}
|
|
224
|
+
];
|
|
225
|
+
const libopenapiGithubClonesSummary = this.calculateStatistics(this.libopenapiClones);
|
|
226
|
+
const libopenapiValidatorGithubClones = [
|
|
227
|
+
{
|
|
228
|
+
label: "clones",
|
|
229
|
+
data: this.libopenapiValidatorClones?.datasets[0].data,
|
|
230
|
+
borderColor: this.primary,
|
|
231
|
+
}
|
|
232
|
+
];
|
|
233
|
+
const libopenapiValidatorGithubClonesSummary = this.calculateStatistics(this.libopenapiValidatorClones);
|
|
234
|
+
const changesGithubClones = [
|
|
235
|
+
{
|
|
236
|
+
label: "clones",
|
|
237
|
+
data: this.changesClones?.datasets[0].data,
|
|
238
|
+
borderColor: this.primary,
|
|
239
|
+
}
|
|
240
|
+
];
|
|
241
|
+
const changesGithubClonesSummary = this.calculateStatistics(this.changesClones);
|
|
242
|
+
const wiretapGithubClones = [
|
|
243
|
+
{
|
|
244
|
+
label: "clones",
|
|
245
|
+
data: this.wiretapClones?.datasets[0].data,
|
|
246
|
+
borderColor: this.primary,
|
|
247
|
+
}
|
|
248
|
+
];
|
|
249
|
+
const wiretapGithubClonesSummary = this.calculateStatistics(this.wiretapClones);
|
|
250
|
+
const totalClones = vacuumGithubClonesSummary.total + libopenapiGithubClonesSummary.total +
|
|
251
|
+
libopenapiValidatorGithubClonesSummary.total + changesGithubClonesSummary.total + wiretapGithubClonesSummary.total;
|
|
252
|
+
//
|
|
253
|
+
const totalStars = this.composeStarHistory();
|
|
254
|
+
const otherStarCount = (this.starHistory.datasets[3].data[this.starHistory.datasets[3].data.length - 1]) +
|
|
255
|
+
(this.starHistory.datasets[4].data[this.starHistory.datasets[4].data.length - 1]);
|
|
256
|
+
const dockerPulls = [
|
|
257
|
+
{
|
|
258
|
+
label: "vacuum",
|
|
259
|
+
data: this.vacuumDockerPulls?.datasets[0].data,
|
|
260
|
+
borderColor: this.primary,
|
|
261
|
+
backgroundColor: this.primary,
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
label: "openapi-changes",
|
|
265
|
+
data: this.changesDockerPulls?.datasets[0].data,
|
|
266
|
+
borderColor: this.secondary,
|
|
267
|
+
backgroundColor: this.secondary,
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
label: "wiretap",
|
|
271
|
+
data: this.wiretapDockerPulls?.datasets[0].data,
|
|
272
|
+
borderColor: this.tertiary,
|
|
273
|
+
backgroundColor: this.tertiary,
|
|
274
|
+
},
|
|
275
|
+
];
|
|
276
|
+
const totalDockerPulls = dockerPulls[0].data.reduce((a, b) => a + b, 0) +
|
|
277
|
+
dockerPulls[1].data.reduce((a, b) => a + b, 0) +
|
|
278
|
+
dockerPulls[2].data.reduce((a, b) => a + b, 0);
|
|
279
|
+
return html `
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
<div style="display: flex; width: 600px;">
|
|
285
|
+
|
|
286
|
+
<pb33f-rodeo-statistic title="Total NPM Downloads"
|
|
287
|
+
value="${npmDownloads}"></pb33f-rodeo-statistic>
|
|
288
|
+
|
|
289
|
+
<pb33f-rodeo-statistic title="Total Github Downloads"
|
|
290
|
+
value="${githubDownloads}"></pb33f-rodeo-statistic>
|
|
291
|
+
|
|
292
|
+
<pb33f-rodeo-statistic title="Repo Clones last 14 days"
|
|
293
|
+
value="${totalClones}"></pb33f-rodeo-statistic>
|
|
294
|
+
|
|
295
|
+
<pb33f-rodeo-statistic title="Github Stars"
|
|
296
|
+
value="${totalStars}"></pb33f-rodeo-statistic>
|
|
297
|
+
|
|
298
|
+
<pb33f-rodeo-statistic title="Docker Pulls"
|
|
299
|
+
value="${totalDockerPulls}"></pb33f-rodeo-statistic>
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
</div>
|
|
305
|
+
<div style="display: grid; grid-template-columns: 850px 850px ">
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
310
|
+
<pb33f-chart legend stepSize=5 width="600" title="pb33f github stars over time"
|
|
311
|
+
.datasets=${this.starHistory.datasets}
|
|
312
|
+
.labels="${this.starHistory?.labels}"></pb33f-chart>
|
|
313
|
+
|
|
314
|
+
<div style="padding-top: 20px;">
|
|
315
|
+
<div>
|
|
316
|
+
<pb33f-rodeo-statistic small title="vacuum"
|
|
317
|
+
value="${this.starHistory.datasets[0].data[this.starHistory.datasets[0].data.length - 1]}"></pb33f-rodeo-statistic>
|
|
318
|
+
<pb33f-rodeo-statistic small title="libopenapi"
|
|
319
|
+
value="${this.starHistory.datasets[1].data[this.starHistory.datasets[1].data.length - 1]}"></pb33f-rodeo-statistic>
|
|
320
|
+
<pb33f-rodeo-statistic small title="openapi-changes"
|
|
321
|
+
value="${this.starHistory.datasets[2].data[this.starHistory.datasets[2].data.length - 1]}"></pb33f-rodeo-statistic>
|
|
322
|
+
<pb33f-rodeo-statistic small title="wiretap"
|
|
323
|
+
value="${this.starHistory.datasets[4].data[this.starHistory.datasets[4].data.length - 1]}"></pb33f-rodeo-statistic>
|
|
324
|
+
<pb33f-rodeo-statistic small title="Other"
|
|
325
|
+
value="${otherStarCount}"></pb33f-rodeo-statistic>
|
|
326
|
+
|
|
327
|
+
</div>
|
|
328
|
+
</div>
|
|
329
|
+
</div>
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
<div style="display: flex; width: 600px;">
|
|
333
|
+
<pb33f-chart stepSize=1000 width=600 title="vacuum NPM Downloads by week"
|
|
334
|
+
.datasets=${vacuumNpmDownloads}
|
|
335
|
+
.labels="${this.vacuumStatistics?.labels}"></pb33f-chart>
|
|
336
|
+
|
|
337
|
+
<div style="padding-top: 20px;">
|
|
338
|
+
<div>
|
|
339
|
+
<pb33f-rodeo-statistic small title="Total NPM Downloads"
|
|
340
|
+
value="${vacuumStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
341
|
+
</div>
|
|
342
|
+
<div>
|
|
343
|
+
<pb33f-rodeo-statistic small title="Peak Per Week"
|
|
344
|
+
value="${vacuumStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
345
|
+
</div>
|
|
346
|
+
<div>
|
|
347
|
+
<pb33f-rodeo-statistic small title="Peak Downloads Date"
|
|
348
|
+
label="${vacuumStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
349
|
+
</div>
|
|
350
|
+
</div>
|
|
351
|
+
</div>
|
|
352
|
+
|
|
353
|
+
<div style="display: flex; width: 600px;">
|
|
354
|
+
<pb33f-chart stepSize=1000 width=600 title="openapi-changes NPM Downloads by week"
|
|
355
|
+
.datasets=${changesNpmDownloads}
|
|
356
|
+
.labels="${this.openapiChangesStatistics?.labels}"></pb33f-chart>
|
|
357
|
+
|
|
358
|
+
<div style="padding-top: 20px;">
|
|
359
|
+
<div>
|
|
360
|
+
<pb33f-rodeo-statistic small title="Total NPM Downloads"
|
|
361
|
+
value="${changesStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
362
|
+
</div>
|
|
363
|
+
<div>
|
|
364
|
+
<pb33f-rodeo-statistic small title="Peak Per Week"
|
|
365
|
+
value="${changesStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
366
|
+
</div>
|
|
367
|
+
<div>
|
|
368
|
+
<pb33f-rodeo-statistic small title="Peak Downloads Date"
|
|
369
|
+
label="${changesStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
370
|
+
</div>
|
|
371
|
+
</div>
|
|
372
|
+
</div>
|
|
373
|
+
|
|
374
|
+
<div style="display: flex; width: 600px;">
|
|
375
|
+
<pb33f-chart width=600 title="wiretap NPM Downloads by week" .datasets=${wiretapNpmDownloads}
|
|
376
|
+
.labels="${this.wiretapStatistics?.labels}"></pb33f-chart>
|
|
377
|
+
|
|
378
|
+
<div style="padding-top: 20px;">
|
|
379
|
+
<div>
|
|
380
|
+
<pb33f-rodeo-statistic small title="Total NPM Downloads"
|
|
381
|
+
value="${wiretapStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
382
|
+
</div>
|
|
383
|
+
<div>
|
|
384
|
+
<pb33f-rodeo-statistic small title="Peak Per Week"
|
|
385
|
+
value="${wiretapStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
386
|
+
</div>
|
|
387
|
+
<div>
|
|
388
|
+
<pb33f-rodeo-statistic small title="Peak Downloads Date"
|
|
389
|
+
label="${wiretapStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
390
|
+
</div>
|
|
391
|
+
</div>
|
|
392
|
+
</div>
|
|
393
|
+
|
|
394
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
395
|
+
<pb33f-chart chartType="bar" legend stepSize=5 width=600 title="docker image pulls"
|
|
396
|
+
.datasets=${dockerPulls}
|
|
397
|
+
.labels="${this.vacuumDockerPulls?.labels}"></pb33f-chart>
|
|
398
|
+
|
|
399
|
+
<div style="padding-top: 20px;">
|
|
400
|
+
<div>
|
|
401
|
+
<pb33f-rodeo-statistic small title="vacuum Stars"
|
|
402
|
+
value="${this.starHistory.datasets[0].data[this.starHistory.datasets[0].data.length - 1]}"></pb33f-rodeo-statistic>
|
|
403
|
+
|
|
404
|
+
</div>
|
|
405
|
+
</div>
|
|
406
|
+
</div>
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
<div style="display: flex; width: 600px;">
|
|
411
|
+
<pb33f-chart width=600 title="vacuum github downloads by version"
|
|
412
|
+
.datasets=${vacuumGithubDownloads}
|
|
413
|
+
.labels="${this.vacuumGithubTotal?.labels}"></pb33f-chart>
|
|
414
|
+
|
|
415
|
+
<div style="padding-top: 20px;">
|
|
416
|
+
<div>
|
|
417
|
+
<pb33f-rodeo-statistic small title="Total Downloads"
|
|
418
|
+
value="${vacuumGithubStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
419
|
+
</div>
|
|
420
|
+
|
|
421
|
+
<div>
|
|
422
|
+
<pb33f-rodeo-statistic small title="Most Downloaded"
|
|
423
|
+
label="${vacuumGithubStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
424
|
+
</div>
|
|
425
|
+
<div>
|
|
426
|
+
<pb33f-rodeo-statistic small title="${vacuumGithubStatsSummary.peakDate} downloads"
|
|
427
|
+
value="${vacuumGithubStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
428
|
+
</div>
|
|
429
|
+
</div>
|
|
430
|
+
</div>
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
<div style="display: flex; width: 600px;">
|
|
434
|
+
<pb33f-chart width=600 title="openapi-changes github downloads by version"
|
|
435
|
+
.datasets=${changesGithubDownloads}
|
|
436
|
+
.labels="${this.changesGithubTotal?.labels}"></pb33f-chart>
|
|
437
|
+
|
|
438
|
+
<div style="padding-top: 20px;">
|
|
439
|
+
<div>
|
|
440
|
+
<pb33f-rodeo-statistic small title="Total Downloads"
|
|
441
|
+
value="${changesGithubStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
442
|
+
</div>
|
|
443
|
+
<div>
|
|
444
|
+
<pb33f-rodeo-statistic small title="Most Downloaded"
|
|
445
|
+
label="${changesGithubStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
446
|
+
</div>
|
|
447
|
+
<div>
|
|
448
|
+
<pb33f-rodeo-statistic small title="${changesGithubStatsSummary.peakDate} downloads"
|
|
449
|
+
value="${changesGithubStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
450
|
+
</div>
|
|
451
|
+
</div>
|
|
452
|
+
</div>
|
|
453
|
+
|
|
454
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
455
|
+
<pb33f-chart stepSize=500 width=600 title="wiretap github downloads by version"
|
|
456
|
+
.datasets=${wiretapGithubDownloads}
|
|
457
|
+
.labels="${this.wiretapGithubTotal?.labels}"></pb33f-chart>
|
|
458
|
+
|
|
459
|
+
<div style="padding-top: 20px;">
|
|
460
|
+
<div>
|
|
461
|
+
<pb33f-rodeo-statistic small title="Total Downloads"
|
|
462
|
+
value="${wiretapGithubStatsSummary.total}"></pb33f-rodeo-statistic>
|
|
463
|
+
</div>
|
|
464
|
+
|
|
465
|
+
<div>
|
|
466
|
+
<pb33f-rodeo-statistic small title="Most Downloaded"
|
|
467
|
+
label="${wiretapGithubStatsSummary.peakDate}"></pb33f-rodeo-statistic>
|
|
468
|
+
</div>
|
|
469
|
+
<div>
|
|
470
|
+
<pb33f-rodeo-statistic small title="${wiretapGithubStatsSummary.peakDate} downloads"
|
|
471
|
+
value="${wiretapGithubStatsSummary.peak}"></pb33f-rodeo-statistic>
|
|
472
|
+
</div>
|
|
473
|
+
</div>
|
|
474
|
+
</div>
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
478
|
+
<pb33f-chart width=600 title="vacuum repository clones over the last 14 days"
|
|
479
|
+
.datasets=${vacuumGithubClones}
|
|
480
|
+
.labels="${this.vacuumClones?.labels}"></pb33f-chart>
|
|
481
|
+
|
|
482
|
+
<div style="padding-top: 20px;">
|
|
483
|
+
<div>
|
|
484
|
+
<pb33f-rodeo-statistic small title="Total clones"
|
|
485
|
+
value="${vacuumGithubClonesSummary.total}"></pb33f-rodeo-statistic>
|
|
486
|
+
</div>
|
|
487
|
+
|
|
488
|
+
</div>
|
|
489
|
+
</div>
|
|
490
|
+
|
|
491
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
492
|
+
<pb33f-chart width=600 title="libopenapi repository clones over the last 14 days"
|
|
493
|
+
.datasets=${libopenapiGithubClones}
|
|
494
|
+
.labels="${this.libopenapiClones?.labels}"></pb33f-chart>
|
|
495
|
+
|
|
496
|
+
<div style="padding-top: 20px;">
|
|
497
|
+
<div>
|
|
498
|
+
<pb33f-rodeo-statistic small title="Total clones"
|
|
499
|
+
value="${libopenapiGithubClonesSummary.total}"></pb33f-rodeo-statistic>
|
|
500
|
+
</div>
|
|
501
|
+
|
|
502
|
+
</div>
|
|
503
|
+
</div>
|
|
504
|
+
|
|
505
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
506
|
+
<pb33f-chart width=600 title="libopenapi-validator repository clones over the last 14 days"
|
|
507
|
+
.datasets=${libopenapiValidatorGithubClones}
|
|
508
|
+
.labels="${this.libopenapiValidatorClones?.labels}"></pb33f-chart>
|
|
509
|
+
|
|
510
|
+
<div style="padding-top: 20px;">
|
|
511
|
+
<div>
|
|
512
|
+
<pb33f-rodeo-statistic small title="Total clones"
|
|
513
|
+
value="${libopenapiValidatorGithubClonesSummary.total}"></pb33f-rodeo-statistic>
|
|
514
|
+
</div>
|
|
515
|
+
|
|
516
|
+
</div>
|
|
517
|
+
</div>
|
|
518
|
+
|
|
519
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
520
|
+
<pb33f-chart width=600 title="openapi-changes repository clones over the last 14 days"
|
|
521
|
+
.datasets=${changesGithubClones}
|
|
522
|
+
.labels="${this.changesClones?.labels}"></pb33f-chart>
|
|
523
|
+
|
|
524
|
+
<div style="padding-top: 20px;">
|
|
525
|
+
<div>
|
|
526
|
+
<pb33f-rodeo-statistic small title="Total clones"
|
|
527
|
+
value="${changesGithubClonesSummary.total}"></pb33f-rodeo-statistic>
|
|
528
|
+
</div>
|
|
529
|
+
|
|
530
|
+
</div>
|
|
531
|
+
</div>
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
<div style="display: flex; padding-bottom: 30px; width: 600px;">
|
|
535
|
+
<pb33f-chart width=600 title="wiretap repository clones over the last 14 days"
|
|
536
|
+
.datasets=${wiretapGithubClones}
|
|
537
|
+
.labels="${this.wiretapClones?.labels}"></pb33f-chart>
|
|
538
|
+
|
|
539
|
+
<div style="padding-top: 20px;">
|
|
540
|
+
<div>
|
|
541
|
+
<pb33f-rodeo-statistic small title="Total clones"
|
|
542
|
+
value="${wiretapGithubClonesSummary.total}"></pb33f-rodeo-statistic>
|
|
543
|
+
</div>
|
|
544
|
+
|
|
545
|
+
</div>
|
|
546
|
+
</div>
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
</div>
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
`;
|
|
555
|
+
/*
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
*/
|
|
563
|
+
}
|
|
564
|
+
};
|
|
565
|
+
__decorate([
|
|
566
|
+
state()
|
|
567
|
+
], RodeoDownloadStatistics.prototype, "vacuumStatistics", void 0);
|
|
568
|
+
__decorate([
|
|
569
|
+
state()
|
|
570
|
+
], RodeoDownloadStatistics.prototype, "wiretapStatistics", void 0);
|
|
571
|
+
__decorate([
|
|
572
|
+
state()
|
|
573
|
+
], RodeoDownloadStatistics.prototype, "openapiChangesStatistics", void 0);
|
|
574
|
+
__decorate([
|
|
575
|
+
state()
|
|
576
|
+
], RodeoDownloadStatistics.prototype, "vacuumGithubTotal", void 0);
|
|
577
|
+
__decorate([
|
|
578
|
+
state()
|
|
579
|
+
], RodeoDownloadStatistics.prototype, "changesGithubTotal", void 0);
|
|
580
|
+
__decorate([
|
|
581
|
+
state()
|
|
582
|
+
], RodeoDownloadStatistics.prototype, "wiretapGithubTotal", void 0);
|
|
583
|
+
__decorate([
|
|
584
|
+
state()
|
|
585
|
+
], RodeoDownloadStatistics.prototype, "vacuumClones", void 0);
|
|
586
|
+
__decorate([
|
|
587
|
+
state()
|
|
588
|
+
], RodeoDownloadStatistics.prototype, "libopenapiClones", void 0);
|
|
589
|
+
__decorate([
|
|
590
|
+
state()
|
|
591
|
+
], RodeoDownloadStatistics.prototype, "libopenapiValidatorClones", void 0);
|
|
592
|
+
__decorate([
|
|
593
|
+
state()
|
|
594
|
+
], RodeoDownloadStatistics.prototype, "changesClones", void 0);
|
|
595
|
+
__decorate([
|
|
596
|
+
state()
|
|
597
|
+
], RodeoDownloadStatistics.prototype, "wiretapClones", void 0);
|
|
598
|
+
__decorate([
|
|
599
|
+
state()
|
|
600
|
+
], RodeoDownloadStatistics.prototype, "vacuumStars", void 0);
|
|
601
|
+
__decorate([
|
|
602
|
+
state()
|
|
603
|
+
], RodeoDownloadStatistics.prototype, "libopenapiStars", void 0);
|
|
604
|
+
__decorate([
|
|
605
|
+
state()
|
|
606
|
+
], RodeoDownloadStatistics.prototype, "libopenapiValidatorStars", void 0);
|
|
607
|
+
__decorate([
|
|
608
|
+
state()
|
|
609
|
+
], RodeoDownloadStatistics.prototype, "wiretapStars", void 0);
|
|
610
|
+
__decorate([
|
|
611
|
+
state()
|
|
612
|
+
], RodeoDownloadStatistics.prototype, "changesStars", void 0);
|
|
613
|
+
__decorate([
|
|
614
|
+
state()
|
|
615
|
+
], RodeoDownloadStatistics.prototype, "doctorStars", void 0);
|
|
616
|
+
__decorate([
|
|
617
|
+
state()
|
|
618
|
+
], RodeoDownloadStatistics.prototype, "saddlebagStars", void 0);
|
|
619
|
+
__decorate([
|
|
620
|
+
state()
|
|
621
|
+
], RodeoDownloadStatistics.prototype, "vacuumDockerPulls", void 0);
|
|
622
|
+
__decorate([
|
|
623
|
+
state()
|
|
624
|
+
], RodeoDownloadStatistics.prototype, "changesDockerPulls", void 0);
|
|
625
|
+
__decorate([
|
|
626
|
+
state()
|
|
627
|
+
], RodeoDownloadStatistics.prototype, "wiretapDockerPulls", void 0);
|
|
628
|
+
__decorate([
|
|
629
|
+
queryAll('pb33f-chart')
|
|
630
|
+
], RodeoDownloadStatistics.prototype, "charts", void 0);
|
|
631
|
+
RodeoDownloadStatistics = __decorate([
|
|
632
|
+
customElement('pb33f-rodeo-download-statistics')
|
|
633
|
+
], RodeoDownloadStatistics);
|
|
634
|
+
export { RodeoDownloadStatistics };
|