tuneloop 0.1.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/LICENSE +21 -0
- package/README.md +256 -0
- package/dist/chunk-RB45XK57.js +6941 -0
- package/dist/chunk-RB45XK57.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +154 -0
- package/dist/cli.js.map +1 -0
- package/dist/client/app.js +4937 -0
- package/dist/client/app.js.map +1 -0
- package/dist/client/favicon.svg +7 -0
- package/dist/client/index.html +74 -0
- package/dist/client/styles.css +698 -0
- package/dist/index.d.ts +1623 -0
- package/dist/index.js +49 -0
- package/dist/index.js.map +1 -0
- package/package.json +68 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
|
2
|
+
<rect width="32" height="32" rx="7" fill="#0f7a55"/>
|
|
3
|
+
<g transform="translate(16 16) scale(0.84) translate(-16 -16)">
|
|
4
|
+
<path d="M 23.5 11 A 8.5 8.5 0 1 0 24.5 16" fill="none" stroke="#fffdf9" stroke-width="4" stroke-linecap="round"/>
|
|
5
|
+
<path d="M 24.5 8.5 L 24.5 12.5 L 20.5 12.5" fill="none" stroke="#fffdf9" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>tuneloop</title>
|
|
7
|
+
<link rel="icon" href="/client/favicon.svg" type="image/svg+xml" />
|
|
8
|
+
<link rel="stylesheet" href="/client/styles.css" />
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<header class="top"><div class="inner">
|
|
12
|
+
<svg class="logo" width="26" height="26" viewBox="0 0 32 32" aria-hidden="true">
|
|
13
|
+
<path d="M 23.5 11 A 8.5 8.5 0 1 0 24.5 16" fill="none" stroke="#0f7a55" stroke-width="3.2" stroke-linecap="round"/>
|
|
14
|
+
<path d="M 24.5 8.5 L 24.5 12.5 L 20.5 12.5" fill="none" stroke="#0f7a55" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
15
|
+
</svg>
|
|
16
|
+
<span class="brand">tuneloop</span>
|
|
17
|
+
<span class="masthead-tag">Count outcomes, not tokens</span>
|
|
18
|
+
<span class="meta" id="meta"></span>
|
|
19
|
+
</div></header>
|
|
20
|
+
<nav class="tabnav"><div class="inner">
|
|
21
|
+
<button class="tab on" data-view="highlights">Highlights</button>
|
|
22
|
+
<button class="tab" data-view="dashboard">Dashboard</button>
|
|
23
|
+
<button class="tab" data-view="artifacts">Artifacts</button>
|
|
24
|
+
<button class="tab" data-view="sessions">Sessions</button>
|
|
25
|
+
</div></nav>
|
|
26
|
+
<main>
|
|
27
|
+
<section id="view-highlights" class="view on"><div id="highlights"></div></section>
|
|
28
|
+
<section id="view-dashboard" class="view">
|
|
29
|
+
<div id="dash-notice"></div>
|
|
30
|
+
<div class="kpi-caption" id="kpi-caption"></div>
|
|
31
|
+
<section id="kpis" class="tiles"></section>
|
|
32
|
+
<div class="ask-slot" id="ask-dashboard"></div>
|
|
33
|
+
<section id="metric-detail"></section>
|
|
34
|
+
<div id="dash-ask"></div>
|
|
35
|
+
<!-- Breakdown explorer commented out for now:
|
|
36
|
+
<section class="panel">
|
|
37
|
+
<div class="panel-head"><h2>Breakdown explorer</h2>
|
|
38
|
+
<div class="ex-ctrl"><select id="ex-measure"></select><span class="by">by</span><select id="ex-by"></select></div>
|
|
39
|
+
</div>
|
|
40
|
+
<div id="explorer"></div>
|
|
41
|
+
</section>
|
|
42
|
+
-->
|
|
43
|
+
</section>
|
|
44
|
+
<section id="view-artifacts" class="view">
|
|
45
|
+
<div class="ask-slot" id="ask-artifacts"></div>
|
|
46
|
+
<div id="art-notice"></div>
|
|
47
|
+
<section class="panel">
|
|
48
|
+
<div class="seg" id="artKindSeg" style="margin-bottom:16px"></div>
|
|
49
|
+
<div id="artifacts"></div>
|
|
50
|
+
<div class="empty" style="margin-top:10px">Cost is block-attributed: each artifact is charged only for the parts of a session that went into it. Work on two PRs in one session, and each is charged just its own share — not the whole session.</div>
|
|
51
|
+
</section>
|
|
52
|
+
</section>
|
|
53
|
+
<section id="view-sessions" class="view">
|
|
54
|
+
<div class="ask-slot" id="ask-sessions"></div>
|
|
55
|
+
<div id="sessions-notice"></div>
|
|
56
|
+
<section class="panel">
|
|
57
|
+
<div class="panel-head"><h2>Sessions</h2></div>
|
|
58
|
+
<div id="filters" class="filters"></div>
|
|
59
|
+
<div id="sessions"></div>
|
|
60
|
+
</section>
|
|
61
|
+
</section>
|
|
62
|
+
</main>
|
|
63
|
+
<footer class="site-footer">
|
|
64
|
+
<span>Built by the team at <a href="https://tuneloop.io" target="_blank" rel="noopener">Tuneloop</a></span>
|
|
65
|
+
<span class="dot">·</span>
|
|
66
|
+
<a href="https://github.com/tuneloop/tuneloop" target="_blank" rel="noopener">★ Star on GitHub</a>
|
|
67
|
+
<span class="dot">·</span>
|
|
68
|
+
<a href="mailto:founders@tuneloop.io?subject=tuneloop%20feedback">Send feedback</a>
|
|
69
|
+
</footer>
|
|
70
|
+
<div class="overlay" id="overlay"></div>
|
|
71
|
+
<div class="drawer" id="drawer"><div class="drawer-inner"><div id="drawerBody"></div></div></div>
|
|
72
|
+
<script src="/client/app.js"></script>
|
|
73
|
+
</body>
|
|
74
|
+
</html>
|