-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
326 lines (260 loc) · 10.2 KB
/
script.js
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
'use strict';
////////////////////////////////////////////////////
// Classes
class Workout {
id = (Date.now() + '').slice(-10);
date = new Date();
/**
* @param coordinates [lat, lng]
* @param distance in km
* @param duration in min
*/
constructor(coordinates, distance, duration) {
this.coordinates = coordinates;
this.distance = distance;
this.duration = duration;
}
_setDescription() {
const formatter = Intl.DateTimeFormat('en', {year: 'numeric', month: 'long', day: '2-digit'});
const shortFormatter = Intl.DateTimeFormat('GB-en', {year: '2-digit', month: '2-digit', day: '2-digit'});
this.description = `${this.constructor.name} on ${formatter.format(this.date)}`;
this.shortDescription = `${this.constructor.name} on ${shortFormatter.format(this.date)}`;
}
}
class Running extends Workout {
type = 'running';
constructor(coordinates, distance, duration, cadence) {
super(coordinates, distance, duration);
this.cadence = cadence;
this.calcPace();
this._setDescription();
}
calcPace() {
// min/km
this.pace = this.duration / this.distance;
return this.pace;
}
}
class Cycling extends Workout {
type = 'cycling';
constructor(coordinates, distance, duration, elevationGain) {
super(coordinates, distance, duration);
this.elevationGain = elevationGain;
this.calcSpeed();
this._setDescription();
}
calcSpeed() {
// km/h
this.speed = this.distance / (this.duration / 60);
return this.speed;
}
}
////////////////////////////////////////////////////
// App Architecture
const form = document.querySelector('.form');
const sidebar = document.querySelector('.sidebar');
const containerWorkouts = document.querySelector('.workouts');
const inputAll = document.querySelectorAll('.form__input');
const inputType = document.querySelector('.form__input--type');
const inputDistance = document.querySelector('.form__input--distance');
const inputDuration = document.querySelector('.form__input--duration');
const inputCadence = document.querySelector('.form__input--cadence');
const inputElevation = document.querySelector('.form__input--elevation');
class App {
#workouts = [];
#map;
#mapZoomLevel = 15;
#mapEvent;
constructor() {
this._getPosition();
// Attach event handlers
form.addEventListener('submit', this._newWorkout.bind(this));
inputType.addEventListener('change', this._toggleElevationField.bind(this));
containerWorkouts.addEventListener('click', this._moveToPopup.bind(this));
sidebar.addEventListener('click', this._hideFormAfterClick.bind(this));
}
_getPosition() {
const geolocationError = function () {
alert(`Couldn't get your position :c`)
};
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(this._loadMap.bind(this), geolocationError, {
// высокая точность
enableHighAccuracy: true
});
}
}
_loadMap(position) {
const {latitude, longitude} = position.coords;
const coords = [latitude, longitude];
this.#map = L.map('map').setView(coords, this.#mapZoomLevel);
// Rendering a map
// L.tileLayer('https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', {
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution:
'© <a href="https://www.openstreetmap.org/copyright">0penStreetMap</a> contributors'
}).addTo(this.#map);
// Show current position
L.marker(coords)
.addTo(this.#map)
.bindPopup(L.popup({
autoClose: false,
closeOnClick: false,
}))
.setPopupContent(`You're here`)
.openPopup();
// Handling clicks on map
this.#map.on('click', this._showForm.bind(this));
this._getLocalStorage();
}
_showForm(mapE) {
this.#mapEvent = mapE;
form.classList.remove('hidden');
inputDistance.focus();
}
_hideForm() {
Array.from(inputAll)
.filter(i => !i.classList.contains('form__input--type'))
.forEach(i => i.value = '');
form.style.display = 'none';
form.classList.add('hidden');
setTimeout(() => form.style.display = 'grid', 1000);
};
_hideFormAfterClick(e) {
if (!e.target.closest('.form'))
form.classList.add('hidden');
}
_toggleElevationField() {
inputElevation.closest('.form__row').classList.toggle('form__row--hidden');
inputCadence.closest('.form__row').classList.toggle('form__row--hidden');
}
_newWorkout(e) {
e.preventDefault();
// Get coordinates
const {lat, lng} = this.#mapEvent.latlng;
// Get data from forms
let workType = inputType.value;
let workDistance = +inputDistance.value;
let workDuration = +inputDuration.value;
// New workout
let workout;
// Helper functions
const isValidInput = (...inputs) => inputs.every(i => i !== '');
const isPositive = (...inputs) => inputs.every(i => i > 0);
// Running -> Running object
if (workType === 'running') {
let workCadence = +inputCadence.value;
// Data validation
if (!isValidInput(workDistance, workDuration, workCadence) ||
!isPositive(workDistance, workDuration, workCadence))
return alert('Inputs must be positive numbers!');
workout = new Running([lat, lng], workDistance, workDuration, workCadence)
}
// Cycling -> Cycling object
if (workType === 'cycling') {
let workElevation = +inputElevation.value;
// Data validation
if (!isValidInput(workDistance, workDuration, workElevation) ||
!isPositive(workDistance, workDuration))
return alert('Distance and duration must be positive numbers!');
workout = new Cycling([lat, lng], workDistance, workDuration, workElevation);
}
// Add the workout to the workout array
this.#workouts.push(workout);
// Render a marker
this._renderMarker(workout);
// Hide and clear form
this._hideForm();
// Render on left side
this._renderSideWorkout(workout);
// Set local storage to all workouts
this._setLocalStorage();
}
_renderMarker(workoutObj) {
L.marker(workoutObj.coordinates)
.addTo(this.#map)
.bindPopup(L.popup({
maxWidth: 250,
minWidth: 100,
autoClose: false,
closeOnClick: false,
className: `${workoutObj.type}-popup`
}))
.setPopupContent(`${workoutObj.type === 'running' ? '🏃♂️' : '🚴♀️'} ${workoutObj.shortDescription}`)
.openPopup();
}
_renderSideWorkout(workoutObj) {
let html = `
<li class="workout workout--${workoutObj.type}" data-id="${workoutObj.id}">
<h2 class="workout__title">${workoutObj.description}</h2>
<div class="workout__details">
<span class="workout__icon">${workoutObj.type === 'running' ? '🏃♂️' : '🚴♀️'}</span>
<span class="workout__value">${workoutObj.distance}</span>
<span class="workout__unit">km</span>
</div>
<div class="workout__details">
<span class="workout__icon">⏱</span>
<span class="workout__value">${workoutObj.duration}</span>
<span class="workout__unit">min</span>
</div>
`;
if (workoutObj.type === 'running')
html += `
<div class="workout__details">
<span class="workout__icon">⚡️</span>
<span class="workout__value">${workoutObj.pace.toFixed(1)}</span>
<span class="workout__unit">min/km</span>
</div>
<div class="workout__details">
<span class="workout__icon">🦶🏼</span>
<span class="workout__value">${workoutObj.cadence}</span>
<span class="workout__unit">spm</span>
</div>
</li>`
if (workoutObj.type === 'cycling')
html += `
<div class="workout__details">
<span class="workout__icon">⚡️</span>
<span class="workout__value">${workoutObj.speed.toFixed(1)}</span>
<span class="workout__unit">km/h</span>
</div>
<div class="workout__details">
<span class="workout__icon">⛰ </span>
<span class="workout__value">${workoutObj.elevationGain}</span>
<span class="workout__unit">m</span>
</div>
</li>`
containerWorkouts.insertAdjacentHTML("beforeend", html);
}
_moveToPopup(e) {
const workoutEl = e.target.closest('.workout');
if (!workoutEl)
return;
const markerCoords = this.#workouts.find(w => w.id === workoutEl.dataset.id).coordinates;
this.#map.setView(markerCoords, this.#mapZoomLevel * 1.1, {
animate: true,
pan: {
duration: 1,
},
});
}
_setLocalStorage() {
localStorage.setItem('workoutsLS', JSON.stringify(this.#workouts));
}
_getLocalStorage() {
const localData = JSON.parse(localStorage.getItem('workoutsLS'));
if (!localData) return;
this.#workouts = localData;
this.#workouts.forEach(workout => {
// Render a marker
this._renderMarker(workout);
// Render on left side
this._renderSideWorkout(workout);
});
}
reset() {
localStorage.removeItem('workoutsLS');
location.reload();
}
}
const app = new App();