Pessoal, não estou conseguindo exibir corretamente a data inserida e não sei o que fiz de errado. Quando tento exibir a data, aparece no console o erro "Uncaught TypeError: data.getDate is not a function at Negociacao.get data [as data] (Negociacao.js:22) at NegociacaoController.adiciona (NegociacaoController.js:17) at HTMLFormElement.onsubmit (index.html:14)"
Segue meu código:
class DateHelper {
constructor() {
throw new Error('Esta classe não pode ser instanciada');
}
static dataParaTexto(data){
return `${data.getDate()}/${data.getMonth()}+1/${data.getFullYear()}`;
}
static textoParaData(texto){
return new Date(...texto.split('-').map((item, indice) => item - indice % 2));
}
}
class Negociacao {
constructor(data, quantidade, valor){
this._data = new Date(data.getDate());
this._quantidade = quantidade;
this._valor = valor;
Object.freeze(this);
}
get volume(){
return this._quantidade * this._valor;
}
get data() {
return new Date(data.getDate());
}
get valor() {
return this._valor;
}
}
class NegociacaoController {
constructor(){
let $ = document.querySelector.bind(document);
this._inputData = $('#data');
this._inputQuantidade = $('#quantidade');
this._inputValor = document.querySelector('#valor');
this._listaNegociacoes = new ListaNegociacoes();
}
adiciona(event){
event.preventDefault();
console.log(DateHelper.dataParaTexto(this._criaNegociacao().data));
this._listaNegociacoes.adiciona(this._criaNegociacao());
this._limpaFormulario();
}
_criaNegociacao() {
return new Negociacao(
DateHelper.textoParaData(this._inputData.value),
this._inputQuantidade.value,
this._inputValor.value
);
}
_limpaFormulario() {
this._inputData.value = '';
this._inputQuantidade.value = 1;
this._inputValor.value = 0.0;
this._inputData.focus();
}
}