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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
package web
templ Layout(title string, content templ.Component) {
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{ title } · biking_home</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"/>
<link rel="stylesheet" href="/static/style.css"/>
</head>
<body>
<header class="site-header">
<a class="brand" href="/">biking_home</a>
<nav class="nav"><a href="/">Rides</a><a href="/sync">Sync Strava</a></nav>
</header>
<main class="container">
@content
</main>
</body>
</html>
}
templ RidesPage(items []RideView, headers []RideSortHeader) {
@Layout("Rides", RidesContent(items, headers))
}
templ RidesContent(items []RideView, headers []RideSortHeader) {
<p class="eyebrow">Ride library</p>
<div class="toolbar">
<div><h1>All rides</h1><p class="lead">Your imported rides, ready for climb analysis.</p></div>
<a class="button" href="/sync">Sync Strava</a>
</div>
<section class="panel">
if len(items) == 0 {
<div class="empty">No rides stored yet. <a href="/sync">Import your first Strava rides.</a></div>
} else {
<table>
<thead><tr>
for _, header := range headers {
<th class={ header.Class } scope="col" aria-sort={ header.AriaSort }><a class="sort-link" href={ templ.URL(header.URL) }>{ header.Label }<span class="sort-indicator" aria-hidden="true">{ header.Indicator }</span></a></th>
}
</tr></thead>
<tbody>
for _, item := range items {
<tr><td><strong><a href={ templ.URL(rideDetailURL(item.ID)) }>{ item.Name }</a></strong><br/><small>{ item.Type }</small></td><td>{ formatRideDate(item.StartDate) }</td><td class="numeric">{ formatDistance(item.DistanceM) }</td><td class="numeric">{ formatDuration(item.MovingTimeS) }</td><td class="numeric">{ formatElevation(item.TotalElevationGainM) }</td><td class="numeric">{ item.Cotacol }</td><td class="numeric">{ item.CotacolPer100Km }</td></tr>
}
</tbody>
</table>
}
</section>
}
templ RideDetailPage(data RideDetailView) {
@Layout("Ride detail", RideDetailContent(data))
}
templ RideDetailContent(data RideDetailView) {
<div class="toolbar">
<div><h1 class="ride-detail-title">{ data.Ride.Name }</h1><p class="lead">{ data.Ride.Type } · { formatRideDate(data.Ride.StartDate) }</p></div>
<a class="button secondary" href="/">Back to rides</a>
</div>
if data.RouteError != "" {
<div class="error">{ data.RouteError }</div>
}
if data.Notice != "" {
<div class="notice">{ data.Notice }</div>
}
if data.ActionError != "" {
<div class="error">{ data.ActionError }</div>
}
<div class="ride-detail-grid">
<section class="panel summary-panel">
<dl>
<div><dt>Distance</dt><dd>{ formatDistance(data.Ride.DistanceM) }</dd></div>
<div><dt>Moving time</dt><dd>{ formatDuration(data.Ride.MovingTimeS) }</dd></div>
<div><dt>Elevation</dt><dd>{ formatElevation(data.Ride.TotalElevationGainM) }</dd></div>
</dl>
</section>
if data.HasRoute {
if len(data.Profile.OfficialClimbs()) > 0 {
<section class="panel official-climbs-panel">
<div class="section-heading">
<p class="eyebrow">Official climbs</p>
</div>
<div class="official-climb-list">
for _, climb := range data.Profile.OfficialClimbs() {
<details class="official-climb-card" data-official-climb-card>
<summary>
<span class="official-climb-card-title"><span class="climb-number">Climb { formatClimbNumber(climb.Index) }</span><strong>{ climb.OfficialName }</strong></span>
<dl class="official-climb-summary-stats">
<div><dt>Length</dt><dd>{ formatProfileDistance(climb.DistanceKm) }</dd></div>
<div><dt>Cotacol</dt><dd>{ formatCotacol(climb.Cotacol) }</dd></div>
<div><dt>Avg slope</dt><dd>{ formatSlope(climb.SlopePercent) }</dd></div>
</dl>
<span class="official-climb-chevron" aria-hidden="true">⌄</span>
</summary>
<div class="official-climb-card-body">
<canvas class="official-climb-profile" data-official-profile data-profile-start={ formatRouteIndex(climb.StartIndex) } data-profile-end={ formatRouteIndex(climb.EndIndex) } tabindex="0" role="img" aria-label={ officialProfileLabel(climb.OfficialName) }></canvas>
<div class="official-climb-profile-legend" role="list" aria-label="Average slope color scale">
<span role="listitem"><i class="profile-band-swatch profile-band-downhill" aria-hidden="true"></i><=0%</span>
<span role="listitem"><i class="profile-band-swatch profile-band-0-3" aria-hidden="true"></i>0–3%</span>
<span role="listitem"><i class="profile-band-swatch profile-band-3-6" aria-hidden="true"></i>3–6%</span>
<span role="listitem"><i class="profile-band-swatch profile-band-6-9" aria-hidden="true"></i>6–9%</span>
<span role="listitem"><i class="profile-band-swatch profile-band-9-plus" aria-hidden="true"></i>9%+</span>
</div>
</div>
</details>
}
</div>
</section>
}
<div class={ rideDetailColumnsClass(len(data.Profile.UnmatchedClimbs())) }>
if len(data.Profile.UnmatchedClimbs()) > 0 {
<section class="panel climbs-panel">
<div class="section-heading">
<div><p class="eyebrow">Next steps</p><h2>Climbs to match</h2></div>
<span class="section-count">{ formatClimbCount(len(data.Profile.UnmatchedClimbs())) }</span>
</div>
<nav class="climb-navigation" aria-label="Climb navigation">
<button class="button secondary" type="button" data-climb-previous aria-label="Previous climb">←</button>
<output data-climb-position>Climb 1 of { formatClimbCount(len(data.Profile.UnmatchedClimbs())) }</output>
<button class="button secondary" type="button" data-climb-next aria-label="Next climb">→</button>
</nav>
<div class="climb-list" data-climb-list>
for _, climb := range data.Profile.UnmatchedClimbs() {
<article class="climb-item" data-climb-item data-climb-index={ formatRouteIndex(climb.Index) }>
<div class="climb-item-heading">
<strong><span class="climb-number">Climb { formatClimbNumber(climb.Index) }</span>{ climb.Name }</strong>
<span class="climb-range" data-climb-summary>{ formatProfileDistance(climb.StartKm) }–{ formatProfileDistance(climb.EndKm) }</span>
</div>
<p class="climb-metrics" data-climb-metrics>{ climb.Category } · { formatProfileDistance(climb.DistanceKm) } at { formatSlope(climb.SlopePercent) } · Cotacol { formatCotacol(climb.Cotacol) }</p>
<p class="climb-status">Waiting for an official climb match.</p>
<form class="official-climb-form" data-official-climb-form method="post" action={ templ.URL(officialClimbCreateURL(data.Ride.ID)) }>
<label>Name<input type="text" name="name" required placeholder="Official climb name"/></label>
<input type="hidden" name="start_index" value={ formatRouteIndex(climb.StartIndex) } data-boundary-input="start"/>
<input type="hidden" name="end_index" value={ formatRouteIndex(climb.EndIndex) } data-boundary-input="end"/>
<div class="boundary-controls">
<div><strong>Start</strong><button class="button secondary" type="button" data-boundary-button="start" data-boundary-source="profile" aria-label="Select on profile for start">Profile</button><button class="button secondary" type="button" data-boundary-button="start" data-boundary-source="map" aria-label="Select on map for start">Map</button><output data-boundary-output="start">{ formatProfileDistance(climb.StartKm) }</output></div>
<div><strong>End</strong><button class="button secondary" type="button" data-boundary-button="end" data-boundary-source="profile" aria-label="Select on profile for end">Profile</button><button class="button secondary" type="button" data-boundary-button="end" data-boundary-source="map" aria-label="Select on map for end">Map</button><output data-boundary-output="end">{ formatProfileDistance(climb.EndKm) }</output></div>
</div>
<output class="boundary-preview" data-boundary-preview>Preview the corrected climb boundaries.</output>
<button class="button" type="submit">Save official climb</button>
</form>
</article>
}
</div>
</section>
}
<div class="ride-detail-main">
<section class="panel profile-panel">
<div class="profile-heading">
<h2>Elevation profile</h2>
<p>Hover or focus the profile to inspect the ride at that distance.</p>
</div>
<div class="profile-chart">
<canvas id="ride-profile-chart" tabindex="0" role="img" aria-describedby="ride-profile-hover" aria-label="Interactive ride elevation profile"></canvas>
</div>
<output id="ride-profile-hover" class="profile-hover" aria-live="polite">Hover or focus the profile to inspect elevation.</output>
</section>
<section class="panel map-panel">
<div id="ride-map" class="ride-map" role="img" aria-label="Recorded ride route map"></div>
</section>
</div>
</div>
}
</div>
if data.HasRoute {
@templ.JSONScript("ride-route", data.Route)
@templ.JSONScript("ride-profile", data.Profile)
@templ.JSONScript("ride-passes", data.Passes)
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script type="module" src="/static/ride-detail.js"></script>
}
}
templ SyncPage(data SyncPageData) {
@Layout("Sync Strava", SyncContent(data))
}
templ SyncContent(data SyncPageData) {
<p class="eyebrow">Data import</p>
<h1>Sync Strava rides</h1>
<p class="lead">Choose a date range. New rides are downloaded as GPX files and recorded in the local library.</p>
if data.Notice != "" {
<div id="sync-notice" class="notice">{ data.Notice }</div>
} else {
<div id="sync-notice" class="notice" hidden></div>
}
if data.Error != "" {
<div id="sync-error" class="error">{ data.Error }</div>
} else {
<div id="sync-error" class="error" hidden></div>
}
<section class="panel">
if !data.HasAuth {
<p>Strava authorization is required before the first sync.</p>
<a class="button secondary" href={ templ.URL("/strava/login?return_to=/sync") }>Authorize Strava</a>
} else {
<form id="sync-form" method="post" action="/sync">
<div class="form-row">
<label>From<input type="date" name="from" value={ data.From } required/></label>
<label>To<input type="date" name="to" value={ data.To } required/></label>
<button class="button" type="submit">Sync rides</button>
</div>
</form>
<div id="sync-progress" class="sync-progress" role="status" aria-live="polite" hidden>
<div class="progress-heading"><strong>Importing rides</strong><span id="sync-progress-count">0 / 0</span></div>
<progress id="sync-progress-bar" max="1" value="0" aria-label="Strava import progress"></progress>
<span id="sync-progress-details">0 imported · 0 skipped</span>
</div>
}
</section>
<script type="module" src="/static/sync.js"></script>
}
|