2021-06-15 00:49:18 -07:00
---
id: 5a8b073d06fa14fcfde687aa
2021-07-09 21:23:54 -07:00
title: Monitor degli esercizi
2021-06-15 00:49:18 -07:00
challengeType: 4
forumTopicId: 301505
dashedName: exercise-tracker
---
# --description--
2021-07-09 21:23:54 -07:00
Costruisci un'app JavaScript full-stack che sia funzionalmente simile a questa: < https: / / exercise-tracker . freecodecamp . rocks / > . Lavorare su questo progetto ti porterà a scrivere il tuo codice utilizzando uno dei seguenti metodi:
2021-06-15 00:49:18 -07:00
2021-07-09 21:23:54 -07:00
- Clonare [questa repository GitHub ](https://github.com/freeCodeCamp/boilerplate-project-exercisetracker/ ) e completa il tuo progetto localmente.
2021-07-19 16:05:37 +05:30
- Usare [la nostra bozza di progetto su Replit ](https://replit.com/github/freeCodeCamp/boilerplate-project-exercisetracker ) per completare il tuo progetto.
2021-08-25 09:12:11 -07:00
- Usare un costruttore di siti di tua scelta per completare il progetto. Assicurati di incorporare tutti i file del nostro repository GitHub.
2021-06-15 00:49:18 -07:00
2021-08-25 09:12:11 -07:00
Quando hai finito, assicurati che una demo funzionante del tuo progetto sia ospitata in qualche percorso pubblico. Quindi invia l'URL nel campo `Solution Link` . Facoltativamente, invia anche un link al codice sorgente del tuo progetto nel campo `GitHub Link` .
# --instructions--
Le tue risposte dovrebbero avere le seguenti strutture.
Exercise:
```js
{
2022-03-04 19:46:29 +05:30
username: "fcc_test",
2021-08-25 09:12:11 -07:00
description: "test",
duration: 60,
date: "Mon Jan 01 1990",
_id: "5fb5853f734231456ccb3b05"
}
```
User:
```js
{
username: "fcc_test",
_id: "5fb5853f734231456ccb3b05"
}
```
Log:
```js
{
username: "fcc_test",
count: 1,
2021-08-27 09:24:25 -07:00
_id: "5fb5853f734231456ccb3b05",
2021-08-25 09:12:11 -07:00
log: [{
description: "test",
duration: 60,
date: "Mon Jan 01 1990",
}]
}
```
**Suggerimento:** Per la prorpietà `date` , puoi usare il metodo `toDateString` della API `Date` per ottenere l'output previsto.
2021-06-15 00:49:18 -07:00
# --hints--
2021-08-25 09:12:11 -07:00
È necessario fornire il proprio progetto, non l'URL di esempio.
2021-06-15 00:49:18 -07:00
```js
(getUserInput) => {
const url = getUserInput('url');
assert(
!/.*\/exercise-tracker\.freecodecamp\.rocks/.test(getUserInput('url'))
);
};
```
2021-08-27 09:24:25 -07:00
Puoi mandare una richiesta `POST` a `/api/users` con dato `username` per creare un nuovo utente.
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
assert.isTrue(res.ok);
if(!res.ok) {
throw new Error(`${res.status} ${res.statusText}` )
};
};
```
La risposta restituita da `POST /api/users` con dato `username` sarà un oggetto con proprietà `username` e `_id` .
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if (res.ok) {
const { _id, username } = await res.json();
assert.exists(_id);
assert.exists(username);
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-08-27 09:24:25 -07:00
Puoi fare una richiesta `GET` a `/api/users` per avere una lista di tutti gli utenti.
2021-06-15 00:49:18 -07:00
```js
2021-08-27 09:24:25 -07:00
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users');
assert.isTrue(res.ok);
if(!res.ok) {
throw new Error(`${res.status} ${res.statusText}` )
};
};
```
La richiesta `GET` a `/api/users` restituisce un array.
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users');
if(res.ok){
const users = await res.json();
assert.isArray(users);
} else {
throw new Error(`${res.status} ${res.statusText}` );
};
};
```
Ogni elemento nell'array restituito da `GET /api/users` è un oggetto contenete le proprietà `username` e `_id` dell'utente.
```js
async(getUserInput) => {
2021-06-15 00:49:18 -07:00
const url = getUserInput('url');
const res = await fetch(url + '/api/users');
2021-08-27 09:24:25 -07:00
if(res.ok){
const users = await res.json();
const user = users[0];
assert.exists(user);
assert.exists(user.username);
assert.exists(user._id);
assert.isString(user.username);
assert.isString(user._id);
} else {
throw new Error(`${res.status} ${res.statusText}` );
};
};
```
Puoi fare una richiesta `POST` a `/api/users/:_id/exercises` con dati `description` , `duration` , e facoltativamente `date` . Se nessuna data è fornita, la data corrente verrà usata.
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
2021-06-15 00:49:18 -07:00
if (res.ok) {
2021-08-27 09:24:25 -07:00
const { _id, username } = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: 'Mon Jan 01 1990'
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}&date=1990-01-01`
});
assert.isTrue(addRes.ok);
if(!addRes.ok) {
throw new Error(`${addRes.status} ${addRes.statusText}` )
};
2021-06-15 00:49:18 -07:00
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-08-27 09:24:25 -07:00
La risposta restituita da `POST /api/users/:_id/exercises` sarà l'oggetto dell'utente con un campo esercizi aggiutivo.
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if (res.ok) {
const { _id, username } = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: 'Mon Jan 01 1990'
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}&date=1990-01-01`
});
if (addRes.ok) {
const actual = await addRes.json();
assert.deepEqual(actual, expected);
2021-08-27 09:24:25 -07:00
assert.isString(actual.description);
assert.isNumber(actual.duration);
assert.isString(actual.date);
2021-06-15 00:49:18 -07:00
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
}
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-08-27 09:24:25 -07:00
Puoi fare una richiesta `GET` a `/api/users/:_id/logs` per recuperare l'intera storia degli esercizi di ogni utente.
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if (res.ok) {
const { _id, username } = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}`
});
if (addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
2021-08-27 09:24:25 -07:00
assert.isTrue(logRes.ok);
if(!logRes.ok) {
throw new Error(`${logRes.status} ${logRes.statusText}` )
};
2021-06-15 00:49:18 -07:00
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
}
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-08-27 09:24:25 -07:00
Una richiesta della storia degli esercizi `GET /api/users/:_id/logs` restituisce un oggetto con una proprietà `count` che rappresenta il numero degli esercizi che appartengono a quell'utente.
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if (res.ok) {
const { _id, username } = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}`
});
if (addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if (logRes.ok) {
const { count } = await logRes.json();
assert(count);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
}
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-08-27 09:24:25 -07:00
Una richiesta `GET` a `/api/users/:id/logs` restituisce un oggetto utente con un arraa `log` di tutti gli esercizi aggiunti.
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
})
if(res.ok){
const {_id, username} = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}`
});
if(addRes.ok){
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if(logRes.ok) {
const {log} = await logRes.json();
assert.isArray(log);
assert.equal(1, log.length);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
};
} else {
throw new Error(`${res.status} ${res.statusText}` )
};
};
```
Ogni elemento nell'array `log` restituito da `GET /api/users/:id/logs` è un oggetto che dovrebbe avere proprietà `description` , `duration` , e `date` .
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + `/api/users` , {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if(res.ok) {
const {_id, username} = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}`
});
if(addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if(logRes.ok) {
const {log} = await logRes.json();
const exercise = log[0];
assert.exists(exercise);
assert.exists(exercise.description);
assert.exists(exercise.duration);
assert.exists(exercise.date);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
};
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
};
} else {
throw new Error(`${res.status} ${res.statusText}` )
};
};
```
La proprietà `description` di ogni oggetto nell'array `log` restituito da `GET /api/users/:id/logs` dovrebbe essere una stringa.
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users/', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `username=fcc_test_${Date.now()}` .substr(0,29)
});
if(res.ok) {
const {_id, username} = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `description=${expected.description}&duration=${expected.duration}`
});
if(addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if(logRes.ok){
const {log} = await logRes.json();
const exercise = log[0];
assert.isString(exercise.description);
assert.equal(exercise.description, expected.description);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
};
} else {
throw new Error(`${res.status} ${res.statusText}` );
};
};
```
La proprietà `duration` di ogni oggetto nell'array `log` restituito da `GET /api/users/:id/logs` dovrebbe essere un numero.
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users/', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `username=fcc_test_${Date.now()}` .substr(0,29)
});
if(res.ok) {
const {_id, username} = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `description=${expected.description}&duration=${expected.duration}`
});
if(addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if(logRes.ok){
const {log} = await logRes.json();
const exercise = log[0];
assert.isNumber(exercise.duration);
assert.equal(exercise.duration, expected.duration);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
};
} else {
throw new Error(`${res.status} ${res.statusText}` );
};
};
```
La proprietà `date` di ogni oggetto nell'array `log` restituito da `GET /api/users/:id/logs` dovrebbe essere una stringa. Usa il formato `dateString` dell'API `Date` .
```js
async(getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users/', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `username=fcc_test_${Date.now()}` .substr(0,29)
});
if(res.ok) {
const {_id, username} = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `description=${expected.description}&duration=${expected.duration}`
});
if(addRes.ok) {
const logRes = await fetch(url + `/api/users/${_id}/logs` );
if(logRes.ok){
const {log} = await logRes.json();
const exercise = log[0];
assert.isString(exercise.date);
assert.equal(exercise.date, expected.date);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
} else {
throw new Error(`${addRes.status} ${addRes.statusText}` );
};
} else {
throw new Error(`${res.status} ${res.statusText}` );
};
};
```
È possibile aggiungere parametri `from` , `to` e`limit` alla richiesta `GET /api/users/:_id/logs` per ricevere parte del log di ogni utente. `from` e `to` sono date nel formato `yyyy-mm-dd` . `limit` è un numero intero che indica quanti log devono essere restituiti.
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `username=fcc_test_${Date.now()}` .substr(0, 29)
});
if (res.ok) {
const { _id, username } = await res.json();
const expected = {
username,
description: 'test',
duration: 60,
_id,
date: new Date().toDateString()
};
const addExerciseRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `description=${expected.description}&duration=${expected.duration}&date=1990-01-01`
});
const addExerciseTwoRes = await fetch(url + `/api/users/${_id}/exercises` , {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
2022-02-12 21:01:07 +05:30
body: `description=${expected.description}&duration=${expected.duration}&date=1990-01-03`
2021-06-15 00:49:18 -07:00
});
if (addExerciseRes.ok & & addExerciseTwoRes.ok) {
const logRes = await fetch(
2022-02-12 21:01:07 +05:30
url + `/api/users/${_id}/logs?from=1989-12-31&to=1990-01-04`
2021-06-15 00:49:18 -07:00
);
if (logRes.ok) {
const { log } = await logRes.json();
assert.isArray(log);
assert.equal(2, log.length);
} else {
throw new Error(`${logRes.status} ${logRes.statusText}` );
}
const limitRes = await fetch(
url + `/api/users/${_id}/logs?limit=1`
);
if (limitRes.ok) {
const { log } = await limitRes.json();
assert.isArray(log);
assert.equal(1, log.length);
} else {
throw new Error(`${limitRes.status} ${limitRes.statusText}` );
}
2022-02-12 21:01:07 +05:30
const filterDateBeforeLimitRes = await fetch(
url + `/api/users/${_id}/logs?from=1990-01-02&to=1990-01-04&limit=1`
);
if (filterDateBeforeLimitRes.ok) {
const { log } = await filterDateBeforeLimitRes.json();
assert.isArray(log);
assert.equal(1, log.length);
} else {
throw new Error(`${filterDateBeforeLimitRes.status} ${filterDateBeforeLimitRes.statusText}` );
}
2021-06-15 00:49:18 -07:00
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
# --solutions--
```js
/**
Backend challenges don't need solutions,
because they would need to be tested against a full working project.
Please check our contributing guidelines to learn more.
*/
```