-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathSvgGenTestInputs.kt
70 lines (64 loc) · 1.96 KB
/
SvgGenTestInputs.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* Copyright (c) 2023. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package demoAndTestShared
fun rawSpecSinglePlot(): MutableMap<String, Any> {
val spec = """
|{
| 'kind': 'plot',
| 'data': {'time': ['Lunch','Lunch', 'Dinner', 'Dinner', 'Dinner']},
| 'mapping': {
| 'x': 'time',
| 'y': '..count..'
| },
| 'layers': [
| {
| 'geom': 'bar'
| }
| ]
|}
""".trimMargin()
return parsePlotSpec(spec)
}
fun rawSpecGGBunch(): MutableMap<String, Any> {
val spec = """
|{
| 'kind': 'ggbunch',
| 'items': [
| {
| 'x': 0,
| 'y': 0,
| 'width': 150,
| 'height': 150,
| 'feature_spec': ${rawSpecStrGGBunchItemPlot()}
| },
| {
| 'x': 150,
| 'y': 0,
| 'width': 150,
| 'height': 150,
| 'feature_spec': ${rawSpecStrGGBunchItemPlot()}
| }
| ]
|}
""".trimMargin()
return parsePlotSpec(spec)
}
fun rawSpecStrGGBunchItemPlot(): String {
return """
|{
| 'kind': 'plot',
| 'data': {'a': [1, 2], 'b': [0, 3]},
| 'mapping': {
| 'x': 'a',
| 'y': 'b'
| },
| 'layers': [
| {
| 'geom': 'point'
| }
| ]
|}
""".trimMargin()
}