@contractspec/example.analytics-dashboard 3.7.6 → 3.8.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/README.md +64 -271
- package/dist/browser/dashboard.feature.js +592 -0
- package/dist/browser/events.js +1 -1
- package/dist/browser/index.js +1171 -627
- package/dist/browser/ui/AnalyticsDashboard.js +826 -194
- package/dist/browser/ui/AnalyticsDashboard.widgets.js +94 -0
- package/dist/browser/ui/AnalyticsQueriesTable.js +99 -0
- package/dist/browser/ui/hooks/index.js +594 -3
- package/dist/browser/ui/hooks/useAnalyticsData.js +594 -3
- package/dist/browser/ui/index.js +964 -440
- package/dist/browser/ui/renderers/analytics.markdown.js +620 -138
- package/dist/browser/ui/renderers/index.js +620 -138
- package/dist/browser/visualizations/catalog.js +457 -0
- package/dist/browser/visualizations/index.js +611 -0
- package/dist/browser/visualizations/specs.breakdown.js +140 -0
- package/dist/browser/visualizations/specs.performance.js +198 -0
- package/dist/browser/visualizations/widgets.js +595 -0
- package/dist/dashboard/index.d.ts +3 -3
- package/dist/dashboard.feature.js +592 -0
- package/dist/events.js +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.js +1171 -627
- package/dist/node/dashboard.feature.js +592 -0
- package/dist/node/events.js +1 -1
- package/dist/node/index.js +1171 -627
- package/dist/node/ui/AnalyticsDashboard.js +826 -194
- package/dist/node/ui/AnalyticsDashboard.widgets.js +94 -0
- package/dist/node/ui/AnalyticsQueriesTable.js +99 -0
- package/dist/node/ui/hooks/index.js +594 -3
- package/dist/node/ui/hooks/useAnalyticsData.js +594 -3
- package/dist/node/ui/index.js +964 -440
- package/dist/node/ui/renderers/analytics.markdown.js +620 -138
- package/dist/node/ui/renderers/index.js +620 -138
- package/dist/node/visualizations/catalog.js +457 -0
- package/dist/node/visualizations/index.js +611 -0
- package/dist/node/visualizations/specs.breakdown.js +140 -0
- package/dist/node/visualizations/specs.performance.js +198 -0
- package/dist/node/visualizations/widgets.js +595 -0
- package/dist/query/index.d.ts +1 -1
- package/dist/query-engine/index.d.ts +1 -1
- package/dist/ui/AnalyticsDashboard.js +826 -194
- package/dist/ui/AnalyticsDashboard.widgets.d.ts +5 -0
- package/dist/ui/AnalyticsDashboard.widgets.js +95 -0
- package/dist/ui/AnalyticsQueriesTable.d.ts +4 -0
- package/dist/ui/AnalyticsQueriesTable.js +100 -0
- package/dist/ui/hooks/index.d.ts +1 -1
- package/dist/ui/hooks/index.js +594 -3
- package/dist/ui/hooks/useAnalyticsData.js +594 -3
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +964 -440
- package/dist/ui/renderers/analytics.markdown.d.ts +0 -9
- package/dist/ui/renderers/analytics.markdown.js +620 -138
- package/dist/ui/renderers/index.js +620 -138
- package/dist/visualizations/catalog.d.ts +9 -0
- package/dist/visualizations/catalog.js +458 -0
- package/dist/visualizations/index.d.ts +4 -0
- package/dist/visualizations/index.js +612 -0
- package/dist/visualizations/specs.breakdown.d.ts +4 -0
- package/dist/visualizations/specs.breakdown.js +141 -0
- package/dist/visualizations/specs.performance.d.ts +5 -0
- package/dist/visualizations/specs.performance.js +199 -0
- package/dist/visualizations/widgets.d.ts +24 -0
- package/dist/visualizations/widgets.js +596 -0
- package/dist/visualizations/widgets.test.d.ts +1 -0
- package/package.json +105 -7
|
@@ -1,4 +1,595 @@
|
|
|
1
1
|
// @bun
|
|
2
|
+
// src/visualizations/specs.breakdown.ts
|
|
3
|
+
import { defineVisualization } from "@contractspec/lib.contracts-spec/visualizations";
|
|
4
|
+
var QUERY_REF = { key: "analytics.query.execute", version: "1.0.0" };
|
|
5
|
+
var META = {
|
|
6
|
+
version: "1.0.0",
|
|
7
|
+
domain: "analytics",
|
|
8
|
+
stability: "experimental",
|
|
9
|
+
owners: ["@example.analytics-dashboard"],
|
|
10
|
+
tags: ["analytics", "dashboard", "visualization"]
|
|
11
|
+
};
|
|
12
|
+
var ChannelMixVisualization = defineVisualization({
|
|
13
|
+
meta: {
|
|
14
|
+
...META,
|
|
15
|
+
key: "analytics.visualization.channel-mix",
|
|
16
|
+
title: "Channel Mix",
|
|
17
|
+
description: "Session distribution across acquisition channels.",
|
|
18
|
+
goal: "Explain which channels currently drive the largest share of traffic.",
|
|
19
|
+
context: "Marketing attribution dashboard."
|
|
20
|
+
},
|
|
21
|
+
source: { primary: QUERY_REF, resultPath: "data" },
|
|
22
|
+
visualization: {
|
|
23
|
+
kind: "pie",
|
|
24
|
+
nameDimension: "channel",
|
|
25
|
+
valueMeasure: "sessions",
|
|
26
|
+
dimensions: [
|
|
27
|
+
{
|
|
28
|
+
key: "channel",
|
|
29
|
+
label: "Channel",
|
|
30
|
+
dataPath: "channel",
|
|
31
|
+
type: "category"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
measures: [{ key: "sessions", label: "Sessions", dataPath: "sessions" }],
|
|
35
|
+
table: { caption: "Sessions by acquisition channel." }
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
var EngagementHeatmapVisualization = defineVisualization({
|
|
39
|
+
meta: {
|
|
40
|
+
...META,
|
|
41
|
+
key: "analytics.visualization.engagement-heatmap",
|
|
42
|
+
title: "Engagement Heatmap",
|
|
43
|
+
description: "Average engagement score by weekday and time band.",
|
|
44
|
+
goal: "Reveal the highest-engagement time windows for product activity.",
|
|
45
|
+
context: "Usage analytics dashboard."
|
|
46
|
+
},
|
|
47
|
+
source: { primary: QUERY_REF, resultPath: "data" },
|
|
48
|
+
visualization: {
|
|
49
|
+
kind: "heatmap",
|
|
50
|
+
xDimension: "timeBand",
|
|
51
|
+
yDimension: "weekday",
|
|
52
|
+
valueMeasure: "engagementScore",
|
|
53
|
+
dimensions: [
|
|
54
|
+
{
|
|
55
|
+
key: "timeBand",
|
|
56
|
+
label: "Time Band",
|
|
57
|
+
dataPath: "timeBand",
|
|
58
|
+
type: "category"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: "weekday",
|
|
62
|
+
label: "Weekday",
|
|
63
|
+
dataPath: "weekday",
|
|
64
|
+
type: "category"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
measures: [
|
|
68
|
+
{
|
|
69
|
+
key: "engagementScore",
|
|
70
|
+
label: "Engagement",
|
|
71
|
+
dataPath: "engagementScore"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
table: { caption: "Engagement score by weekday and time band." }
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
var ConversionFunnelVisualization = defineVisualization({
|
|
78
|
+
meta: {
|
|
79
|
+
...META,
|
|
80
|
+
key: "analytics.visualization.conversion-funnel",
|
|
81
|
+
title: "Conversion Funnel",
|
|
82
|
+
description: "Progression through the main acquisition funnel.",
|
|
83
|
+
goal: "Show where the product is losing the largest share of prospects.",
|
|
84
|
+
context: "Growth dashboard."
|
|
85
|
+
},
|
|
86
|
+
source: { primary: QUERY_REF, resultPath: "data" },
|
|
87
|
+
visualization: {
|
|
88
|
+
kind: "funnel",
|
|
89
|
+
nameDimension: "stage",
|
|
90
|
+
valueMeasure: "users",
|
|
91
|
+
sort: "descending",
|
|
92
|
+
dimensions: [
|
|
93
|
+
{ key: "stage", label: "Stage", dataPath: "stage", type: "category" }
|
|
94
|
+
],
|
|
95
|
+
measures: [{ key: "users", label: "Users", dataPath: "users" }],
|
|
96
|
+
table: { caption: "Users per conversion stage." }
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
var AccountCoverageGeoVisualization = defineVisualization({
|
|
100
|
+
meta: {
|
|
101
|
+
...META,
|
|
102
|
+
key: "analytics.visualization.account-coverage-geo",
|
|
103
|
+
title: "Account Coverage",
|
|
104
|
+
description: "High-value accounts plotted on a slippy-map surface.",
|
|
105
|
+
goal: "Locate where active commercial concentration is strongest.",
|
|
106
|
+
context: "Territory coverage dashboard."
|
|
107
|
+
},
|
|
108
|
+
source: { primary: QUERY_REF, resultPath: "data" },
|
|
109
|
+
visualization: {
|
|
110
|
+
kind: "geo",
|
|
111
|
+
mode: "slippy-map",
|
|
112
|
+
variant: "scatter",
|
|
113
|
+
nameDimension: "city",
|
|
114
|
+
latitudeDimension: "latitude",
|
|
115
|
+
longitudeDimension: "longitude",
|
|
116
|
+
valueMeasure: "accounts",
|
|
117
|
+
dimensions: [
|
|
118
|
+
{ key: "city", label: "City", dataPath: "city", type: "category" },
|
|
119
|
+
{
|
|
120
|
+
key: "latitude",
|
|
121
|
+
label: "Latitude",
|
|
122
|
+
dataPath: "latitude",
|
|
123
|
+
type: "latitude"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
key: "longitude",
|
|
127
|
+
label: "Longitude",
|
|
128
|
+
dataPath: "longitude",
|
|
129
|
+
type: "longitude"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
measures: [{ key: "accounts", label: "Accounts", dataPath: "accounts" }],
|
|
133
|
+
table: { caption: "Account concentration by city." }
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
// src/visualizations/specs.performance.ts
|
|
138
|
+
import { defineVisualization as defineVisualization2 } from "@contractspec/lib.contracts-spec/visualizations";
|
|
139
|
+
var QUERY_REF2 = { key: "analytics.query.execute", version: "1.0.0" };
|
|
140
|
+
var META2 = {
|
|
141
|
+
version: "1.0.0",
|
|
142
|
+
domain: "analytics",
|
|
143
|
+
stability: "experimental",
|
|
144
|
+
owners: ["@example.analytics-dashboard"],
|
|
145
|
+
tags: ["analytics", "dashboard", "visualization"]
|
|
146
|
+
};
|
|
147
|
+
var RevenueMetricVisualization = defineVisualization2({
|
|
148
|
+
meta: {
|
|
149
|
+
...META2,
|
|
150
|
+
key: "analytics.visualization.revenue-metric",
|
|
151
|
+
title: "Revenue Snapshot",
|
|
152
|
+
description: "Current recurring revenue with prior-period comparison.",
|
|
153
|
+
goal: "Highlight the headline commercial metric for the dashboard.",
|
|
154
|
+
context: "Executive revenue overview."
|
|
155
|
+
},
|
|
156
|
+
source: { primary: QUERY_REF2, resultPath: "data" },
|
|
157
|
+
visualization: {
|
|
158
|
+
kind: "metric",
|
|
159
|
+
measure: "totalRevenue",
|
|
160
|
+
comparisonMeasure: "priorRevenue",
|
|
161
|
+
dimensions: [
|
|
162
|
+
{ key: "period", label: "Period", dataPath: "period", type: "time" }
|
|
163
|
+
],
|
|
164
|
+
measures: [
|
|
165
|
+
{
|
|
166
|
+
key: "totalRevenue",
|
|
167
|
+
label: "Revenue",
|
|
168
|
+
dataPath: "totalRevenue",
|
|
169
|
+
format: "currency"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
key: "priorRevenue",
|
|
173
|
+
label: "Prior Revenue",
|
|
174
|
+
dataPath: "priorRevenue",
|
|
175
|
+
format: "currency"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
sparkline: { dimension: "period", measure: "totalRevenue" },
|
|
179
|
+
table: { caption: "Revenue trend and prior period values." }
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
var RevenueTrendVisualization = defineVisualization2({
|
|
183
|
+
meta: {
|
|
184
|
+
...META2,
|
|
185
|
+
key: "analytics.visualization.revenue-trend",
|
|
186
|
+
title: "Revenue Trend",
|
|
187
|
+
description: "Monthly revenue progression for the current quarter.",
|
|
188
|
+
goal: "Track whether revenue growth is accelerating or stalling.",
|
|
189
|
+
context: "Quarterly commercial dashboard."
|
|
190
|
+
},
|
|
191
|
+
source: { primary: QUERY_REF2, resultPath: "data" },
|
|
192
|
+
visualization: {
|
|
193
|
+
kind: "cartesian",
|
|
194
|
+
variant: "line",
|
|
195
|
+
xDimension: "date",
|
|
196
|
+
yMeasures: ["revenue"],
|
|
197
|
+
dimensions: [
|
|
198
|
+
{ key: "date", label: "Month", dataPath: "date", type: "time" }
|
|
199
|
+
],
|
|
200
|
+
measures: [
|
|
201
|
+
{
|
|
202
|
+
key: "revenue",
|
|
203
|
+
label: "Revenue",
|
|
204
|
+
dataPath: "revenue",
|
|
205
|
+
format: "currency",
|
|
206
|
+
color: "#0f766e"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
thresholds: [
|
|
210
|
+
{ key: "target", value: 140000, label: "Target", color: "#dc2626" }
|
|
211
|
+
],
|
|
212
|
+
table: { caption: "Monthly revenue values." }
|
|
213
|
+
}
|
|
214
|
+
});
|
|
215
|
+
var RegionalRevenueVisualization = defineVisualization2({
|
|
216
|
+
meta: {
|
|
217
|
+
...META2,
|
|
218
|
+
key: "analytics.visualization.regional-revenue",
|
|
219
|
+
title: "Regional Revenue",
|
|
220
|
+
description: "Revenue split by sales territory.",
|
|
221
|
+
goal: "Compare the strongest and weakest performing territories.",
|
|
222
|
+
context: "Territory planning and commercial comparison."
|
|
223
|
+
},
|
|
224
|
+
source: { primary: QUERY_REF2, resultPath: "data" },
|
|
225
|
+
visualization: {
|
|
226
|
+
kind: "cartesian",
|
|
227
|
+
variant: "bar",
|
|
228
|
+
xDimension: "region",
|
|
229
|
+
yMeasures: ["revenue"],
|
|
230
|
+
dimensions: [
|
|
231
|
+
{ key: "region", label: "Region", dataPath: "region", type: "category" }
|
|
232
|
+
],
|
|
233
|
+
measures: [
|
|
234
|
+
{
|
|
235
|
+
key: "revenue",
|
|
236
|
+
label: "Revenue",
|
|
237
|
+
dataPath: "revenue",
|
|
238
|
+
format: "currency",
|
|
239
|
+
color: "#1d4ed8"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
table: { caption: "Revenue by region." }
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
var RetentionAreaVisualization = defineVisualization2({
|
|
246
|
+
meta: {
|
|
247
|
+
...META2,
|
|
248
|
+
key: "analytics.visualization.retention-area",
|
|
249
|
+
title: "Retention Curve",
|
|
250
|
+
description: "Weekly retention progression across the active cohort.",
|
|
251
|
+
goal: "Show whether user retention remains above the desired floor.",
|
|
252
|
+
context: "Product health dashboard."
|
|
253
|
+
},
|
|
254
|
+
source: { primary: QUERY_REF2, resultPath: "data" },
|
|
255
|
+
visualization: {
|
|
256
|
+
kind: "cartesian",
|
|
257
|
+
variant: "area",
|
|
258
|
+
xDimension: "week",
|
|
259
|
+
yMeasures: ["retentionRate"],
|
|
260
|
+
dimensions: [
|
|
261
|
+
{ key: "week", label: "Week", dataPath: "week", type: "category" }
|
|
262
|
+
],
|
|
263
|
+
measures: [
|
|
264
|
+
{
|
|
265
|
+
key: "retentionRate",
|
|
266
|
+
label: "Retention",
|
|
267
|
+
dataPath: "retentionRate",
|
|
268
|
+
format: "percentage",
|
|
269
|
+
color: "#16a34a"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
thresholds: [
|
|
273
|
+
{ key: "floor", value: 0.5, label: "Floor", color: "#f59e0b" }
|
|
274
|
+
],
|
|
275
|
+
table: { caption: "Weekly retention rate." }
|
|
276
|
+
}
|
|
277
|
+
});
|
|
278
|
+
var PipelineScatterVisualization = defineVisualization2({
|
|
279
|
+
meta: {
|
|
280
|
+
...META2,
|
|
281
|
+
key: "analytics.visualization.pipeline-scatter",
|
|
282
|
+
title: "Pipeline Velocity",
|
|
283
|
+
description: "Deal-cycle length against win rate for active accounts.",
|
|
284
|
+
goal: "Spot outliers where the sales cycle is long but conversion remains weak.",
|
|
285
|
+
context: "Commercial operations dashboard."
|
|
286
|
+
},
|
|
287
|
+
source: { primary: QUERY_REF2, resultPath: "data" },
|
|
288
|
+
visualization: {
|
|
289
|
+
kind: "cartesian",
|
|
290
|
+
variant: "scatter",
|
|
291
|
+
xDimension: "cycleDays",
|
|
292
|
+
yMeasures: ["winRate"],
|
|
293
|
+
dimensions: [
|
|
294
|
+
{
|
|
295
|
+
key: "cycleDays",
|
|
296
|
+
label: "Cycle Days",
|
|
297
|
+
dataPath: "cycleDays",
|
|
298
|
+
type: "number"
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
measures: [
|
|
302
|
+
{
|
|
303
|
+
key: "winRate",
|
|
304
|
+
label: "Win Rate",
|
|
305
|
+
dataPath: "winRate",
|
|
306
|
+
format: "percentage",
|
|
307
|
+
color: "#7c3aed"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
key: "arr",
|
|
311
|
+
label: "ARR",
|
|
312
|
+
dataPath: "arr",
|
|
313
|
+
format: "currency"
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
series: [
|
|
317
|
+
{
|
|
318
|
+
key: "pipeline",
|
|
319
|
+
label: "Accounts",
|
|
320
|
+
measure: "winRate",
|
|
321
|
+
type: "scatter",
|
|
322
|
+
color: "#7c3aed"
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
table: { caption: "Sales cycle and win rate per account." }
|
|
326
|
+
}
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
// src/visualizations/catalog.ts
|
|
330
|
+
import { VisualizationRegistry } from "@contractspec/lib.contracts-spec/visualizations";
|
|
331
|
+
var AnalyticsVisualizationSpecs = [
|
|
332
|
+
RevenueMetricVisualization,
|
|
333
|
+
RevenueTrendVisualization,
|
|
334
|
+
RegionalRevenueVisualization,
|
|
335
|
+
RetentionAreaVisualization,
|
|
336
|
+
PipelineScatterVisualization,
|
|
337
|
+
ChannelMixVisualization,
|
|
338
|
+
EngagementHeatmapVisualization,
|
|
339
|
+
ConversionFunnelVisualization,
|
|
340
|
+
AccountCoverageGeoVisualization
|
|
341
|
+
];
|
|
342
|
+
var AnalyticsVisualizationRegistry = new VisualizationRegistry([
|
|
343
|
+
...AnalyticsVisualizationSpecs
|
|
344
|
+
]);
|
|
345
|
+
var AnalyticsVisualizationRefs = AnalyticsVisualizationSpecs.map((spec) => refOf(spec));
|
|
346
|
+
var AnalyticsVisualizationSpecMap = new Map(AnalyticsVisualizationSpecs.map((spec) => [
|
|
347
|
+
visualizationRefKey(spec.meta),
|
|
348
|
+
spec
|
|
349
|
+
]));
|
|
350
|
+
var AnalyticsVisualizationSampleData = {
|
|
351
|
+
[visualizationRefKey(RevenueMetricVisualization.meta)]: {
|
|
352
|
+
data: [
|
|
353
|
+
{ period: "2025-11-01", totalRevenue: 112000, priorRevenue: 103000 },
|
|
354
|
+
{ period: "2025-12-01", totalRevenue: 119000, priorRevenue: 110000 },
|
|
355
|
+
{ period: "2026-01-01", totalRevenue: 126500, priorRevenue: 116000 },
|
|
356
|
+
{ period: "2026-02-01", totalRevenue: 133000, priorRevenue: 124000 },
|
|
357
|
+
{ period: "2026-03-01", totalRevenue: 145500, priorRevenue: 133000 }
|
|
358
|
+
]
|
|
359
|
+
},
|
|
360
|
+
[visualizationRefKey(RevenueTrendVisualization.meta)]: {
|
|
361
|
+
data: [
|
|
362
|
+
{ date: "2025-11-01", revenue: 112000 },
|
|
363
|
+
{ date: "2025-12-01", revenue: 119000 },
|
|
364
|
+
{ date: "2026-01-01", revenue: 126500 },
|
|
365
|
+
{ date: "2026-02-01", revenue: 133000 },
|
|
366
|
+
{ date: "2026-03-01", revenue: 145500 }
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
[visualizationRefKey(RegionalRevenueVisualization.meta)]: {
|
|
370
|
+
data: [
|
|
371
|
+
{ region: "North America", revenue: 210000 },
|
|
372
|
+
{ region: "EMEA", revenue: 174000 },
|
|
373
|
+
{ region: "APAC", revenue: 132000 },
|
|
374
|
+
{ region: "LATAM", revenue: 88000 }
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
[visualizationRefKey(RetentionAreaVisualization.meta)]: {
|
|
378
|
+
data: [
|
|
379
|
+
{ week: "Week 1", retentionRate: 0.71 },
|
|
380
|
+
{ week: "Week 2", retentionRate: 0.66 },
|
|
381
|
+
{ week: "Week 3", retentionRate: 0.62 },
|
|
382
|
+
{ week: "Week 4", retentionRate: 0.58 },
|
|
383
|
+
{ week: "Week 5", retentionRate: 0.55 },
|
|
384
|
+
{ week: "Week 6", retentionRate: 0.53 }
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
[visualizationRefKey(PipelineScatterVisualization.meta)]: {
|
|
388
|
+
data: [
|
|
389
|
+
{ cycleDays: 18, winRate: 0.31, arr: 82000 },
|
|
390
|
+
{ cycleDays: 26, winRate: 0.44, arr: 65000 },
|
|
391
|
+
{ cycleDays: 33, winRate: 0.27, arr: 91000 },
|
|
392
|
+
{ cycleDays: 14, winRate: 0.56, arr: 47000 },
|
|
393
|
+
{ cycleDays: 21, winRate: 0.48, arr: 59000 },
|
|
394
|
+
{ cycleDays: 39, winRate: 0.22, arr: 114000 }
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
[visualizationRefKey(ChannelMixVisualization.meta)]: {
|
|
398
|
+
data: [
|
|
399
|
+
{ channel: "Direct", sessions: 4200 },
|
|
400
|
+
{ channel: "Organic Search", sessions: 3600 },
|
|
401
|
+
{ channel: "Paid Search", sessions: 2100 },
|
|
402
|
+
{ channel: "Partner", sessions: 1400 },
|
|
403
|
+
{ channel: "Referral", sessions: 900 }
|
|
404
|
+
]
|
|
405
|
+
},
|
|
406
|
+
[visualizationRefKey(EngagementHeatmapVisualization.meta)]: {
|
|
407
|
+
data: [
|
|
408
|
+
{ weekday: "Mon", timeBand: "09:00", engagementScore: 74 },
|
|
409
|
+
{ weekday: "Mon", timeBand: "13:00", engagementScore: 82 },
|
|
410
|
+
{ weekday: "Tue", timeBand: "09:00", engagementScore: 69 },
|
|
411
|
+
{ weekday: "Tue", timeBand: "13:00", engagementScore: 88 },
|
|
412
|
+
{ weekday: "Wed", timeBand: "09:00", engagementScore: 77 },
|
|
413
|
+
{ weekday: "Wed", timeBand: "13:00", engagementScore: 91 },
|
|
414
|
+
{ weekday: "Thu", timeBand: "09:00", engagementScore: 72 },
|
|
415
|
+
{ weekday: "Thu", timeBand: "13:00", engagementScore: 86 },
|
|
416
|
+
{ weekday: "Fri", timeBand: "09:00", engagementScore: 65 },
|
|
417
|
+
{ weekday: "Fri", timeBand: "13:00", engagementScore: 79 }
|
|
418
|
+
]
|
|
419
|
+
},
|
|
420
|
+
[visualizationRefKey(ConversionFunnelVisualization.meta)]: {
|
|
421
|
+
data: [
|
|
422
|
+
{ stage: "Visited Site", users: 12000 },
|
|
423
|
+
{ stage: "Started Trial", users: 4200 },
|
|
424
|
+
{ stage: "Activated Workspace", users: 2400 },
|
|
425
|
+
{ stage: "Requested Demo", users: 980 },
|
|
426
|
+
{ stage: "Closed Won", users: 310 }
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
[visualizationRefKey(AccountCoverageGeoVisualization.meta)]: {
|
|
430
|
+
data: [
|
|
431
|
+
{ city: "Paris", latitude: 48.8566, longitude: 2.3522, accounts: 48 },
|
|
432
|
+
{ city: "London", latitude: 51.5072, longitude: -0.1276, accounts: 62 },
|
|
433
|
+
{ city: "New York", latitude: 40.7128, longitude: -74.006, accounts: 71 },
|
|
434
|
+
{ city: "Toronto", latitude: 43.6532, longitude: -79.3832, accounts: 36 },
|
|
435
|
+
{
|
|
436
|
+
city: "Singapore",
|
|
437
|
+
latitude: 1.3521,
|
|
438
|
+
longitude: 103.8198,
|
|
439
|
+
accounts: 29
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
};
|
|
444
|
+
function refOf(spec) {
|
|
445
|
+
return { key: spec.meta.key, version: spec.meta.version };
|
|
446
|
+
}
|
|
447
|
+
function visualizationRefKey(ref) {
|
|
448
|
+
return `${ref.key}.v${ref.version}`;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
// src/visualizations/widgets.ts
|
|
452
|
+
var LEGACY_VISUALIZATION_REFS = {
|
|
453
|
+
METRIC: refOf(RevenueMetricVisualization),
|
|
454
|
+
LINE_CHART: refOf(RevenueTrendVisualization),
|
|
455
|
+
BAR_CHART: refOf(RegionalRevenueVisualization),
|
|
456
|
+
AREA_CHART: refOf(RetentionAreaVisualization),
|
|
457
|
+
SCATTER_PLOT: refOf(PipelineScatterVisualization),
|
|
458
|
+
PIE_CHART: refOf(ChannelMixVisualization),
|
|
459
|
+
HEATMAP: refOf(EngagementHeatmapVisualization),
|
|
460
|
+
FUNNEL: refOf(ConversionFunnelVisualization),
|
|
461
|
+
MAP: refOf(AccountCoverageGeoVisualization)
|
|
462
|
+
};
|
|
463
|
+
function createExampleWidgets(dashboardId) {
|
|
464
|
+
return [
|
|
465
|
+
widget(dashboardId, "widget_revenue_metric", "Revenue Snapshot", "METRIC", 0, 0, 4, 2, {
|
|
466
|
+
layout: "single",
|
|
467
|
+
bindings: [binding(RevenueMetricVisualization, 200)]
|
|
468
|
+
}),
|
|
469
|
+
widget(dashboardId, "widget_revenue_trend", "Revenue Trend", "LINE_CHART", 4, 0, 8, 4, {
|
|
470
|
+
layout: "single",
|
|
471
|
+
bindings: [binding(RevenueTrendVisualization)]
|
|
472
|
+
}),
|
|
473
|
+
widget(dashboardId, "widget_regional_revenue", "Regional Revenue", "BAR_CHART", 0, 2, 6, 4, {
|
|
474
|
+
layout: "single",
|
|
475
|
+
bindings: [binding(RegionalRevenueVisualization)]
|
|
476
|
+
}),
|
|
477
|
+
widget(dashboardId, "widget_channel_mix", "Channel Mix", "PIE_CHART", 6, 2, 6, 4, {
|
|
478
|
+
layout: "single",
|
|
479
|
+
bindings: [binding(ChannelMixVisualization)]
|
|
480
|
+
}),
|
|
481
|
+
widget(dashboardId, "widget_retention", "Retention Curve", "AREA_CHART", 0, 6, 6, 4, {
|
|
482
|
+
layout: "single",
|
|
483
|
+
bindings: [binding(RetentionAreaVisualization)]
|
|
484
|
+
}),
|
|
485
|
+
widget(dashboardId, "widget_pipeline", "Pipeline Velocity", "SCATTER_PLOT", 6, 6, 6, 4, {
|
|
486
|
+
layout: "single",
|
|
487
|
+
bindings: [binding(PipelineScatterVisualization)]
|
|
488
|
+
}),
|
|
489
|
+
widget(dashboardId, "widget_heatmap", "Engagement Heatmap", "HEATMAP", 0, 10, 8, 4, {
|
|
490
|
+
layout: "single",
|
|
491
|
+
bindings: [binding(EngagementHeatmapVisualization)]
|
|
492
|
+
}),
|
|
493
|
+
widget(dashboardId, "widget_funnel", "Conversion Funnel", "FUNNEL", 8, 10, 4, 4, {
|
|
494
|
+
layout: "single",
|
|
495
|
+
bindings: [binding(ConversionFunnelVisualization)]
|
|
496
|
+
}),
|
|
497
|
+
widget(dashboardId, "widget_geo", "Account Coverage", "MAP", 0, 14, 12, 5, {
|
|
498
|
+
layout: "single",
|
|
499
|
+
bindings: [binding(AccountCoverageGeoVisualization, 360)]
|
|
500
|
+
}),
|
|
501
|
+
widget(dashboardId, "widget_comparison", "Commercial Comparison", "EMBED", 0, 19, 12, 6, {
|
|
502
|
+
layout: "comparison",
|
|
503
|
+
description: "Compare regional distribution, channel balance, and funnel shape.",
|
|
504
|
+
bindings: [
|
|
505
|
+
binding(RegionalRevenueVisualization, 240),
|
|
506
|
+
binding(ChannelMixVisualization, 240),
|
|
507
|
+
binding(ConversionFunnelVisualization, 240)
|
|
508
|
+
]
|
|
509
|
+
}),
|
|
510
|
+
widget(dashboardId, "widget_timeline", "Growth Timeline", "EMBED", 0, 25, 12, 6, {
|
|
511
|
+
layout: "timeline",
|
|
512
|
+
description: "Track revenue and retention over the same reporting cadence.",
|
|
513
|
+
bindings: [
|
|
514
|
+
binding(RevenueTrendVisualization, 220),
|
|
515
|
+
binding(RetentionAreaVisualization, 220)
|
|
516
|
+
]
|
|
517
|
+
})
|
|
518
|
+
];
|
|
519
|
+
}
|
|
520
|
+
function resolveAnalyticsWidget(widget) {
|
|
521
|
+
const config = parseWidgetConfig(widget);
|
|
522
|
+
const bindings = config.bindings.map((binding) => {
|
|
523
|
+
const spec = AnalyticsVisualizationSpecMap.get(visualizationRefKey(binding.ref));
|
|
524
|
+
if (!spec)
|
|
525
|
+
return null;
|
|
526
|
+
return {
|
|
527
|
+
key: `${widget.id}:${visualizationRefKey(binding.ref)}`,
|
|
528
|
+
spec,
|
|
529
|
+
data: binding.data,
|
|
530
|
+
title: binding.title ?? spec.meta.title,
|
|
531
|
+
description: binding.description ?? spec.meta.description,
|
|
532
|
+
height: binding.height
|
|
533
|
+
};
|
|
534
|
+
}).filter((binding) => Boolean(binding));
|
|
535
|
+
if (!bindings.length)
|
|
536
|
+
return null;
|
|
537
|
+
return {
|
|
538
|
+
id: widget.id,
|
|
539
|
+
name: widget.name,
|
|
540
|
+
description: config.description,
|
|
541
|
+
layout: config.layout,
|
|
542
|
+
gridX: widget.gridX,
|
|
543
|
+
gridY: widget.gridY,
|
|
544
|
+
gridWidth: widget.gridWidth,
|
|
545
|
+
gridHeight: widget.gridHeight,
|
|
546
|
+
bindings
|
|
547
|
+
};
|
|
548
|
+
}
|
|
549
|
+
function parseWidgetConfig(widget) {
|
|
550
|
+
if (isAnalyticsWidgetConfig(widget.config)) {
|
|
551
|
+
return widget.config;
|
|
552
|
+
}
|
|
553
|
+
const legacyRef = LEGACY_VISUALIZATION_REFS[widget.type];
|
|
554
|
+
return legacyRef ? {
|
|
555
|
+
layout: "single",
|
|
556
|
+
bindings: [
|
|
557
|
+
{
|
|
558
|
+
ref: legacyRef,
|
|
559
|
+
data: AnalyticsVisualizationSampleData[visualizationRefKey(legacyRef)]
|
|
560
|
+
}
|
|
561
|
+
]
|
|
562
|
+
} : { layout: "single", bindings: [] };
|
|
563
|
+
}
|
|
564
|
+
function binding(spec, height = 280) {
|
|
565
|
+
return {
|
|
566
|
+
ref: refOf(spec),
|
|
567
|
+
data: AnalyticsVisualizationSampleData[visualizationRefKey(spec.meta)],
|
|
568
|
+
height
|
|
569
|
+
};
|
|
570
|
+
}
|
|
571
|
+
function widget(dashboardId, id, name, type, gridX, gridY, gridWidth, gridHeight, config) {
|
|
572
|
+
const now = new Date;
|
|
573
|
+
return {
|
|
574
|
+
id,
|
|
575
|
+
dashboardId,
|
|
576
|
+
name,
|
|
577
|
+
type,
|
|
578
|
+
gridX,
|
|
579
|
+
gridY,
|
|
580
|
+
gridWidth,
|
|
581
|
+
gridHeight,
|
|
582
|
+
config,
|
|
583
|
+
createdAt: now,
|
|
584
|
+
updatedAt: now
|
|
585
|
+
};
|
|
586
|
+
}
|
|
587
|
+
function isAnalyticsWidgetConfig(value) {
|
|
588
|
+
if (!value || typeof value !== "object")
|
|
589
|
+
return false;
|
|
590
|
+
const candidate = value;
|
|
591
|
+
return (candidate.layout === "single" || candidate.layout === "comparison" || candidate.layout === "timeline") && Array.isArray(candidate.bindings);
|
|
592
|
+
}
|
|
2
593
|
// src/ui/renderers/analytics.markdown.ts
|
|
3
594
|
var mockDashboards = [
|
|
4
595
|
{
|
|
@@ -6,83 +597,18 @@ var mockDashboards = [
|
|
|
6
597
|
name: "Sales Overview",
|
|
7
598
|
slug: "sales-overview",
|
|
8
599
|
status: "PUBLISHED",
|
|
9
|
-
widgetCount:
|
|
600
|
+
widgetCount: 11,
|
|
10
601
|
viewCount: 1250,
|
|
11
|
-
lastViewedAt: "
|
|
602
|
+
lastViewedAt: "2026-03-18T12:00:00Z"
|
|
12
603
|
},
|
|
13
604
|
{
|
|
14
605
|
id: "dash-2",
|
|
15
606
|
name: "User Engagement",
|
|
16
607
|
slug: "user-engagement",
|
|
17
608
|
status: "PUBLISHED",
|
|
18
|
-
widgetCount:
|
|
609
|
+
widgetCount: 8,
|
|
19
610
|
viewCount: 890,
|
|
20
|
-
lastViewedAt: "
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
id: "dash-3",
|
|
24
|
-
name: "Product Analytics",
|
|
25
|
-
slug: "product-analytics",
|
|
26
|
-
status: "PUBLISHED",
|
|
27
|
-
widgetCount: 10,
|
|
28
|
-
viewCount: 560,
|
|
29
|
-
lastViewedAt: "2024-01-15T14:00:00Z"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
id: "dash-4",
|
|
33
|
-
name: "Finance Report",
|
|
34
|
-
slug: "finance-report",
|
|
35
|
-
status: "DRAFT",
|
|
36
|
-
widgetCount: 4,
|
|
37
|
-
viewCount: 0,
|
|
38
|
-
lastViewedAt: null
|
|
39
|
-
}
|
|
40
|
-
];
|
|
41
|
-
var mockWidgets = [
|
|
42
|
-
{
|
|
43
|
-
id: "w-1",
|
|
44
|
-
dashboardId: "dash-1",
|
|
45
|
-
name: "Total Revenue",
|
|
46
|
-
type: "METRIC",
|
|
47
|
-
value: 125000,
|
|
48
|
-
change: 12.5
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
id: "w-2",
|
|
52
|
-
dashboardId: "dash-1",
|
|
53
|
-
name: "Active Users",
|
|
54
|
-
type: "METRIC",
|
|
55
|
-
value: 4500,
|
|
56
|
-
change: 8.2
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
id: "w-3",
|
|
60
|
-
dashboardId: "dash-1",
|
|
61
|
-
name: "Revenue Trend",
|
|
62
|
-
type: "LINE_CHART",
|
|
63
|
-
dataPoints: 30
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
id: "w-4",
|
|
67
|
-
dashboardId: "dash-1",
|
|
68
|
-
name: "Top Products",
|
|
69
|
-
type: "BAR_CHART",
|
|
70
|
-
dataPoints: 10
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
id: "w-5",
|
|
74
|
-
dashboardId: "dash-2",
|
|
75
|
-
name: "Daily Active Users",
|
|
76
|
-
type: "LINE_CHART",
|
|
77
|
-
dataPoints: 30
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
id: "w-6",
|
|
81
|
-
dashboardId: "dash-2",
|
|
82
|
-
name: "Session Duration",
|
|
83
|
-
type: "METRIC",
|
|
84
|
-
value: 245,
|
|
85
|
-
change: -3.1
|
|
611
|
+
lastViewedAt: "2026-03-18T10:00:00Z"
|
|
86
612
|
}
|
|
87
613
|
];
|
|
88
614
|
var mockQueries = [
|
|
@@ -115,19 +641,8 @@ var mockQueries = [
|
|
|
115
641
|
executionCount: 450
|
|
116
642
|
}
|
|
117
643
|
];
|
|
118
|
-
function
|
|
119
|
-
|
|
120
|
-
return `${(value / 1e6).toFixed(1)}M`;
|
|
121
|
-
}
|
|
122
|
-
if (value >= 1000) {
|
|
123
|
-
return `${(value / 1000).toFixed(1)}K`;
|
|
124
|
-
}
|
|
125
|
-
return value.toString();
|
|
126
|
-
}
|
|
127
|
-
function formatChange(change) {
|
|
128
|
-
const icon = change >= 0 ? "\uD83D\uDCC8" : "\uD83D\uDCC9";
|
|
129
|
-
const sign = change >= 0 ? "+" : "";
|
|
130
|
-
return `${icon} ${sign}${change.toFixed(1)}%`;
|
|
644
|
+
function dashboardWidgets(dashboardId) {
|
|
645
|
+
return createExampleWidgets(dashboardId).map((widget2) => resolveAnalyticsWidget(widget2)).filter((widget2) => Boolean(widget2));
|
|
131
646
|
}
|
|
132
647
|
var analyticsDashboardMarkdownRenderer = {
|
|
133
648
|
target: "markdown",
|
|
@@ -135,10 +650,7 @@ var analyticsDashboardMarkdownRenderer = {
|
|
|
135
650
|
if (desc.source.type !== "component" || desc.source.componentKey !== "AnalyticsDashboard") {
|
|
136
651
|
throw new Error("analyticsDashboardMarkdownRenderer: not AnalyticsDashboard");
|
|
137
652
|
}
|
|
138
|
-
const
|
|
139
|
-
const widgets = mockWidgets;
|
|
140
|
-
const queries = mockQueries;
|
|
141
|
-
const dashboard = dashboards[0];
|
|
653
|
+
const dashboard = mockDashboards[0];
|
|
142
654
|
if (!dashboard) {
|
|
143
655
|
return {
|
|
144
656
|
mimeType: "text/markdown",
|
|
@@ -147,41 +659,37 @@ var analyticsDashboardMarkdownRenderer = {
|
|
|
147
659
|
No dashboards available.`
|
|
148
660
|
};
|
|
149
661
|
}
|
|
150
|
-
const
|
|
151
|
-
const
|
|
152
|
-
const totalViews = dashboards.reduce((sum, d) => sum + d.viewCount, 0);
|
|
153
|
-
const sharedQueries = queries.filter((q) => q.isShared);
|
|
662
|
+
const widgets = dashboardWidgets(dashboard.id);
|
|
663
|
+
const metricWidgets = widgets.filter((widget2) => widget2.bindings[0]?.spec.visualization.kind === "metric");
|
|
154
664
|
const lines = [
|
|
155
665
|
`# ${dashboard.name}`,
|
|
156
666
|
"",
|
|
157
|
-
">
|
|
667
|
+
"> Contract-backed analytics dashboard overview.",
|
|
158
668
|
"",
|
|
159
669
|
"## Key Metrics",
|
|
160
670
|
""
|
|
161
671
|
];
|
|
162
|
-
const
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
lines.push(
|
|
167
|
-
lines.push("");
|
|
672
|
+
for (const widget2 of metricWidgets) {
|
|
673
|
+
const binding2 = widget2.bindings[0];
|
|
674
|
+
if (!binding2)
|
|
675
|
+
continue;
|
|
676
|
+
lines.push(`- **${widget2.name}** via \`${binding2.spec.meta.key}\``);
|
|
168
677
|
}
|
|
169
|
-
lines.push("## Visualizations");
|
|
170
678
|
lines.push("");
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
679
|
+
lines.push("## Visual Blocks");
|
|
680
|
+
lines.push("");
|
|
681
|
+
for (const widget2 of widgets) {
|
|
682
|
+
const kinds = widget2.bindings.map((binding2) => binding2.spec.visualization.kind).join(", ");
|
|
683
|
+
lines.push(`- **${widget2.name}** (${widget2.layout}) \u2192 ${kinds}`);
|
|
175
684
|
}
|
|
176
685
|
lines.push("");
|
|
177
686
|
lines.push("## Dashboard Stats");
|
|
178
687
|
lines.push("");
|
|
179
688
|
lines.push("| Metric | Value |");
|
|
180
689
|
lines.push("|--------|-------|");
|
|
181
|
-
lines.push(`| Total Dashboards | ${
|
|
182
|
-
lines.push(`| Published | ${
|
|
183
|
-
lines.push(`|
|
|
184
|
-
lines.push(`| Shared Queries | ${sharedQueries.length} |`);
|
|
690
|
+
lines.push(`| Total Dashboards | ${mockDashboards.length} |`);
|
|
691
|
+
lines.push(`| Published | ${mockDashboards.filter((item) => item.status === "PUBLISHED").length} |`);
|
|
692
|
+
lines.push(`| Shared Queries | ${mockQueries.filter((query) => query.isShared).length} |`);
|
|
185
693
|
return {
|
|
186
694
|
mimeType: "text/markdown",
|
|
187
695
|
body: lines.join(`
|
|
@@ -195,7 +703,6 @@ var dashboardListMarkdownRenderer = {
|
|
|
195
703
|
if (desc.source.type !== "component" || desc.source.componentKey !== "DashboardList") {
|
|
196
704
|
throw new Error("dashboardListMarkdownRenderer: not DashboardList");
|
|
197
705
|
}
|
|
198
|
-
const dashboards = mockDashboards;
|
|
199
706
|
const lines = [
|
|
200
707
|
"# Dashboards",
|
|
201
708
|
"",
|
|
@@ -204,17 +711,11 @@ var dashboardListMarkdownRenderer = {
|
|
|
204
711
|
"| Dashboard | Widgets | Views | Status | Last Viewed |",
|
|
205
712
|
"|-----------|---------|-------|--------|-------------|"
|
|
206
713
|
];
|
|
207
|
-
for (const dashboard of
|
|
714
|
+
for (const dashboard of mockDashboards) {
|
|
208
715
|
const lastViewed = dashboard.lastViewedAt ? new Date(dashboard.lastViewedAt).toLocaleDateString() : "Never";
|
|
209
716
|
const statusIcon = dashboard.status === "PUBLISHED" ? "\uD83D\uDFE2" : "\u26AB";
|
|
210
717
|
lines.push(`| [${dashboard.name}](/dashboards/${dashboard.slug}) | ${dashboard.widgetCount} | ${dashboard.viewCount.toLocaleString()} | ${statusIcon} ${dashboard.status} | ${lastViewed} |`);
|
|
211
718
|
}
|
|
212
|
-
lines.push("");
|
|
213
|
-
lines.push("## Quick Actions");
|
|
214
|
-
lines.push("");
|
|
215
|
-
lines.push("- **Create Dashboard** - Start with a blank canvas");
|
|
216
|
-
lines.push("- **Import Template** - Use a pre-built template");
|
|
217
|
-
lines.push("- **Clone Dashboard** - Duplicate an existing dashboard");
|
|
218
719
|
return {
|
|
219
720
|
mimeType: "text/markdown",
|
|
220
721
|
body: lines.join(`
|
|
@@ -228,40 +729,21 @@ var queryBuilderMarkdownRenderer = {
|
|
|
228
729
|
if (desc.source.type !== "component" || desc.source.componentKey !== "QueryBuilder") {
|
|
229
730
|
throw new Error("queryBuilderMarkdownRenderer: not QueryBuilder");
|
|
230
731
|
}
|
|
231
|
-
const queries = mockQueries;
|
|
232
732
|
const lines = [
|
|
233
733
|
"# Query Builder",
|
|
234
734
|
"",
|
|
235
|
-
"> Create and manage data queries",
|
|
236
|
-
"",
|
|
237
|
-
"## Saved Queries",
|
|
735
|
+
"> Create and manage reusable data queries.",
|
|
238
736
|
"",
|
|
239
737
|
"| Query | Type | Shared | Executions |",
|
|
240
738
|
"|-------|------|--------|------------|"
|
|
241
739
|
];
|
|
242
|
-
for (const query of
|
|
243
|
-
|
|
244
|
-
lines.push(`| ${query.name} | ${query.type} | ${sharedIcon} | ${query.executionCount.toLocaleString()} |`);
|
|
740
|
+
for (const query of mockQueries) {
|
|
741
|
+
lines.push(`| ${query.name} | ${query.type} | ${query.isShared ? "\uD83C\uDF10" : "\uD83D\uDD12"} | ${query.executionCount.toLocaleString()} |`);
|
|
245
742
|
}
|
|
246
743
|
lines.push("");
|
|
247
|
-
lines.push("##
|
|
248
|
-
lines.push("");
|
|
249
|
-
lines.push("### METRIC");
|
|
250
|
-
lines.push("Query usage metrics from the metering system.");
|
|
251
|
-
lines.push("");
|
|
252
|
-
lines.push("### AGGREGATION");
|
|
253
|
-
lines.push("Build aggregations with measures and dimensions without writing SQL.");
|
|
254
|
-
lines.push("");
|
|
255
|
-
lines.push("### SQL");
|
|
256
|
-
lines.push("Write custom SQL queries for advanced analysis.");
|
|
257
|
-
lines.push("");
|
|
258
|
-
lines.push("## Features");
|
|
744
|
+
lines.push("## Visualization Contracts");
|
|
259
745
|
lines.push("");
|
|
260
|
-
lines.push("-
|
|
261
|
-
lines.push("- Auto-complete for fields and functions");
|
|
262
|
-
lines.push("- Query validation and optimization");
|
|
263
|
-
lines.push("- Result caching");
|
|
264
|
-
lines.push("- Query sharing and collaboration");
|
|
746
|
+
lines.push("Widgets reference `VisualizationSpec` contracts instead of rendering ad-hoc widget types.");
|
|
265
747
|
return {
|
|
266
748
|
mimeType: "text/markdown",
|
|
267
749
|
body: lines.join(`
|