Legal entendi flávio , vendo mais alguns vídeos a frente foi criado HttpService, essa sim retorna uma promise com um novo objeto xmlHttpRequest sendo assim, já é considerado um factory ou ainda um serviço ?
class HttpService {
get(url) {
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.onreadystatechange = () => {
if(xhr.readyState == 4) {
if(xhr.status == 200) {
resolve(JSON.parse(xhr.responseText));
} else {
console.log(xhr.responseText);
reject(xhr.responseText);
}
}
}
xhr.send();
});
}
}
PS : Finalizei o curso, parabéns ótima didática, valeu.