-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeep_dive.html
More file actions
124 lines (119 loc) · 5.1 KB
/
deep_dive.html
File metadata and controls
124 lines (119 loc) · 5.1 KB
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
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metadata Deep Dive</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="exports.css">
</head>
<body>
<div id="nav-root"></div>
<header class="page-header" id="metadata-deep-dive-header">
<div class="header-row" id="metadata-deep-dive-header-row">
<div class="header-copy" id="metadata-deep-dive-header-copy">
<h1 class="page-title" id="metadata-deep-dive-title">Metadata Deep Dive</h1>
<p class="section-hint" id="metadata-deep-dive-hint">Explore retention counts with expected format details for every field.</p>
</div>
<div class="header-actions" id="metadata-deep-dive-actions" aria-label="Metadata actions">
<button type="button" class="tertiary-btn" id="deep-dive-start">Start scan</button>
<button
type="button"
class="primary-btn"
id="deep-dive-export-button"
disabled
aria-disabled="true"
>
Export
</button>
</div>
</div>
</header>
<main class="content" id="metadata-deep-dive-main" aria-labelledby="metadata-deep-dive-title">
<section class="card" id="visitor-deep-dive-card" aria-label="Visitor metadata deep dive table">
<div class="card-header" id="visitor-deep-dive-card-header">
<div class="form-intro" id="visitor-deep-dive-form-intro">
<h2 class="section-title" id="visitor-deep-dive-section-title">Visitor</h2>
<p class="section-hint" id="visitor-deep-dive-section-hint"></p>
</div>
<div class="lookback-controls" id="deep-dive-lookback-controls" role="group" aria-label="Select metadata window">
<span class="lookback-label">Window:</span>
<div class="lookback-buttons">
<button
type="button"
class="lookback-button tertiary-btn"
id="deep-dive-lookback-7"
data-lookback-button
data-lookback="7"
>
7 days
</button>
<button
type="button"
class="lookback-button tertiary-btn"
id="deep-dive-lookback-30"
data-lookback-button
data-lookback="30"
>
30 days
</button>
<button
type="button"
class="lookback-button tertiary-btn"
id="deep-dive-lookback-180"
data-lookback-button
data-lookback="180"
>
180 days
</button>
</div>
</div>
</div>
<div class="table-wrapper" id="visitor-deep-dive-table-wrapper" role="region" aria-label="Visitor metadata deep dive table wrapper" tabindex="0">
<table class="data-table" id="visitor-deep-dive-table">
<thead>
<tr>
<th scope="col">Sub ID</th>
<th scope="col">App Name</th>
<th scope="col">App ID</th>
<th scope="col" class="metadata-field-header">Metadata field (7 days)</th>
<th scope="col">Expected format</th>
</tr>
</thead>
<tbody id="visitor-deep-dive-table-body"></tbody>
</table>
</div>
<div class="metadata-tree-container" id="visitor-metadata-tree-container" aria-label="Visitor metadata value overview" role="region" tabindex="0">
<div class="form-intro" id="visitor-metadata-tree-intro">
<h3 class="section-title" id="visitor-metadata-tree-title">Visitor metadata values</h3>
<p class="section-hint" id="visitor-metadata-tree-hint">See how often each value appeared for every visitor across Sub IDs and apps.</p>
</div>
<div id="visitor-metadata-tree" class="metadata-tree" aria-live="polite"></div>
</div>
</section>
<section class="card" id="account-deep-dive-card" aria-label="Account metadata deep dive table">
<div class="card-header" id="account-deep-dive-card-header">
<div class="form-intro" id="account-deep-dive-form-intro">
<h2 class="section-title" id="account-deep-dive-section-title">Account</h2>
<p class="section-hint" id="account-deep-dive-section-hint">Retention counts for account metadata using the same tracking windows.</p>
</div>
</div>
<div class="table-wrapper" id="account-deep-dive-table-wrapper" role="region" aria-label="Account metadata deep dive table wrapper" tabindex="0">
<table class="data-table" id="account-deep-dive-table">
<thead>
<tr>
<th scope="col">Sub ID</th>
<th scope="col">App Name</th>
<th scope="col">App ID</th>
<th scope="col" class="metadata-field-header">Metadata field (7 days)</th>
<th scope="col">Expected format</th>
</tr>
</thead>
<tbody id="account-deep-dive-table-body"></tbody>
</table>
</div>
</section>
</main>
<script type="module" src="src/entries/deep_dive.js"></script>
</body>
</html>