Questo progetto è parte del corso di ReactJS e il suo utilizzo è a solo scopo didattico. Per crearlo è stato utilizzzata la CLI Create React App.
-
Aggiungere la list view con l'elenco dei Tickets
- Open New Ticket (button)
- Edit / Delete del singolo Ticket
-
Aggiungere la form di inserimento nuovo Ticket
-
Aggiungere la form di modifica di un Ticket esistente
-
Aggiungere la cancellazione di un Ticket
Tutte le funzionalità dovranno utilizzare un servizio che implementa le funzionalità CRUD (GET, POST, PUT, DELETE) comunicando con le REST API disponibili all'URL indicato nella documentazione.
URL (Anonymous): https://crudcrud.com/ e copiare la url completa aggiungendo "/tickets" come suffisso es: https://crudcrud.com/api/56ced3c2e13b455795de69ef2ff9fd6f/ticktes
Come specificare HTTP Verb, Body e Headers nelle chiamate HTTP
// "Accept" e "Content-Type" sono NECESSARI per le richieste PUT e POST
// "Authorization" serve se si usa il servizio con Basic authentication
basicHeaders: Headers = new Headers({
Accept: "application/json",
"Content-Type": "application/json",
//Authorization: "Basic " + btoa(this.basicAuthAccount),
});
const promise = await fetch(this.apiURL, {
method: "POST",
headers: this.basicHeaders,
body: JSON.stringify(ticket),
});
Campi
- Title (testo)
- Description (testo multi linea)
- Category (combo)
- Unknown (valore = 1)
- Development (2)
- System (3)
- Priority (combo)
- Low (valore = 1)
- Normal (2)
- High (3)
Campi
- Title (testo)
- Description (testo multi linea)
- Category (combo, valori come sopra)
- Priority (combo, valori come sopra)
- State (combo)
- New (valore = 1)
- On Going (2)
- Close (3)
Nella cartella Models è presente una classe Ticket, da utilizzarsi per il popolamento della vista tabellare (punto 1). Questo modello NON è adatto per il salvataggio di un nuovo Ticket / Ticket modificato.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.