IEEE-RVCE / IEEE-RVCE/IEEE-RVCE.github.io
Documentation and code improvement
Nessuno ha ancora preso questa issue.
- Lingua principale
- JavaScript
- Stelle
- 3
- Fork
- 2
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Aim
This is an umbrella issue that has the following objectives
- Show the methods of documentation
- Track documentation progress
Progress
- Remove props for components that don't need it
- Convert the
.then()promise hell into readableasync-awaitexpressions - Add in-code documentation
Information
.then() Improvements
axios.put(hostname + '/api/gallery/' + props.data.iid, values, {
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + localStorage.getItem('atoken')
},
})
.then((response) => {
if(response.data.ok === true)
setMeta({...meta, success: true})
else
setMeta({...meta, error: true})
})
.then(() => {
window.location.reload()
})
.catch((error) => {
console.error(error.response.data.status)
setMeta({...meta, error: true})
})
This piece of code can save different ways of fixing
Route 1 - Lesser .then calls
.then is not always required, except for working on a promise. Only axios here returns a promise, so it can be merged.
axios.put(hostname + '/api/gallery/' + props.data.iid, values, {
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + localStorage.getItem('atoken')
},
})
.then((response) => {
if(response.data.ok === true)
setMeta({...meta, success: true})
else
setMeta({...meta, error: true})
window.location.reload()
})
.catch((error) => {
console.error(error.response.data.status)
setMeta({...meta, error: true})
})
Route 2 - Use Async await
Consider this alternate syntax:
try{
const response = await axios.put(hostname + '/api/gallery/' + props.data.iid, values, {
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + localStorage.getItem('atoken')
},
});
if(response.data.ok === true)
setMeta({...meta, success: true})
else
setMeta({...meta, error: true})
window.location.reload()
}catch(error){
console.error(error.response.data.status)
setMeta({...meta, error: true})
}
Refer to
- (MDN)[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function]
- (Scotch)[https://scotch.io/tutorials/asynchronous-javascript-using-async-await]
JSDoc
Problem
export const component1 = (props) => {
//...
}
This component is difficult to pull out without referencing a parent component who used it.
Additionally, VSCode cannot provide autocomplete for props.
Solution
Use the JSDOC standard.
/**
* This component does x y z
* @param {{data:number[],data2:string}} props
*/
export const component1 = (props) => {
//...
}
This should explain the reason for the page and what its arguments are.
The added advantage is that VSCode (and GitHub's Markdown, if you can notice) has JSDoc integration, and can read this and provide autocomplete.
Please refer https://jsdoc.app/about-getting-started.html
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia individuando i componenti frontend coperti dalla checklist ed esamina gli esempi forniti di promise e JSDoc. Il lavoro è completato quando le props non necessarie sono state rimosse, le catene di promises identificate sono state migliorate e i componenti pertinenti contengono documentazione nel codice che ne descrive lo scopo e gli argomenti.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript
- Ambito
- documentation, frontend
- Tipo di issue
- Refactoring
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Da chiarire
- Idoneità per principianti
- 30/100