-
Notifications
You must be signed in to change notification settings - Fork 5
/
filter-dimension.html
113 lines (111 loc) · 3.09 KB
/
filter-dimension.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml"
lang="ja"
xml:lang="ja"
dir="ltr"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml"
>
<head>
<title>filter-dimension</title>
</head>
<body>
<h2>filter-dimension</h2>
<script>
/*
input = [
{
"name": "firebase.ama_app_id",
"title": "Firebase Ama App Id",
"type": "string",
"shortTitle": "Ama App Id",
"suggestFilterValues": true,
"isVisible": true,
"public": true,
"primaryKey": false
},
{
"name": "firebase.composite_key",
"title": "Firebase Composite Key",
"type": "string",
"shortTitle": "Composite Key",
"suggestFilterValues": true,
"isVisible": false,
"public": false,
"primaryKey": true
},
{
"name": "user_on_boarding_survey.age",
"title": "User on Boarding Survey Age",
"type": "string",
"shortTitle": "Age",
"suggestFilterValues": true,
"isVisible": false,
"public": false,
"primaryKey": false
}
]
output = [
{
label: 'Firebase',
title: 'Firebase',
options: [
{
"name": "firebase.ama_app_id",
"title": "Firebase Ama App Id",
"type": "string",
"shortTitle": "Ama App Id",
"suggestFilterValues": true,
"isVisible": true,
"public": true,
"primaryKey": false
},
{
"name": "firebase.composite_key",
"title": "Firebase Composite Key",
"type": "string",
"shortTitle": "Composite Key",
"suggestFilterValues": true,
"isVisible": false,
"public": false,
"primaryKey": true
},
]
},
{
label: 'User on Boarding Survey Age',
title: 'User on Boarding Survey Age',
options: [
{
"name": "user_on_boarding_survey.age",
"title": "User on Boarding Survey Age",
"type": "string",
"shortTitle": "Age",
"suggestFilterValues": true,
"isVisible": false,
"public": false,
"primaryKey": false
}
]
}
]
*/
// how to convert input to output
function solution() {
const result = [];
const map = new Map();
for (const item of input) {
const [label, title] = item.name.split(".");
if (!map.has(label)) {
map.set(label, []);
}
map.get(label).push(item);
}
for (const [label, options] of map) {
result.push({ label, title: options[0].title, options });
}
}
</script>
</body>
</html>